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

  • Users: Pavlo
  • Order by date
  1. Pavlo

    How can i build a single threaded DLL with asm?

    Thanx! Happy programming!))
  2. Pavlo

    How can i build a single threaded DLL with asm?

    I know how to create signel-threaded or multi-threaded DLL generally but i dont know how to declare selected thread model for my DLL. Happy programming!))
  3. Pavlo

    How can i build a single threaded DLL with asm?

    Subj! Thanx for any answers! Happy programming!))
  4. Pavlo

    Building a DLL with ASM

    Greatfully Thanx! And one question yet. Where can i find in internet assemby tuturial i.e full description of directive set? Happy programming!))
  5. Pavlo

    Building a DLL with ASM

    Greetinx! I want to compile and link a DLL with clean ASM. How can i put some function to DLL export section? PUBLIC publics it for local external function only. Thanks! Happy programming!))
  6. Pavlo

    How do I get the dimensions of a string?

    Greetinx! The infos about the func you can get from help which is given with C++ lang. Happy programming!))
  7. Pavlo

    adding lib files to project

    Greetinx! Please, show part of code after adding lib file to project. Happy programming!))
  8. Pavlo

    80-bit long double support?

    Greetinx! Following text is from Microsoft Visual C++ 6 Help Topic - long double Microsoft Specific —> The long double contains 80 bits: 1 for sign, 15 for exponent, and 64 for mantissa. Its range is +/–1.2E4932 with at least 19 digits of precision. Although long double and double are...
  9. Pavlo

    Problem with DWORD

    Greetinx! Here your code: PIOCTLPARAMS p; char buf[128]; _snprintf (buf, 128, "IOCTL is: %i", p->dioc_IOCtlCode); and where are you allocate memory for IOCTLPARAMS structure? So if not you must allocate memory and define parameters of the structure. Happy programming!))
  10. Pavlo

    Builder C++ and Visual C++ comparison

    Greetinx! I very need documents describing the Builder C++ and Visual C++ comparison. Happy programming!))
  11. Pavlo

    Builder C++ and Visual C++ comparison

    Greetinx! I very need documents describing the Builder C++ and Visual C++ comparison. Happy programming!))
  12. Pavlo

    80-bit long double support?

    Greetinx! So...you should use assembly instructions!)) Happy programming!))
  13. Pavlo

    number of controls on a form

    Greetinx! Windows 95 has maximum windows within it equal to 32767(8) other windows, i think, has more then 32K windows! I know somebody did applications that contains more then 128 controls of one type and they worked properly. Happy programming!))
  14. Pavlo

    Calling an open form

    Greetinx! You also can create array of pointer to forms and access them with that pointers, like follows: TForm2 **FormX[100]; for(int j = 0; j < 100; j++) { FormX[j] = new TForm2(this); FormX[j]->Parent - MainForm; FormX[j]->Left += i; FormX[j]->Show()...
  15. Pavlo

    80-bit long double support?

    Greetinx! Why long double has 64bit!?? Just long double has 80-bit! (exactly in BCB). Happy programming!))
  16. Pavlo

    MS Visual C++ vs. Borland C++

    Greetinx! Is there the official documnent describing advantages and disadvantages of BCB and VC++? Happy programming!))
  17. Pavlo

    control name instead of index

    Greetinx! The following sample code shows how to find out 'n'th control (here label) on form: //n is preinitialized variable (number of control) TControl *__fastcall TForm1::LabelSearch(int n) { for(int j = 0; j < ControlCount; j++) if(Controls[j]->Name == &quot;Label&quot;+AnsiString(n))...
  18. Pavlo

    Classes in Builder5

    Greetinx! Try to use 'Install Component'(or so like, dont remember exactly) menu in order to create new component! Happy programming!))
  19. Pavlo

    Calling an open form

    Greetinx! In order to acces to dynamically created form you should declare pointer to this form in your main class and/or publish it as property. Happy programming!))
  20. Pavlo

    TRect and diamonds

    Greetinx! You can create your own class like TRect, for example named TDiamond. When you can define methods for the class and add method named OnTarget(TPoint point) in which you will verify point coordinates targetted or not to diamond. The diamond can be determinated with 4 points which...

Part and Inventory Search

Back
Top