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

    How to format a Textbox ? **** Urgent ***

    If you are using Access, then the Replace function in my code example will not work, as there is no replace function in Access (at least in Acc '97.)
  2. BBG

    How to format a Textbox ? **** Urgent ***

    In that case you could do this: myString = Replace(Format$(myNumber, "#\,##\,##0.00"), ",,", vbNullString) If Left$(myString, 1) = "," Then myString = Right$(myString, Len(myString) - 1)
  3. BBG

    SSTab background color setting

    I assume you mean in VB and not in MS Office VBA (In the latter there is a way to mimic this). In the case of VB - sorry but there is absolutly no way of doing this. The grid manufacter decided not to give this capability. You cannot even put a frame on it and change its' color because the...
  4. BBG

    How to format a Textbox ? **** Urgent ***

    Try this: Format$("123456.78","#0\,00\,000\.00") or Format$(123456.78,"0\,00\,000\.00#") but NOT Format$(123456.78,"#0\,00\,000\.00#") Make sure that if the # is used on the left or right side only, and not both - if the number to be formated can have...
  5. BBG

    How to display a Tif picture in VB6

    You people were right - and a great help! I finally found out what you were talking about (should have read the suggestions closer). The Kodak.img exe comes with a oca and ocx. Under Win 95 and NT it was Wangimg.exe. I found a sample application that was installed with Win 95 and Win Nt. I was...
  6. BBG

    How to display a Tif picture in VB6

    NipsMG: Thanks. I downloaded this generous code but it is not working for Tiff files. I will try to inform the author to see if it can be fixed.
  7. BBG

    How to display a Tif picture in VB6

    How can I simply display a Tif picture on a form in VB6, via VB6 code, components or Windows API? Please note that a program that can view Tif files may or may not be on the user's PC - the only things that may be on the PC is the OS and any VB6 run time files or components. So, I am not sure...

Part and Inventory Search

Back
Top