| Thread | Last Post | Replies |
|
| VB6 Compile Error: OBJECT DOES NOT SOURCE AUTOMATION EVENTS? | 11 Apr 2005 03:57 GMT | 1 |
I am getting the following error message at VB6 compile time: OBJECT DOES NOT SOURCE AUTOMATION EVENTS On the following line of code: Private WithEvents frm As frmNewITProjectDlg
|
| vb6 under xp | 11 Apr 2005 00:58 GMT | 4 |
Hi veryone, after a long spell of no programming I tried to install vb 6 under xp pro. It didn't work. Are there any work arounds? Thanks
|
| open and read,write structure from a sequential file | 10 Apr 2005 20:32 GMT | 2 |
How can I use 'open file for input' command and read structure records from it ? open "e:\programs\vb\eab\seq\sequ.txt" For Input As gFilenum Input #gFilenum, gperson.Name, gperson.Phone, gperson.Comments
|
| explanation of code... | 10 Apr 2005 19:58 GMT | 2 |
im using this snippet of code lblTicket.Caption = Input$(LOF(TicketFile), TicketFile) i got it from a website and have no idea how it works i am using it to display the contents of a text file "TicketFile" in a label
|
| Reading from a list | 10 Apr 2005 19:15 GMT | 11 |
I have a listbox that looks very similar to this: 1 Dave 2 Paul 3 John
|
| VB5 Format numbers in Text Boxes | 10 Apr 2005 15:41 GMT | 7 |
I have a series of text boxes in which users can input numerical data- I am using key up to filter out non-numeric entries. My only problem is that there are numerous interrelated calculations- using all 5-6 boxes and if I use number format - the cursor jumps around and does
|
| keep a program running | 10 Apr 2005 14:50 GMT | 3 |
Using VB.NET 2003 I want to keep a program running and waiting for users' input without using a Form that loads at program execution. Can I do it using just one Module or what? Is this possible or must I create a service running in the background??
|
| searching through a listbox | 10 Apr 2005 07:42 GMT | 3 |
I'm after some advice, We have in place at work a multi select Listbox with 2 columns in. A user needs to search through that listbox selecting all of the entries he/she wants to pick, now this list is quite long and it can take a while
|
| VB OOP | 10 Apr 2005 06:03 GMT | 4 |
Why should I use OOP (Classes etc..). Does anyone how many people are using OOP. I have using "String" coding for the past fifteen years. Everything works fine for me. I am afraid that I might be left behind. VB NET is all about OOP. Should I be changing my style of coding ...
|
| rounding single numbers | 09 Apr 2005 14:39 GMT | 7 |
Just wondering, is there a "built in VB code" to round a single to a certain number of decimal places?? For example, 2.5352352 to 2 d.p, as I cant use Trim as will would return 2.53 when i need 2.54. Tia
|
| Email attatchments | 09 Apr 2005 07:03 GMT | 1 |
Is there a way to open the default email client and attatch a file to it? I would like to send reports via email with the click of a button. Reports are generated in HTML, so sending them as attatchment or even inline would work
|
| Playing MPEG using MCI | 09 Apr 2005 04:06 GMT | 2 |
I know you can play MPG/MPEG using MCI, i searched google groups for it. But i cant get it working. Does anyone know the right dll for this (or MPG player)?? Thx in advance D.J.C.J v/d Bosch
|
| Class Code Help required. | 09 Apr 2005 03:20 GMT | 4 |
I got a strange problem going on that I need help with. I needed two array which are mixed type arrays so I used the Class Builder Utility under VB to create two classes as follows: StationClass Active Boolean
|
| reading and saving comma delimited or tab delimited variables | 09 Apr 2005 02:35 GMT | 5 |
I am needing to save 2 matrix variables and a couple of names and dates in a text file. Ok, I have : Private Sub Command7_Click()
|
| Can't end prog without End | 09 Apr 2005 02:16 GMT | 3 |
I've written a diddy little program to measure reaction times. ==================================== Option Explicit Private Declare Function GetTickCount& Lib "kernel32" ()
|