| Thread | Last Post | Replies |
|
| Advice | 26 Jan 2006 17:25 GMT | 3 |
Hi, i am creating a basic retail system. i have managed to complete parts of the system and am currently working on the "order" part of the system. The problem is that the system should hold hold details on key customers only. not everyone. when i actually process the order, ...
|
| Saving to excel from ole control in vb.6 | 26 Jan 2006 17:21 GMT | 1 |
Hi friends, Plz help me to save the data that is loaded in ole using excel file to another excel file . I tried to save using binary file. But after save , when i tried to open the new excel file a message box
|
| sidebar | 26 Jan 2006 17:03 GMT | 1 |
Can anyone direct me to code that will mimic Vista's new collapsible side bar
|
| Exception Error when single step into DLL | 26 Jan 2006 16:41 GMT | 1 |
I have a DLL created in .net when I try to run a function through VB6 in single step mode, it throws an exception error. However if I compile the VB exe and run this it works fine. It also runs fine when I run the DLL in debug mode (editor) with the compiled VB. It appears to
|
| Remove from Environment Path | 26 Jan 2006 14:20 GMT | 6 |
I some code for Visual Basic that I can compile into an executable that will allow me remove part of the the environment path for WinXP, Win2000, and WinNt. If Environment path is
|
| GMT | 26 Jan 2006 14:17 GMT | 1 |
Recently I noticed a question about the GMT. I cannot find it now. vb.net code to get Coordinated Universal Time: Dim GMT As DateTime = DateTime.UtcNow Debug.WriteLine(Format(GMT, ("hh:mm:ss")))
|
| Silently create a PDF from VB of a MS Word Document | 26 Jan 2006 12:51 GMT | 4 |
Anybody have an idea on this one? I can open a hidden Word object from within VB. Open a Word Document with that object and print the document to a PDF but the PDF filename dialog shows and spoils the whole thing.
|
| Colors in a picture box (vb6) | 26 Jan 2006 11:15 GMT | 17 |
I have an image in a PictureBox. I would like to create a list with all the colors shown. I was thinking reading each pixel in the picture box and storing the list of colors I'm finding as I read. Is this the best way to find the distinct colors that are present in the image?
|
| Best control to display a good deal of data for review only? | 26 Jan 2006 09:14 GMT | 8 |
The application is a VB 6 application on XP Pro, which is pulling data from different sources and displaying it to the user. Started using a Listbox to display the data, but without a horizontal scrollbar, longer data could not be read.
|
| Set error | 26 Jan 2006 09:11 GMT | 7 |
If I have Private Function myFunc() On Error GoTo end ...
|
| Identifying different colors in a picture | 26 Jan 2006 02:20 GMT | 5 |
I have an image in a PictureBox. I would like to create a list of all the colors shown in the image. I was thinking reading each pixel in the picture box and storing the list of colors I'm finding as I read. Is this the best way to
|
| Modal form with MDI | 26 Jan 2006 00:33 GMT | 15 |
Is it possible to display a MDI child form as modal? I have a form that displays specific text, and a button is used to unload it. Works fine, but code after the line that loads this form is executed anyway.
|
| Simple but baffling question | 26 Jan 2006 00:17 GMT | 6 |
I have always relied on this simple function to see if a file exists or not: Function bFileExists(strFile As String) As Boolean bFileExists = Len(Dir(strFile)) > 0 End Function
|
| Timeline view | 25 Jan 2006 22:55 GMT | 8 |
Hi, I want to create a VB6 program that displays an event calendar in a timeline view, month by month. Rows should represent users and columns should represent dates. Events has start date/stop date/user and should be blocked in the timeline.
|
| Parsing DateValue from String | 25 Jan 2006 22:49 GMT | 5 |
Suppose I had a string which could contain any text. I want to find out if it contains a "/" (divide) character. Suppose the string contains the following text "DateAdd("m",3,"01/01/2000")" . How could I parse the string to determine whether the "/" was a divide or a
|