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 Chriss Miller 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: RobSchultz
  • Content: Threads
  • Order by date
  1. RobSchultz

    Set default startup folder

    I'm using LN 6.5.4 and would like to know how to set the default startup folder. I would like it to be my Inbox but it wants to default to one of the subfolders underneath "Folders". I've tried everything I can think of but haven't found anything that works. I am a neophyte to Notes so I know...
  2. RobSchultz

    Clearing SQL Connections - passing conn by ref

    This is a two part question/problem and I apologize in advance for the rambling. They may be well known facts/issues/features but they are new to me... Setup: While trying to figure out how to pass a connection by ref to a subroutine I found that I couldn't use the ref keyword (error: Argument...
  3. RobSchultz

    Referencing WebForm from Class

    I would like to make a class that will allow me to re-use code among multiple forms. I would like to be able to pass a reference to a form to the class but can't figure out how to accomplish this in ASP.NET (sort of like in old VB you could use ByRef oForm as Form.) Ultimately, I would need to...
  4. RobSchultz

    Table vs. Query

    Is there a difference to Access/Jet that would keep me from using a query in the same manner as a table? Here is a simplistic representation of what I am trying to accomplish... tblAccounts accountID (autonumber) isInactive (yes/no) 1 0 2 -1 tblBalanceHistory balanceID (autonumber)...
  5. RobSchultz

    Help with SQL Query - newest records

    I have an accounts table and a balance history table. For discussion lets say the tables are set up as follows: tblAccounts accountID (autonumber) isActive (yes/no account is active) tblBalances balanceID (autonumber) accountID (FK to tblAccounts.accountID) balance...
  6. RobSchultz

    Save Excel file with a write protect password?

    Is it possible to save a write-protect password (not write reserved or read password) with a workbook using VBA? I have a write protected file I need to open, edit and save and keep the write protect password intact. I don't want any Excel prompts for passwords during the entire procedure...
  7. RobSchultz

    Best way to pass info between apps

    I have 2 applications running on a single PC that need to pass information (i.e. variables) between themselves (preferrably within memory only). Here are the ideas I have had/tested: 1. Use SendMessage to populate a hidden text box. This seems a bit of a kludge. 2. Use a common dll. This...
  8. RobSchultz

    Return error code from .exe

    I've been trying without success to return an error code (actually more of a result code) from a VB6 .exe file to a WSH script (the exe is called with WScript.Shell.Run). I've tried err.raise and the SetLastError api. There is one form and one module with Sub Main() starting up in the module...
  9. RobSchultz

    Regular Expressions help

    Please excuse me for posting a pseudo-VB related question here but I sure could use some help from the original grep artists... I'm trying to code a Visual Basic app that will read in a line of an ini file and pull out parameters. The .ini would look similar to this: [parameters] T1 =...
  10. RobSchultz

    Regular Expressions help

    I'm trying to code an app that will read in a line of an ini file and pull out parameters. The .ini would look similar to this: [parameters] T1 = [[parameter 1]][[parameter 2]][[parameter 3]] The regular expression needs to be able to create a match collection that matches the groups of...
  11. RobSchultz

    Help: Creating an Object Model

    Hello all, I've been trying to figure out how to create parent/child relationships in a class for a couple of days but just can't figure it out. How do I create the ability to do something such as... Object.Parent.Property Right now all my code is Object.FontBold = or Object.FontColor = I...
  12. RobSchultz

    MakeFileCompile - 2nd Post

    Apologies, In the hopes that this question got lost in all the activity of this site I'm re-posting it. Hello all, I'm trying to create an add-in that does the following... 1. Stops IIS web services 2. Recompiles the project 3. Restarts IIS web services This is all in the hope of making my...
  13. RobSchultz

    MakeCompileFile question

    Hello all, I'm trying to create an add-in that does the following... 1. Stops IIS web services 2. Recompiles the project 3. Restarts IIS web services This is all in the hope of making my life easier while testing Web COM objects. My problem is that the MakeCompileFile method always returns...
  14. RobSchultz

    Win2K LogonUser API call

    Please help, I've looked everywhere for what is causing the logon user function to fail. It always returns 0 (failed to authenticate) no matter what username, password, domain combo I use. It returns immediately (like its not even trying). Even with normal error trapping code it doesn't...
  15. RobSchultz

    VBScript vs JScript - Windows Installer

    After much pulling out of hair (like I have any to spare), using Windows Installer (WISE front-end) I have determined that, when using VBScript embedded within a Custom Action, you cannot instantiate the Windows Scripting Host Object (though you can use the FileSystemObject). OTOH, JScript can...
  16. RobSchultz

    Timer not firing

    I have a problem with a timer (VB6 SP3). Pseudo code as follows... User clicks a button that... Instantiates a MS Common Dialog box... User selects an Excel spreadsheet... Timer is enabled (the problem is it doesn't start)... The excel file is parsed for the necessary information... While...

Part and Inventory Search

Back
Top