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 TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by Nittany92

  1. Nittany92

    Rule to handle read receipts

    Is it possible to create a rule in Outlook 2000 to send read receipts to a subfolder under the Inbox? I tried looking for "Read" or "Not read" in the subject and "Your message" in the body, but it doesn't work. This is the first rule in the list. I have quite a few rules for other messages...
  2. Nittany92

    How do I update Win2K registry value?

    Hey, that worked. Thanks. If you have a minute, can you fill me in on my second question above?
  3. Nittany92

    How do I update Win2K registry value?

    strongm, First, thank you! I appreciate your help. Second, I copied your code exactly and pasted it into a module and created a button to Call UpdateScreenSaverSettings. I get: Run-time error '49': Bad DLL calling convention I stepped through each line in debug mode...
  4. Nittany92

    How do I update Win2K registry value?

    Thanks! That worked great. Now, how do I "apply" that change so that Windows knows I changed the value? Or, how do I get Windows to use the new value?
  5. Nittany92

    How do I update Win2K registry value?

    Wow! That's more involved than I expected. Anyhow, thanks for the info! %-)
  6. Nittany92

    How do I update Win2K registry value?

    I'd like to use VB 6.0 to update the registry value ScreenSaveTimeOut located in HKEY_CURRENT_USER\Control Panel\Desktop. How do I do that? What, if any, references or components do I need to include, etc.? I'm still relatively new to VB programming, so I'll need as much detail as you are...
  7. Nittany92

    Run as a service on Windows 2000 server

    Do I need to do anything special to an application so that it will run as a service on a Windows 2000 server? Then, how do I install it on the server as a service? Scenario: I need to write an application to place on a Windows 2000 server that will run continuously, and start everytime the...
  8. Nittany92

    Numbering Records from a query

    If you don't have a main form as I listed in my example above, you can probably put the line "RecCounter = 0" in the Form_Load() event of your continuous form. I believe the rest remains the same. Give it a try. Nittany92
  9. Nittany92

    Display row count on continuous forms

    For each list of items in a continuous subform, the rows are numbered from 1 to ???. When the main record changes, the associated rows in the subform are again numbered from 1 to ???. Create a module, Module1, and define a record counter as follows: Public RecCounter As Integer 'record...
  10. Nittany92

    Numbering Records from a query

    I just finished this same thing about 10 minutes ago... For each list of items in my subform, I number the rows from 1 to ???. When the main record changes, the associated rows in the subform are again numbered from 1 to ???. I created a module, Module1, and defined my record counter as...

Part and Inventory Search

Back
Top