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

  1. tryfekid

    soffice command line switches

    i'm using staroffice 6 and need to know what command line switches are available. can someone provide me with a summary? in particular, i need to convert a .doc file to a .ps file from the command line. thanks.
  2. tryfekid

    Getting file listing of directory and subdirectories

    Hi, I'm trying to get a file listing to be processed. the file listing will contain all the files in the current directory and subdirectory. i know how to get the file listing of the current directory but not all the subdirectories. any help is apprectiated. thanks.
  3. tryfekid

    generating c++ code from c++ code ???

    Hi, i'm writing a c++ program that reads in different configuration files and based on the contents of the files, my program will generate a c++ source file to be compiled. basically, i'm writing a c++ program to generate c++ code based on config files and this is part of a big project so a...
  4. tryfekid

    inline functions

    where should: #inlcude "inline_file.i" // contains inline functions go??? in the header file (.h) or the implementation file (.cc)? at first i was putting it in the header file and i was getting tons of errors, then i put it in the implementation file and it worked. it works so...
  5. tryfekid

    generic type container without using void* ptr

    I need to know if there's a way to store generic types without using the void* pointer. I've seen ways of using void* pointer to hold the generic type but I'm looking for a different approach. Here's what I mean: struct var_info { string var_name; string data_type; (numerical type...
  6. tryfekid

    retaining comments...

    Hi, I'm reading in a configuration file that can support comments. Currently, I'm parsing the file so that if a ! character (comment indicator) is reached then I just skip the line, or skip what comes after it, sort of like a C/C++ compiler. Here's an example of the config file: #SECTION1 ...
  7. tryfekid

    how do I use the stl hashtable.h

    i'm compiling in g++ and there is an avaialble hashtable.h that references stl_hashtable.h. it is a parameterized hashtable but i'm having trouble understanding the template parameters. if ya'll can help me out, i'd appreciate it. template <class _Val, class _Key, class _HashFcn...
  8. tryfekid

    Record Based Security

    yeah, thanks, that works!!!
  9. tryfekid

    Record Based Security

    I've seen the FAQ related to this, but it hides the records. I need mine to be shown but uneditable. I need to know if this is possible, and how to implement it: I have a form, and in the form, there is a field for USER. The USER field will hold the userID of person who created the record...

Part and Inventory Search

Back
Top