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 Shaun E 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. Skinsella

    Hourly Query

    Thanks for that strongm. I did try a word search, but didn't try hard enough by the looks of it. Thank you all for your time. Regrads, Simon.
  2. Skinsella

    Hourly Query

    The SetTimer API sounds like my best option, do you know of any links that can give me some details on how to use it?
  3. Skinsella

    Hourly Query

    Is there some simple code I could use to run a piece of code every hour? As far as I can see the timer function only goes up to 1 minute. If the code ran every minute it would slow my application down. Any help would be appeciated. Regards, Simon.
  4. Skinsella

    Saving values

    Hi Mats, I'm trying to create registry entries in a different root from the VB default. I would love to know where the module is located that you said was shipped with Visual Studio. Simon.
  5. Skinsella

    Windows Slow Down

    I recently converted my HDD to NTFS from FAT32 as I needed the extra file security. For some reason though whenever I open up an application my mouse drags like a dog. It doesn't matter what I open, whether its cpu intensive or just the Windows Explorer window, the slow makes it a nightmare...
  6. Skinsella

    How do I access TAPI?

    I need to create a program using TAPI but I can't seem to find the TAPI library in the reference library. Any one know where I can find it? Do i need to download anynything?
  7. Skinsella

    Populate List Box with search results.

    Hey John thanks for that. I feel like a right idiot, lol. Still pretty new at this game and learnign on my feet. Anyway thanks again, much appreciated.
  8. Skinsella

    Populate List Box with search results.

    ...but there should be at least 5 records for each employee. Dim LT As String Dim ST As String LT = Form1.txtSearch.Text ST = "SELECT * FROM TblSEF WHERE EmployeeName = '" & LT & "'" DataEnvironment1.rsTblSEF.Open (ST) Do Until DataEnvironment1.rsTblSEF.EOF...
  9. Skinsella

    Simple SQL question....

    ...login screen. Here is my code so far : Private Sub cmdLogin_Click() Dim User As String User = LoginScreen.UserName UserLogin = "SELECT * FROM TBlLogin WHERE UserName = '" & User & "'" If IsNull(UserLogin) Then MsgBox "User does not exist!", vbCritical...
  10. Skinsella

    Open another application using a Command button

    Works great thanks for your help. Its just one of those things you remember doing last year but you can't put your fingure on it. Thanks again much apprectiated.
  11. Skinsella

    Open another application using a Command button

    I need to open up Outlook Express from my applicatin using a command button on my main form. Some one told me I could use the Set command or the define command but I couldn't find any information about it within VB. Any one know what the exact coding I need to put in? Just an example would help...
  12. Skinsella

    Using results in a different form.

    Ok here's the situation. Some one types in their birthday in a TextBox called "txtBDay". What I need to happen is once they type in their Birthday and click a button a new form needs to appear which is just a small pop up with a single list box in it displaying all the names of the...
  13. Skinsella

    Searching through a Databse using SQL?

    I'm reading the SQL server with the Data Environment. I've updated my system to ADO 2.6
  14. Skinsella

    How to search using a text field?

    Thats ok thanks for your time and help anyway.
  15. Skinsella

    How can I use a TextBox to Search through my Database?

    OK what I have is a simple form that displays a members Name, Address, etc. I've set up an SQL database called "MemberSQL", "TblRecords" is the name of the Table used for this screen. "txtRecordName" is the name of a TextBox which is used at run-time to search for a...
  16. Skinsella

    How to search using a text field?

    I'm writing all this in VB6, and was hoping to use an SQL statement within VB to search through my Database. The "RecordName" TextBox is used at run-time to search for a specific record name. "RecordName" is the primary key in the table, so once they search through and a...
  17. Skinsella

    Searching through a Databse using SQL?

    I'm writing all this in VB6, and was hoping to use an SQL statement within VB to search through my Database. "Test" is the name of the database, "TblRecord" is the name of the Table and "RecordName" is the name of a column in that table. "RecordName" is...
  18. Skinsella

    How to search using a text field?

    "Test" is the name of the database, "TblRecord" is the name of the Table and "RecordName" is the name of a column in that table. The Data Environment is refering to the Microsoft Data Environment Instance 1.0 you use it to connect to Data Source, its in the Project...
  19. Skinsella

    How to search using a text field?

    I have a database set up where each record has its own name "RecordName" what I need to do is use a text field to allow them to search through the databse using a text field which is at the moment simply replacing the current Record Name. I'm using a Dataenvironment to connect to the...

Part and Inventory Search

Back
Top