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: ApJ
  • Order by date
  1. ApJ

    OnMouseDown for control created dynamicaly

    Just as a little add-on to what Supernat03 wrote. If you want to use the OnMouseDown-event the code would be something like this: void __fastcall DynamicClick(TObject *Sender, TMouseButton Button, TShiftState Shift, int X, int Y) { //Stuff } //... //code where the CheckBox is created...
  2. ApJ

    How does the Length option for a field help.

    Thanks for the explanation... those manuals isn't always easy to get a grip of. (Seen from my point of view.) ApJ
  3. ApJ

    How does the Length option for a field help.

    Thanks for responding KarveR :-) What I found this time (and have missed the other 2 times I have been looking in that file) was: ------ With col_name(length) syntax, you can specify an index that uses only a part of a CHAR or VARCHAR column. This can make the index file much smaller. ------...
  4. ApJ

    How does the Length option for a field help.

    When creating the fields for a table in "MySQL 3.23.49-nt", using "phpMyAdmin 2.2.5", the field have an option called "Length/Values". I understand that this option can be used to specify how many characters the value of the current field may have: e.g. an...
  5. ApJ

    Need to upload a folder (with sub-folders)

    Yep, I like it too! (Still whimpering a little over the "loss" of my Upload folder button ;-) ) It would probably bee a good idea to let the users zip the folders. Many thanks for the detailed help rycamor, have to remember you in my "List of source material" (translated...
  6. ApJ

    Need to upload a folder (with sub-folders)

    I'm trying to make a file-server, using php, where clients (with password, etc) should be able to upload and download files, almost like a FTP-server. I know this could be easily done by using a FTP server, but due to the limmitations in my project-description (final exam/project) it is not...
  7. ApJ

    Dynamic arrays possible?

    First, sorry about the delay (my only HD broke down). 1000 x thanks, that was exactly what I needed.
  8. ApJ

    Dynamic arrays possible?

    This is a user of borland C++ builder 5 begging :-) Is it possible to make an new array, with dynamic size, during runtime? e.g: void MyFunction(int NumOfelements) { int MyArray[NumOfElements]; } This don't work, error msg:"E2313 Constant expression required". As far as I know...

Part and Inventory Search

Back
Top