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

    Please bear with me I'm not too fam

    ...... and you should have a look to the following : http://msdn.microsoft.com/library/default.asp?url=/library/en-us/install/hh/install/inf-format_8kfm.asp
  2. jelloSoft

    Please bear with me I'm not too fam

    The "inf" file format specifications are in the following : http://msdn.microsoft.com/library/default.asp?url=/library/en-us/install/hh/install/create-inf_4l47.asp hope this helps :-)
  3. jelloSoft

    Writing in files with VB: I Don't wan't "^M" written

    :-) :-) :-) :-) thanks for asking the test because it took the same time! My tests where to write 100 000 times a string of 420 bytes (making a 40Mb file) and running the test several times shows the same time with a 0.1 second variation. Sorry for my precedent assumption :-) next time I'll...
  4. jelloSoft

    Writing in files with VB: I Don't wan't "^M" written

    I'll just add that the Binary solution is much faster than the Print since you don't do any String manipulation...
  5. jelloSoft

    Input Masks for TextBoxes

    The best way to get date input is to use the DateTimePicker that comes with the WindowsCommon Controls OCX shipped with VB. You'll find it in the components gallery under "Microsoft Windows Common Controls 2" (or maybe 3?)
  6. jelloSoft

    DBF Files

    Hi, working with DBF files from VB6 is very easy, it is nearly as easy as using an Access file. In which language do you have programming knowledge?
  7. jelloSoft

    Can I have ListBox Column Headers

    The ListView is OK but if you only use Columns then I recommend using the FlexGrid as it is much faster and flexible for data layout.... it comes also with the VB setup.
  8. jelloSoft

    Does font contain alpha characters

    Hi, VB won't give you this info, you have to setup a callback with the EnumFontFamilies api and check the lfPitchAndFamily item of the LogFont structure to know if the font is decorative, roman, script, ... If I remember well the VBThunder site has an example of using the CallBack....
  9. jelloSoft

    Writing in files with VB: I Don't wan't "^M" written

    Hi, you can avoid this by writing the file with the "Put" command after a Binary open: hf%=FreeFile Open sFileName$ For Binary Access Read Write Shared As #hf% For i% = 1 to 10 s$ = "Test string " & cstr(i%) Put #hf%, , s$ Next i% Close hf% in this example you...
  10. jelloSoft

    Limit to # of Children on MDI form?

    Having plenty of memory doesn't mean you have plenty "ressources" free if you're under Win98/95/Me since these 16bits system are limited on the ressource side..... The "ressources" of Windows are the number of handles available to user application (graphic and memory...

Part and Inventory Search

Back
Top