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 bkrike 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: homeless
  • Content: Threads
  • Order by date
  1. homeless

    ADO read double Records from AccessDB

    Hello together, I try to read float and double(precision 12) Values from my Access Database. For float values it works fine, but i can't get the double values: the table: "Achsen", column with long values: "nIndex", column with double values: "nWert" [code] char *sqlquery = "SELECT nIndex...
  2. homeless

    grammar bison(yacc) question

    i try to catch the error position, and give out in an error File: stmnts: primary_terminal exp '\n' {/* read something...*/ } | primary_terminal error '\n' {/* give out the eror line for exp */; yyerrok;} | primary_terminal exp error {/* give out the eror line...
  3. homeless

    decimal to hexa

    i try to convert: 259 to 0x103 or 771 to 0x303 by using the stringstream manipulators int n stringstream ss; ss << hex << n; cout << ss.str(); what's whrong
  4. homeless

    function as define

    I found an Functions that looks like this one: //set the N-th Bit in the Bitarray #define BIT_SET(bit_array, N) \ ((bit_array)[BIT_ELNUM(N)] |= (BIT_TYPE)1 << BIT_NUM(N)) can I implement a function as define with a return Value?
  5. homeless

    write an bit into an unsign short array

    Hi, I try to write an bool Value into a member Atribute m_Value. m_Value is an 32 word a 32 bits, I think that means: unsigned short* m_Value; or unsigned short m_Value[32]; The Function can look like that: void CClass::setBoolValue(bool bValue,unsigned short WordNo,unsigned short...
  6. homeless

    membervar as array in astruct

    I try to set the data Array form the following struct typedef enum{ DIES,DAS }MessageType; typedef struct{MessageType type; unsigned long data[32]; }TriggerData; in main: int main(int argc, char* argv[]){ TriggerData sValue...
  7. homeless

    grab chars adress

    i try to save the adress of single char from an char* something like this will not work static int* m_pPagePosition; char* &pBuffer; m_pPagePosition = reinterpret_cast<int*>(&pBuffer); // grab address
  8. homeless

    Need help with my Hash_set

    I try to fill the m_theDefinitions atribute on class CDefinitionContainer. the CDefinitionContainer.h #include <iostream> #include <string> #include <vector> #include "string_hasher.h" // with included <hash_set> class CDefinition; class CDefinitionContainer { public...
  9. homeless

    Mail Merge to Word using Access query and form

    After I read FAQ181-271, I wonder how to create a query whose criteria is looking at the form and can have other tables, the Word doc then mail merges to that query. What is [uniquefieldname]? Is it a primary key name? Such as Account#.
  10. homeless

    macro for mail merge report

    Could anyone tell me how to create a macro to open a mail merge report? I created a data entry form and used mail merge to get a report. Everytime when I use data entry form, I have to open Word first then Access form. After I finished data entry, I needed to save the form, copy a account # and...
  11. homeless

    How to use switchboard in mail merge file?

    Can anyone tell me how to use switchboard in the mail merge file?
  12. homeless

    open word file from access

    how can I open the word file from access after doing the mail merge
  13. homeless

    mail merge

    can someone tell me how to do a mail merge between Access and Word? Will these involve a lot of coding in VBA?

Part and Inventory Search

Back
Top