| Thread | Last Post | Replies |
|
| Removing HTML tags from a text selection | 09 Mar 2006 12:44 GMT | 2 |
I have an html file open on an rtftextbox in my project. Can you point me to some code that would show and easy way to remove the HTML tags? Thanks.
|
| Change Vb form Color | 09 Mar 2006 08:12 GMT | 8 |
i would like to change the color of a form in VB 6.0. Is there any WIN API function which gets the form handle and changes the color of the form. Just setting form.backcolor does not help as they do not change the
|
| Sending email via VB6 | 09 Mar 2006 04:30 GMT | 5 |
I need a simple way to send very simple email via a VB6 code. Anyone know how to do that? Any code avaliable? Without using Outlook if possible, I only have Outlook Express avaliable. Bye
|
| MSFlex Grid Control - Fixed Rows | 09 Mar 2006 02:09 GMT | 4 |
I am using the MSFlexGrd Control in VB5. I have 1 fixed row and one fixed column. I am trying to do a sort when the user clicks a column in the FIXED ROW. But when I capture the row number in the click event I get row = 1 if I click on the FIXED row OR the actual row 1. How can I ...
|
| Mouse Coordinate | 09 Mar 2006 01:28 GMT | 2 |
Hi all, i'm triyng to know which is the position of the mouse about a form... i'm using this API Sub : Public Declare Sub mouse_event Lib "user32.dll" (ByVal dwFlags As Long,
|
| Copying from ADO Recorset to a CSV file | 08 Mar 2006 18:34 GMT | 2 |
I want to take data from an ADO Recordset object, interleave them with some external data and save all in a CSV file. The data may contains commas, so I decided to surround each field with a double quote ("). This however requires escaping internal double
|
| Grey Out items in VB ListBox | 08 Mar 2006 11:38 GMT | 2 |
I want to disable ( grey out ) some of the items in a list box made through Visual Basic ( & not VB.NET). Is this possible ? I have seen that the only way to do this is to override the paint method that draws the items of the list box.
|
| Working with indexed files | 08 Mar 2006 07:55 GMT | 24 |
OK, I might be barking up the wrong tree here and will probably have to revert to using a database of some kind, but, I want to use an indexed (random) file whose record consists of a simple UDT as follows; Public Type Rec
|
| reading from a list box | 08 Mar 2006 07:37 GMT | 2 |
If I have a list box with, for example, : "abc" & vbtab & "def" & vbtab & "ghi" & vbtab & "jkl" & vbtab & "mno" & vbtab & "pqr" How would I read the value "pqr"? It's something similar to:
|
| Input Box | 08 Mar 2006 05:24 GMT | 3 |
Hi, I've created an input box: InputBox("Please enter the raise percentage.", "Raise Percentage", "") Now, I just want to simply have the user enter the raise percentage, when he does this, that number will go into a:
|
| Sub Main as a Startup object? | 07 Mar 2006 22:02 GMT | 12 |
My application has one Main form. This form is always loaded and visible, with only 2 exceptions - when the user does a year end, or does a repair to the mdb database file. Currently, I make use of the End statement and my Startup object is the form itself - because I was not ...
|
| Error on VB .exe | 07 Mar 2006 06:59 GMT | 4 |
I have a VB6 exe front end that opens an Excel VBA app via automation. I am running it under a Virtual PC Win 2k Office 2K testbed. I have previously run it without problem on my host Win XP Pro Office 2003 system. The Excel VBA portion opens without problem when opened directly, ...
|
| How to make an exe file developed with pirated vb to a genuine one | 06 Mar 2006 20:50 GMT | 5 |
I developed an address book like application using a pirated copy of Microsoft visual basic 6. Now I want the software to be released for commercial use. I would like to put my company address,name and everything on it. I will advertise it. Is there any way the authorities
|
| Woudn't this be easier if there was a Mouse_Away event? | 06 Mar 2006 20:30 GMT | 7 |
In window applications such as my Outlook Express, when I move my mouse over certain toolbar buttons, such as the Send button, the button is highlighted. And when I move the mouse away from the button, the highlight is removed. I have tried to do this in my own applications. I ...
|
| How do I update a recordset that is linked to a Permanent Parameter QueryDef | 06 Mar 2006 18:50 GMT | 2 |
I created a microsoft database file (mdb) with the following permanent parameter QueryDef: Set QDF = DB.CreateQueryDef("PQ_Pay_Tot", "PARAMETERS pi_CUST_NO Long; SELECT Count(*) AS QTCnt, Sum(Paymt.Amount) AS QTPay FROM Paymt WHERE Paymt.ResrNo = pi_RESR_NO;") I then assign ...
|