Search results for query: *

  1. S

    Simple chatbox problem

    sorry about many optimized code,i was wrong type it because in hurry i mean many unoptimized code,anyway it works so far since i have test it on lan,must be works also on wan since not very much different network topology, i lost the final source which has many basic feature like built-in...
  2. S

    Simple chatbox problem

    yes just like that i was already did it and works fine only many optimized code,atleast i 've got nice enough mark from my lecturer ;)
  3. S

    can't expose code that need help

    cjard any clue?
  4. S

    AutoScroll Listbox

    anyone can help?
  5. S

    can't expose code that need help

    sent sent to you
  6. S

    can't expose code that need help

    hmm,i can't put on public because this is my semester 1 final project :( but i can p.m it to you,if you found the problem u can post the part of the code which is the main problem to the public so everyone can learn
  7. S

    Integer always change to hex!

    ya same exact value as i set from other from, but the problem is when iam doing at this calculation always got hex value test = (ascode * Main.text1) test = (ascode / Main.text2) test = (ascode - Main.text3)same like this test = (ascode * cint(Main.text1)) test = (ascode / cint(Main.text2))...
  8. S

    Integer always change to hex!

    anyone can help?? really need help on this one :(
  9. S

    AutoScroll Listbox

    any other code? because i have too many code for ListBox.Item.Add code
  10. S

    AutoScroll Listbox

    JohnH with all respect pls give example :(
  11. S

    Integer always change to hex!

    i have one form that read user input it will assign to a public variable, here is the code ElseIf IsNumeric(txt1.Text) = True And IsNumeric(txt2.Text) = True And IsNumeric(txt3.Text) = True Then Main.text1 = CInt(txt1.Text) Main.text1 =...
  12. S

    Status Strip Thread Error

    How to make a thread when setting statusstrip1.text? i have 2 toolstrip,i can set for the first one but somehow when statusstrip2.text value changed i always got this : Error : Cross-thread operation not valid: Control 'StatusStrip1' accessed from a thread other than the thread it was created on.
  13. S

    How to resize the width but not the height in run time

    try this for disable resizable form : Me.FormBorderStyle = Windows.Forms.FormBorderStyle.FixedDialog Several Fixed 'mode' to choose : Member name Description Fixed3D A fixed, three-dimensional border. FixedDialog A thick, fixed dialog-style border. FixedSingle A fixed...
  14. S

    AutoScroll Listbox

    hmm sorry where to set this? Listbox.SelectedIndexChanged event?
  15. S

    AutoScroll Listbox

    how to AutoScrool a Listbox so it will automatic showing the newest added item???
  16. S

    Simple chatbox problem

    anyone can give example client to client chat by modified MasterZero's Source ?
  17. S

    how to save string variable

    thx john,finaly got it to work btw why i cann't assign this into a variable? i want to use this variable on other function remIP.Address.ToString = IpAddress Error 3 Expression is a value and therefore cannot be the target of an assignment.
  18. S

    Client IP

    i have error when integrated those code : ex.Message = "Unable to cast object of type 'System.Net.Sockets.AcceptAsyncResult' to type 'System.Net.Sockets.TcpClient'." how to implement into this code? Listening_Port = CInt(txtListeningPort.Text) TCPL = New...
  19. S

    Client IP

    @JohnH can u give example(vb .net 2005) server - client,when the server got client connected it will display the client ip and remote port
  20. S

    Chat App Sample

    can u give example client<-->client chat application ?
Back
Top