Search:

Type: Posts; User: netcoder1337

Search: Search took 0.02 seconds.

  1. VS 2017 Re: bizarre issue importing Excel data

    It's possible that the problem you're having could be due to the way the data is being read from the Excel file using OleDb.
    Sometimes, OleDb can have trouble reading cells that have certain types...
  2. VS 2022 Re: Do I need to give AnEvent the property MyTeller.

    Each ATeller object has a reference to its own EndServEv event. When the EndServEv event is triggered, you can identify the corresponding ATeller object that triggered the event. This means that you...
  3. Re: String BEFORE & After extraction of specifc data

    Here's one way you can do it.

    Dim data As String = "TRANSPORTATION OF TEMPERATURE CONTROLLED PRODUCT @ -10°F"
    Dim newdata As String = data.Split("@")(1).ToString.Replace("°F", "")
  4. Replies
    31
    Views
    50,458

    Sticky: Re: Coding Contest Suggestions

    How about the shortest stairs function contest.

    Ex:


    Stairs("Hello there")

    Output:
    H
    He
  5. Re: Plz help vb scrub complete school project

    Personally, I think if your professor/the assignment calls for you to use an Inputbox, you probably should or you may get docked points. The extra forms/UI controls are unnecessary for the task. One...
  6. Replies
    4
    Views
    1,185

    VS 2010 Re: Form2 freezing up (TCP Chat program)

    Alright, thanks for the response.
  7. Replies
    4
    Views
    1,185

    VS 2010 Re: Form2 freezing up (TCP Chat program)

    Alright, that makes sense. Any tips/examples on how I should go about creating a new function/sub/threading for network communication purposes without freezing up the UI? I appreciate your response...
  8. Replies
    31
    Views
    50,458

    Sticky: Re: Coding Contest Suggestions

    A fun coding contest would be having people make simple functions but trying to make them as short and as efficient as possible.
  9. Replies
    4
    Views
    1,185

    VS 2010 Form2 freezing up (TCP Chat program)

    Hello. I am having an issue with a tcp chat project I've been working on.


    Function Connected()
    If RX.BaseStream.CanRead = True Then
    Try
    While...
  10. Re: Insert character after every n-th line

    -removed-
  11. Re: Insert character after every n-th line

    Imports System.IO
    Imports System.Text

    Public Class Form1


    Private Sub Button2_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click
    Dim reader...
  12. Replies
    2
    Views
    1,362

    Re: help extrect line from listbox RRS feed

    Dim items As New List(Of String) 'Making a list of items
    Dim dupecount As New List(Of String) 'Making another list to tally up duplication count
    For i = 0 To ListBox1.Items.Count -...
Results 1 to 12 of 14



Click Here to Expand Forum to Full Width