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 strongm 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: *

  1. Veneficus

    Looking for a tool for data mining

    Wow. This is sweet. Saved me tons of time. Thanks a lot, Ven
  2. Veneficus

    Looking for a tool for data mining

    Hi Techies, I am looking for a tool that would go through all the fields of all the tables in a database (SQL in my case) and search for a specific string and give me a list that which tables and fields have that info. I can write something to accomplish this but I bet there is a product out...
  3. Veneficus

    Looking for a tool for Data Mining

    Hi Techies, I am looking for a tool that would go through all the fields of all the tables in a database (SQL in my case) and search for a specific string and give me a list that which tables and fields have that info. I can write something to accomplish this but I bet there is a product out...
  4. Veneficus

    Weird problem with rand() and object

    Thanks a lot Zyrenthian and PerFnurt. I knew I was doing something stupid. :) Well with the light of your help I've changed the class definition to following: class Numbers { public: int i; Numbers (void) {i=rand();} friend void fill_class (Numbers &); }; Thanks a lot.
  5. Veneficus

    Weird problem with rand() and object

    Hello everyone, I am having a problem with following code. When I try to access the data member "i" in the Numbers class from the main() it prints "-858993460". But in the constructor it assigns and prints a random number without a problem. I am pulling my hair out since I...
  6. Veneficus

    RUNNING A EXE PROGRAM, GETTING AN OUTPUT TO A FILE.....

    Hi, Try it this way: Winnt/2000/XP -------------------------- Call ShellWait("cmd.exe /c j:\sample.exe > c:\file.txt") Win9X -------------------------- Call ShellWait("command.com /c j:\sample.exe > c:\file.txt") Hope this helps, Veneficus
  7. Veneficus

    Open an EXE, new problem

    Try using AppActivate statement before sending each key. Like this: -------------------------------------------------- AppID = Shell(Executable, vbNormalFocus) AppActivate AppID SendKeys "%(D)", False '"ALT + D" -------------------------------------------------- However...

Part and Inventory Search

Back
Top