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 strongm 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. Frogger0

    For state

    if what you want to know is "When does the user clicks outside the form?" so: if there is only one form, try using the "lost focus" procedure.
  2. Frogger0

    Autorun from CDROM

    an other way is: [autorun] open = (executable) icon = (icon file)
  3. Frogger0

    Writing a txt file

    well, if you want to write a file like: (start of the file:) hello hello good bye (end of file) so you must open the file for binary, and when you want to change line put chR$(13) + chr$(10) eg: open "helo.txt" for binary as #1 j$ = "Hello!" + chr$(13) + chr$(10) +...
  4. Frogger0

    VB6 Package and Deployment Problem

    That error have already happened to me. I unchecked the referencies(project-referencies) of the controls that i didn't used.
  5. Frogger0

    Uploading files to a Web Server using FTP

    could I have o copy too? :) ffrogger0@yahoo.com
  6. Frogger0

    How to use Type... End Type

    This is correct: Private Type TypeSample Var1 As Currency Var2 As Long Var3 As String End Type Sub hello() Dim T As TypeSample T.Var1 = "123" T.Var2 = "1234" T.Var3 = "Right!!!" End Sub

Part and Inventory Search

Back
Top