| Thread | Last Post | Replies |
|
| Some more printer stuff | 25 Sep 2006 23:36 GMT | 4 |
WindowsXP/HE SP2, VB5EE/SP3, PDF995/8.0s I am using the following code in a subroutine: Printer.ScaleMode = vbMillimeters If Not PageOr Then Printer.Orientation = vbPRORLandscape
|
| Save contents of picturebox as an image | 25 Sep 2006 21:37 GMT | 1 |
How can I save the contents of a picturebox as a gif, jpeg, png, whatever? Thanks, Fernando
|
| On Error GoTo 0 | 25 Sep 2006 11:04 GMT | 6 |
I try to understand the function of te On Error GoTo 0. See this code (from the MSDN): Private Sub Command1_Click() Printer.Print ... some stuff
|
| Hooking up VB6 projects to other than VB6 editors | 25 Sep 2006 10:37 GMT | 3 |
I have some VB6 projects to maintain I would rather do so in other editors, especially as I don't have Visual Studio 6 installed. Is there a plugin for any other editor that will allow one to compile VB6 projects?
|
| Reading an MP3 ID3v2 Tag Size | 25 Sep 2006 02:22 GMT | 2 |
I'm trying to *remove* an ID3v2 tag from an MP3 file, yes, remove the tag, not just read. So what I'm after is either some code that does it for me, or else a way to find the "size" of the ID3v2 tag so I can remove it myself.
|
| How pass array to function? | 24 Sep 2006 18:57 GMT | 10 |
Hello. I'm trying to pass an array to a function, and I'm getting error an message "Compile error: Type mismatch: array or user-defined type expected" when calling the unit testing subroutine m_array_contains__test() below. I'm not too familiar with VB, and if
|
| VB6 source code quality analyzer | 24 Sep 2006 10:21 GMT | 3 |
Have a look at my VB6 source code analyzer. The aim is to detect lacks of sens or mitakes like division by 0, overflow or underflow, unreachable if conditions and so on. A VB6 add-in lets you transmit source files, you'll get the answer back
|
| Calling a function after form_load | 22 Sep 2006 12:04 GMT | 4 |
This is probably a really silly question but I've been unable to find an answer to something which seems pretty simple. I have a form (say frmDoThings) which is called from another form (say frmMain) when you click on a button. What I want to do is load
|
| problem in transferring files to Unix box | 22 Sep 2006 08:28 GMT | 2 |
When i transfer a .txt file to a unix box using the microsoft internet transfer control , i am getting "CONTROL + M " on each line . This means that the transfer was not proper . This is my code .
|
| mouse_event doesn't let me simulate mouse clicks! | 22 Sep 2006 05:56 GMT | 2 |
I play an online game but sometimes the servers are full and I can't connect. When that happens I have to click the connect button then wait for it to say the servers are full. Then I have to click OK and do all that again until I can connect. I want to make a program that will do
|
| Importing a text file | 20 Sep 2006 22:19 GMT | 4 |
I am importing a text file into SQL tables, and out of nowhere, the records starting writing out of sequence. I have a header and trailer line. The header, of course should be the first record, and is the first line of the text file. Trailer likewise is the last record.
|
| activeX image property | 20 Sep 2006 15:36 GMT | 4 |
I am looking to make an image property like that in a picturebox in my own activeX control. My only problem is that when no image is set I get the following error: Run time error '424':
|
| Problem in Query | 20 Sep 2006 13:57 GMT | 2 |
rsProductInfo.Open "Select * from ProductDetail Where Invoice Like '%" & Trim(txtRegSearch.Text) & "%' order by EntryDate Desc", ZcrmConn, adOpenDynamic, adLockOptimistic
|
| A question on Classes in Visual Basic | 20 Sep 2006 12:48 GMT | 4 |
Can some one please tell me what I'm doing wrong. I'm trying to create a class called Dog, but Visual Basic tells me that I can't enter Wolf.age....why is this? Public Class Form1
|
| Ado update question | 20 Sep 2006 12:40 GMT | 1 |
Hi All, i am using an Ado control. When i display my details in the datagrid, i want only certain fields to be editable, how can i achieve this? Thanks Wes
|