Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Mike Lewis on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  1. stanmancan

    Recieiving UDP strings

    thank you Bogdan, this wasn't the case but you gave me the right idea to fix it. Turns out the variable is actually holding the full value of the string ( i made it print to a file to see what was in there) its just not showing up in the text box, which isn't necessary i was just using it to...
  2. stanmancan

    Replace Problems

    b = "029ALLAROAMARKE" a = vbclrf & "029ALLAROAMARKE" for x = 1 to len(text1.text) if mid(text1.text,x,15) = b then b = a end if next x ??? just a thought
  3. stanmancan

    "Common Event" for controls

    not that i'm aware of, but that does not mean there isn't. at least this route will make coding it a minimum.you could get each mouseover event down to three to four characters if you had a one character variable specific_label_1_MouseOver() a = 1 specific_label_2_MouseOver() a = 2...
  4. stanmancan

    "Common Event" for controls

    i'm not too sure the specifcs if your problem but you may want to try using a for next loop, just name the labels 1 to 13. on the mouse over command make a variable equal a the number according to the label. dim varD as integer specific_label_1_MouseOver() varD = 1...
  5. stanmancan

    Recieiving UDP strings

    hey, i'm writing a program to recieve information about a server. i've got the string going out to work fine but upon arrival of data all i am recieving is ÿÿÿÿinfostringresponse but i know that the string coming in really looks ilke...

Part and Inventory Search

Back
Top