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. JpPhysics

    Get Windows 2k/Xp Login Name

    I need help in finding the user login name in VB. Any suggestions? Thanks!
  2. JpPhysics

    Creating Control during runtime

    What if I wanted to load a label instead. I tried this, but it didn't work for labels.
  3. JpPhysics

    Design Documents

    Does this mean that no-one uses design documents?
  4. JpPhysics

    Design Documents

    I am looking for an example design document. Does anyone have a template or a generic one that they are willing to share with the group?
  5. JpPhysics

    How do I make a form always on top

    I need to make a form that is always on top like the Windows Task Manager form. Can someone point me in the correct direction please?
  6. JpPhysics

    How do I expose my VB code to VB

    I would like to take my finished app and expose it to VB so that I may drive functions from an external application. Any Ideas on how I can accomplish this.
  7. JpPhysics

    Use Public Constant in ConnectionString Property

    Check your Connection String ADODC.ConnectionString = "driver={SQL Server};" & _ "server=bigsmile;uid=sa;pwd=pwd;database=pubs"
  8. JpPhysics

    Email VB form to Inbox

    Depending on your Outlook security level, you may not have a choice but to have the email agent popup.
  9. JpPhysics

    File Exists

    Use the Dir function that is built into VB. You should have this in your help file. Dir Function Example This example uses the Dir function to check if certain files and directories exist. Dim MyFile, MyPath, MyName ' Returns "WIN.INI" if it exists. MyFile =...
  10. JpPhysics

    Data Control

    How about using ADODB? With ADODB, you can set the user name and password, then call a recordset. I have not tried to connect an ADODB recordset to a Data Control, but it should be possible. Another option is to create an ODBC link. I have used this several times. When I start my project, I...
  11. JpPhysics

    OLE Objects in VB6

    I am using an OLE object as a WordPicture. What I would like to do is have the user input the Path of a .wmf/.jpg etc then automatically insert the picture into the Ole object. I recorded a macro from Word to do this same thing, but it will not work in my VB6 code. Any Ideas?
  12. JpPhysics

    DLL Files

    I have developed a Multi-document application and now want to develope "Plug-Ins" for my App. I am thinking that dll files would be the best way, have the app look for my specific DLL files upon startup and load the ones found. My problem is, how do I package forms and code into a...
  13. JpPhysics

    Storing a Graphic in an SQL Database

    Thanks again for your help. This has been most educational. I think that I have it now!
  14. JpPhysics

    Storing a Graphic in an SQL Database

    Ok, I have read the article, but I don't understand about the size of the field. Am I limited by SQL Sever on the size of the the Image or what? Also, how, in VB can I break up an Image file into smaller chunks to save into the database if that is what's required?
  15. JpPhysics

    Joining 2 different databases on the same (SQL 7) server

    Actually, before I read this post, I wasn't sure that it was possible, but this is what I'm looking for. I am trying to pull data from two databases. The first Database name is 'M2MData06' and the second database is 'Engineering'. (Background: M2MData06 is our MRP System) Anyway, I've got a...
  16. JpPhysics

    Storing a Graphic in an SQL Database

    Thanks for the direction. Man, looks like I've got quite a bit of work ahead of me.
  17. JpPhysics

    Joining 2 different databases on the same (SQL 7) server

    Could you guys show a bit more information on how this query works. I am trying to do the same thing, but am having lots of difficulty. Also, does this work on all versions of SQL Server.
  18. JpPhysics

    Storing a Graphic in an SQL Database

    I would like to know if it is possible, and if so how to, store a graphic like a .wmf or .jpg file in an sql database. Thanks for your help.

Part and Inventory Search

Back
Top