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 Mike Lewis 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. Robertus

    Transmitting SP parameters from VC++

    I have installed CR 4.6 on my machine, and in the MS VC++ 6.0 IDE there appeared a component (ActiveX) Crystal Reporter. Importing that component into my VC++ (MFC) project a class was generated CCReporter; this class has a method: SetStoredProcParam(short index, LPCTSTR value); I call this...
  2. Robertus

    32 bits processor optimized code

    I have a test in front of me. It is about parsing an unsigned char* string, BIT by BIT and I must tell at each call of a certain method, wich is the next "changing element" in that bit string; a "changing element" is in fact a bit with its value different from the value of...
  3. Robertus

    COM date manipulation

    Thank you very much!
  4. Robertus

    COM date manipulation

    But when I specify SERVICE (.exe) the "Support MFC" checkbox is DISABLED, so I guess I am not allowed to use MFC for a service...
  5. Robertus

    DATA MEMBERS Size

    OK, I assume the same thing, but WHY? Why am I not allowed to have data members with a bigger size than 64K ??? (in debug mode it works, but in release it crashes)
  6. Robertus

    DATA MEMBERS Size

    I have a class with a data member of 128 KB (a character string) class cmyclass { protected: char buff[131072]; public: //constructor cmyclass(const char* pChar) { memset(buff,0,131072*sizeof(char)); strcpy(buff,pChar); } //destructor } the program crashes at runtime (I do not use malloc or...
  7. Robertus

    Date time manipulation

    Does anyone know how could I manipulate dates and times and time spans in an ATL COM AppWizard generated project (SERVICE (.exe)) ?? I tried COleDateTime but it is NOT recognized!!! Please, help me!
  8. Robertus

    COM date manipulation

    Does anyone know how could I manipulate times and time spans in an ATL COM AppWizard generated SERVICE (.EXE) project?? I use COleDateTime but it seems it is NOT recognized!!!
  9. Robertus

    Yahoo Mesenger

    Does anybody know wich kind of control has the Yahoo Messenger? I mean that one with those cool IMVironments, all that alpha drawing.... layered output, etc. Is it a rich edit? Does they use DirectX for drawing those sprites?
  10. Robertus

    Delete all subfolders and files of a given folder

    Does anybody know how could I delete all subfolders and files of a given folder (with MFC)? I would apreciate your help, thanks a lot!
  11. Robertus

    BROWSE FOR FOLDER

    Thanks a lot, LiquidBinary!!!
  12. Robertus

    BROWSE FOR FOLDER

    Does anybody have some short source code wich displays the BROWSE for FOLDER Windows dialog ? I'd apreciate your help Thanks in advance!
  13. Robertus

    More ZOOM levels in Print Preview

    Does anybody know how could I implement more zoom levels in a SDI application written with MFC?
  14. Robertus

    Programming add-on's

    I didn't know there is an Add-in wizard with MSVC++ (isn't it just for MSDEV studio?)
  15. Robertus

    Programming add-on's

    I really need to know this, please
  16. Robertus

    Programming add-on's

    Does anyone know how could I start learning programming add-on's? At least a link or something...
  17. Robertus

    Printing problem

    I have a MFC app, with a CFormView derived view class; I have to print a Recordset (ADO); the problem is that what I see on the screen isn't exactly what I get at the printer, I mean I loose 3 lines when displaying the records on the screen but they print entirely (all of them) at the printer...
  18. Robertus

    Ctrl+Alt+Del dialog

    Can you tell why doesn't this code work??? It compiles with 0 errors and 0 warnings but when it runs it crashes !!! (I have Win98 on my machine) (I want my app not to be shown in the Ctrl+Alt+Del dialog) ............. typedef DWORD (*P_REGISTER_SERVICE_PROCESS) (DWORD ,DWORD ); ...
  19. Robertus

    kernel32.dll documentation

    I want to know what kind of arguments does any function receive and what it returns
  20. Robertus

    kernel32.dll documentation

    Does anybody have some cool documentation on kernel32.dll or at least a link or some... ?

Part and Inventory Search

Back
Top