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!

Recent content by MrsMcGuyver

  1. MrsMcGuyver

    Application Running Detection ...

    By using API calls (their easy, just add ShellAPI to your uses clause) the following will work... { attempt to create a named nutex } CreateMutex(Nil,False,'AppName'); { check to see if it was created } if ( GetLastError = ERROR_ALREADY_EXISTS ) then begin { inform the...
  2. MrsMcGuyver

    multi-column listboxes

    I understand listboxes, I just wanted to know how this one which supposedly can have multiple columns was supposed to work. Thanks anyway. I simply implemented a " : " in between the two pieces of information. It's for visual complement anyway, not program interaction.
  3. MrsMcGuyver

    multi-column listboxes

    Okay, I give! there is a columns property on a list box but how do you add to the individual columns? I can add to the first one no problem but a second one has me stumped!
  4. MrsMcGuyver

    Shortcut on start menu problem

    Grizz2, One of the last steps in the package & deployment wizard is setting up the start menu shortcuts. Check the Start In directory for $(AppPath) for the short cut. Mrs McGuyver
  5. MrsMcGuyver

    trying to open an access database

    Zeroanarchy, I believe what 12041977 meant was the ADO reference. It's called Microsoft ActiveX Data Objects in the references. After you change to this reference you can use something like this: Create & open a new connection (this will work as a connection string...
  6. MrsMcGuyver

    Swapping values between two cells

    I don't know of any specific functions to do this but try holding onto the value of one of the fields in a local variable rather than writing it into a blank cell. Almost as cumbersome but it will be one less write.
  7. MrsMcGuyver

    Complex Algorithm returning NaN

    Thanks. I was so wrapped up in the fact that I should have a number the lightbulb didn't go off at a string eq. Tammy
  8. MrsMcGuyver

    Complex Algorithm returning NaN

    I have a fairly complex algorithm returning one of 3 different variables. When the pieces of my equation result in a very tiny number (so tiny it's technically negative for the purposes of my program) I get NaN for a result. I've tried to capture the number & turn it back to 0 to prevent the...

Part and Inventory Search

Back
Top