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 wOOdy-Soft 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: *

  • Users: jtmach
  • Content: Threads
  • Order by date
  1. jtmach

    Default Folder for Pickfolder

    I am using PickFolder to allow users to browse the Outlook folders and pick one. I would like to be able to set a default folder that the browse starts in. Any suggestions or alternatives to this method would be greatly appreciated. Here is the code that I have so far. Dim olApp As...
  2. jtmach

    Expand Nodes using SendKeys

    I am trying to figure out how to expand nodes using the sendkeys function. Everything that I have read says that the plus key should work. If I push the + key on the keypad the node expands the plus key by the backspace does nothing. When I try sendkeys it does nothing. If open Windows NT...
  3. jtmach

    Call Function From Access Database

    I would like to be able to call functions that exist in an access database from my vb application. What is the best way to go about this? Any help you can give would be appreciated. The hardest questions always have the easiest answers.
  4. jtmach

    System DSN

    I am trying to create a system DSN by using the code below. The code works (in that the DSN is created) however I am not able to use the DSN in other programs until I go into the control panel and test it. Once I have hit test it works fine. Any ideas on how to get this to work completly from...
  5. jtmach

    Cross Network Data

    [b]I am trying to pull in over 40 tables with anywhere from 2 to 10 thousand records, from across a network. As you can probably guess this process is rather slow. About an hour and a half. I have tried using the transferDatabase method, then I thought maybe it would be faster if I ran a query...
  6. jtmach

    Nesting Queries

    I am trying to pull in a huge recordset from across a network. I would like to be able to pull in a record set and then use it in subsequent queries as I see fit. Here is what I am using. I have taken out any data that I don't think is relevent if you need more just ask. Public Function...
  7. jtmach

    Referencing Controls

    Hopefully this will be an easy question. I need to find out how to pass controls, an example is below. Private Sub Text1_Click() Dim aControl As control aControl = Text1 moveControl (aControl) End Sub Public Function moveControl(aControl As control) aControl.Left = 0 End...
  8. jtmach

    Modeless Outlook window from Sendobject.

    When using the SendObject command the newly created outlook message window comes up as modal. Is there a way to make it modeless? If not is there a way to do it if you create a mail object the longer way (example below)? Dim objOutlook As Outlook.Application Dim objOutlookMsg As...

Part and Inventory Search

Back
Top