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 SkipVought 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. Jonathan123

    Sony S320

    Has anyone tried out this great new device. Seems like for what it is, it is priced better than anyone else out there
  2. Jonathan123

    Finding a properties file

    I don't really understand your question. Look forward to hearing more from you.
  3. Jonathan123

    Excel Template in VB

    Hi, I am using a Template in my application. Unfortunately if a user opens another excel file by double clicking on it after using my application, when excel opens it has not only the file he opened, but also my template. Hence, I am forced to assume that my template is not being closed. I...
  4. Jonathan123

    Text Box Password

    I think I got it to work, You were right, Of the 4 places calling the Login form one of them did not unload it after getting the results of the Login. Good call Thanks
  5. Jonathan123

    Text Box Password

    True Unload. Unload frm_login Jonathan123
  6. Jonathan123

    Text Box Password

    When I return to a login form it already has the password filled in from last time. I tried clearing the Password on form load --- such that when I finish a Log in the form is unloaded and when I need a login the form is loaded and txtPassword.text="" and still no luck. Any ideas?
  7. Jonathan123

    text Box for Password

    When I return to a login form it already has the password filled in from last time. I tried clearing the Password on form load --- such that when I finish a Log in the form is unloaded and when I need a login the form is loaded and txtPassword.text="" and still no luck. Any ideas?
  8. Jonathan123

    VB System Files.

    You can't change it in the Package and Deployment to any path. Only certain predermined paths such as ($winsystpath) and similar. If I just put them all in the same directory as the executable will find them by itself?
  9. Jonathan123

    Repair and Compress Access Database in VB

    When it is fixed, it is fine. The only issue is when I compact it again it messes it up. The compact feature in code is what is messing it up. I am currently the only user as it is still in development stages so that rules out many possiblities.
  10. Jonathan123

    VB System Files.

    I still seem to be having trouble any ideas how to get vb to use system files from a folder other than system.
  11. Jonathan123

    Repair and Compress Access Database in VB

    Just did it and the database when opened needs to be repaired. I have tried 2 different ways to compact it 1) Dim jro As jro.JetEngine Set jro = New jro.JetEngine jro.CompactDatabase "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=d:\\nwind2.mdb", _...
  12. Jonathan123

    Repair and Compress Access Database in VB

    I am having the same problem. I just saw the post above to use JRO but I can't seem to find any documentation on it. Help!
  13. Jonathan123

    VB System Files.

    I want to run a vb app off a network drive w/o doing a full install on each local machine. Just map them to the exe. Is there any way to put the System files (ocx dll etc.) that are usually put into a system folder locally up on the network drive instead, and have the program know to look there?
  14. Jonathan123

    DBEngine - Closing instance of Access

    I am using a dbEngine to compact a Database. dbEngine.compactDatabase opens in the Taskbar an instance of Access. Access.Application = Nothing is an invalid command since I "did not open access". Any ideas how to kill the dbengine so Access goes away?
  15. Jonathan123

    Access Application

    Thanks Mike for your last point. Regarding the first, it shows up in the task bar as minimized. Perhaps someone knows a work around Thanks
  16. Jonathan123

    Access Application

    Hi, Anyone know how to make an access application created in VB truly invisible to the user so it does not even show in the taskbar? Also, any ideas on how to kill the instance of the access application itself? Not just close the current database with obj.application.closecurrentdatabase but...
  17. Jonathan123

    WinInet FTP

    Hi, 1) Any idea what the dwcontext parameter in the ftpPutFile is for? 2)Any idea how to put an Ascii file up on a remote location and append the contents to a file that is already up there instead of replacing it. I do not want to do this locally by first getting the file. Thanks,
  18. Jonathan123

    Printing

    Wish I could help, I have a very good friend who is a programmer that is having the same problem. If anyone could help us we would really appreciate. Thanks,
  19. Jonathan123

    Opening txt files as Excel spreadsheet

    I just found this function: Workbooks.OpenText(Filename, Origin, StartRow, DataType, TextQualifier, ConsecutiveDelimiter, Tab, Semicolon, Comma, Space, Other, OtherChar, FieldInfo) has anyone had any experience using it? "DataType Optional Variant. Specifies the column format of the...
  20. Jonathan123

    Opening txt files as Excel spreadsheet

    I have a text file that contains a load of info. It really is tab delimited. Excel converts it into mult. columns as it assumes that since it is tab delimited that they are mult. fields. I, however, want it all in the 'A' column . WorkBooks.open(fileName.txt) is what I am using to open it. A...

Part and Inventory Search

Back
Top