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 SkipVought 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: sjn
  • Order by date
  1. sjn

    Director 8 Fundamentals Curriculum URGENT!!!

    We are using "director8 demystified", by Phil Gross and Jason Roberts. It has a CD with many tutorials and also acts as a bible for lingo and director commands. I have found it to be quite useful. Using it, we created a fairly complex application in just 2 weeks.
  2. sjn

    Marks problem after burning director into CD

    You have to create an external file that stores the results of the test somewhere on the hard drive. That way when you create the CD, your program will still function because it is reading and writing to the external file.
  3. sjn

    getenv does not return correct value

    The getenv("PATH") does not return the correct value if I execute a setup routine from a CD. The same program executed from the C: drive does return the PATH environment information, but I can't seem to get it to function if I initiate the program from the CD. Any ideas? Thanks, Scott.
  4. sjn

    How does C++ access a list of processes on the system?

    I'm in need to determining whether a certain process is active on the system. This is a background process and all this program lives for is to stay active while the other process is active. Any ideas? Thanks, Scott.
  5. sjn

    Is there a C++ command that executes an AutoReboot?

    Once a Setup utility has executed, I want to be able to control whether the user reboots the system or not. Is there an AutoReboot command in C++ that automatically restarts the system? Thanks, Scott.
  6. sjn

    I am having problems with _execv, or _spawnv functions.

    First let me say that this is a great forum. You folks have helped so much periodically throughout the last month and a half. This problem is actually one of two of the last problems I have encountered. I have developed a front-end utility to determine an appropriate setup directory to...
  7. sjn

    How do you assign a different Icon to your project?

    Got it! It took me a little bit to work through the replacing of the file but I found that I replace the icon file and reload it when the system prompts you to do so. Thanks for your help. Scott.
  8. sjn

    How do you assign a different Icon to your project?

    When compiling and linking with the MSC++, my project is always compiling using the default bar code style icon. I have a different icon I wish to use as the default icon for the program and would like it to be displayed with the .exe program file for my project. How to do change the icon not...
  9. sjn

    How do you create a new folder in C++?

    Great! Thanks so much. Scott.
  10. sjn

    How do you create a new folder in C++?

    Does anyone have a reference to an example or a sample snippit of code that creates a folder? Thanks, Scott.
  11. sjn

    Form's recordource property as remote sql server db?

    Try the following, as the form is opened, in the FormOpen event you can probably specify the recordsource dynamically by using me.recordsource = <name of recordsource> If this method works, you might want to create a table with the form names in your application and their associated...
  12. sjn

    Help with requesting logon for a database....not all databases

    There is only way that I know that is the most secure form, and that is to create a simple front end utility that starts the access database you want secured with the name of workgroup file embedded in the shell command line. If you know how to do this in C, or C++, or VB, that's probably the...
  13. sjn

    Converting Access 2.0 to Access 97

    There are several things that you need to be aware of but they are only pertinent if you are converting modules. Other than that, what type of information are you getting as you perform the conversion? Scott.
  14. sjn

    Insert statement

    Be sure the value in Me!txtID contains a value if the MachineID is a key to the shipping table, and/or especially if the MachineID has in the shipping table the property set to No for Allow Zero Length. Hope this helps. Scott.
  15. sjn

    Secure access database

    Look under workgroup administration for securing your database. It requires that you create a different system.mdw file and then link the database to the file. That means anyone without the proper authorization would have a more difficult time opening the database. Another way is to place...
  16. sjn

    Missing System.mdw file in Runtime version

    Direct the system to use your own system.mdw file by changing the registry setting. HKEY_LOCAL_MACHINE Software Microsoft Office 8.0 (for office/access 97) 9.0 (for office/access 2000) Access Jet 3.5 (for office/access 97) 4.0 (for office/access 2000) Engines SystemDB The value in SystemDB is...
  17. sjn

    Corrupted database, says Operation Invalid with current index

    Have you tried holding the shift key down when selecting the database from the list of files to open? Scott.
  18. sjn

    Invalid use of Null using autoformat

    There's 2 possible reasons for this error which I have encountered. First, if you are using a combobox or listbox controls, with rowsources set to value, an empty value is always a zero length string. The second is more tedious to straighten out. If the form is somehow connected to a table...
  19. sjn

    Converting Access 97 (w/lots of VBA code) to 2000 - HELP!!

    I also experienced similar problems when converting Access 2.0 to Access 97. In fact, if you have any tables linked to another database, it is important that you also define the workspace for that database if you directly open the table programmatically. The previous response was also correct...
  20. sjn

    Backup copy in access

    Two methods come to mind. The first method involves creating a front end procedure that provides the ability to copy the database before accessing it. You can then use a special file that give the parameters you require or use the opening arguments as the parameters for the copy. The second...

Part and Inventory Search

Back
Top