| Thread | Last Post | Replies |
|
| removing blank spaces from variables | 15 Jan 2005 19:25 GMT | 6 |
I have a variable that is declared as follows; Dim strText As String strText = String$(100, 0) I then populate the variable through a 3rd party com object.
|
| Getting file thumbnail | 15 Jan 2005 17:13 GMT | 1 |
Windows Explorer displays the MS Office doc file thumbnail. How can I grab that with VB? pointer to documentation for DOM DocumentProperties would be great too. Thanks.
|
| signed value | 15 Jan 2005 14:40 GMT | 13 |
i have the following line of code SomeString = IIf(IsNull(rsClaimDetail("Value")), "0000000000", Format(rsClaimDetail("Value") * 100, "0000000000")) Now
|
| Printing to PDF file | 15 Jan 2005 14:31 GMT | 2 |
I have VB program that creates number of PDF files by "printing" them one line at a time to "Adobe PDF" priner. For each PDF file I get "Save as" screen into which I have to put PDF file's name. I'd like to automate this process and be able to specifily PDF file's name internally ...
|
| frx files | 15 Jan 2005 14:04 GMT | 5 |
I've inherited a project where about 50% of the forms have a .frx file as well as a .frm file. How can I find out what is contained within those frx files? - Larry Weiss
|
| Is this "bad" practice - setting form to nothing when it still has stuff to do... | 15 Jan 2005 06:57 GMT | 4 |
when using a form, I hide it then set it to nothing then call another form up such as Private Sub cmdOK_Click() Me.Hide
|
| TreeView background picture? | 15 Jan 2005 04:34 GMT | 1 |
Is there a way to put a picture on the background of a treeview? Thanks William
|
| Question regarding Open File for Input or Output | 15 Jan 2005 00:44 GMT | 2 |
I was wondering if I can Open a file for Input or Output and set the file number with a variable. Thanks
|
| Localization question | 15 Jan 2005 00:08 GMT | 9 |
In VB6, is there a (relatively) easy way to determine the currency symbol in the current region (e.g. pounds, dollars, etc). I know I can format numbers with FormatCurrency, but I occasionally need to display a currency sign in a standalone format and want to change it according to ...
|
| how can I best store file names? | 15 Jan 2005 00:00 GMT | 11 |
I need to be able to store filenames, with the ability determine if a filename already exists so that duplicates are not inserted. Is there any free class that will do this?
|
| TAB Control | 14 Jan 2005 22:45 GMT | 15 |
I have inherited a small VB application - one window and a number of controls. I want to add some new functionality which requires a new set of controls. I'm thinking of a TAB control. I found SSTab but its not intuitive on how to use it. How do I place new controls on the 2nd ...
|
| The .frx file | 14 Jan 2005 21:03 GMT | 39 |
I have a Form that uses the ssTab control. I did not create any TabPicures, yet VB is now automatically creating a .frx fie each time I click on a tab in design mode. This was not happening a few daze ago.
|
| Problem with TOPMOST dialog | 14 Jan 2005 21:00 GMT | 1 |
I am using the SetWindowPos api to force my modal dialog form to be a topmost window. This works fine, but there is one small problem. When the main form is minimised, and then the dialog from is displayed (for example, after a timer event), then
|
| Large Hex number to decimal | 14 Jan 2005 20:37 GMT | 7 |
Could anyone help in providing code that will convert a large hex number to decimal using Visual Basic e.g. E932AC87-->3912412295 I just can't seem to work this out !
|
| CC Readers/Magnetic Stripe readers. | 14 Jan 2005 20:20 GMT | 3 |
Has anyone had experience of reading magnetic cards, i.e. Credit Cards using a simple USB swipe card wedge. I'm wondering how to determine when a card has been swiped, since the characters read are of variying quantity depending on the card. And there is no terminator character ...
|