| Thread | Last Post | Replies |
|
| an error with a combo box | 05 Mar 2005 00:08 GMT | 6 |
By running this procedure I get an error message sayin that the combo box is read-only. Therefore, how to I reset the box, i.e. get it blank like when the form loaded?? Public Sub proResetFields()
|
| line return in notepad ? | 04 Mar 2005 22:48 GMT | 3 |
chr(13) is the norm, and works in wordpad, but just comes up as a little square in notepad, so whats it using for the carrage return ?? Cheers, Chris
|
| Product of two arrays? | 04 Mar 2005 17:05 GMT | 4 |
If I have 2 arrays of same dimension, say 3x1, and I want to calculate the product for EACH element in array. For example: Array1 (1,2,3), Array2 (4,5,6) -> result Array (1*4,2*5,3*6). Instead of looping through each element by for....next, is there a vba function that can do ...
|
| How to display closed caption in Viusal Basic | 04 Mar 2005 16:59 GMT | 1 |
I am trying to display close caption with media play by using visual basic.NET I can make it woke on webpage but I don't know how to specific the property mediaplayer.closedCaption.captioningId in visual basic. For
|
| Class_Terminate event not firing | 04 Mar 2005 16:11 GMT | 3 |
I have several classes and usercontrols in which the terminate events are not firing, after setting the class to nothing, or unloading the usercontrol's parent form. Thanks in advance
|
| FtpCreateDirectory (wininet.dll) | 04 Mar 2005 12:59 GMT | 2 |
I'm running into a little trouble with FtpCreateDirectory. On MS web site it says it returns a Boolean (True/false) if the function was successful. (http://msdn.microsoft.com/library/default.asp?url=/library/en-us/wininet/wininet /ftpcreatedirectory.asp) but I can not declare the ...
|
| CreateProcessAsUser - How to get User Token | 04 Mar 2005 08:21 GMT | 5 |
I have the following situation: My GUI application is launched from the SYSTEM User, so it runs under this user too. That of course is a high security risk in many aspects. I know how to Create a process "AsUser", but I have to know the Username and Password
|
| SQL query at background | 04 Mar 2005 07:56 GMT | 6 |
i'm using VB6.0 and i have to execute a query that treats a lot of data. It takes more than an hour until the query is finished. Now i want to execute this query from a VB-application. The problem is that i will not be able to use the application anymore until the query is
|
| Mouse Pointer Question | 04 Mar 2005 00:36 GMT | 13 |
I would like a form and all controls on it to ignore any mouse inputs while a sub within the form is running. All mouse inputs, including the X button or any menu items. I do this with Me.Enabled = False
|
| Excel VBA: Application.WorksheetFunction.Average problems | 03 Mar 2005 21:53 GMT | 3 |
I'm having a small problem using the Application.WorksheetFunction.XXXXXX property in VBA in Excel 2000. I noticed both with the average function and the stdev function that the results I receive are rounded to the nearest whole number.
|
| Obtaining DOS Envirnment Variables with VB 6 | 03 Mar 2005 21:32 GMT | 2 |
What line of does do you use to obtain envirnment variables using visual basic 6. For example how to obtain the 'set path=xxx'
|
| Saving a State | 03 Mar 2005 20:28 GMT | 3 |
I'm using a module with the code: Public UserID, Password as String And on another form, I had the IF statement. If txtPass.text = Pass AND txtUser.text = UserID then
|
| Programmare un trial a tempo | 03 Mar 2005 19:51 GMT | 1 |
Ciao a tutti! vorrei sapere se qualcuno potrebbe darmi qualche dritta (o se sa dove reperire un tutorial) su come realizzare un trial a tempo, da integrare ad un mio programma per impedirne l'utilizzo allo scadere di
|
| Office 2003 Look and Feel in .NET Applications | 03 Mar 2005 17:29 GMT | 3 |
i want to get a new look for my applications which are written in vb.net. i once saw that somebody had the look and feel that office 2003 has. can somebody tell me where i can get it?
|
| Printer Question | 03 Mar 2005 16:20 GMT | 1 |
I load all the printers to a ListBox allowing the operator to decide which printer he's to use. Heres the code: For intX = 0 To Printers.Count - 1 ListOfPrinters.List(intX) = Printers(intX).DeviceName
|