| Thread | Last Post | Replies |
|
| Menus with icons? | 22 Feb 2006 07:01 GMT | 5 |
Want to know how to add bitmaps to menu items, so i can make my menus colorful?! Like for e.g. take Word,check out how things look in the Edit, Tools menu. You can see icons near them!
|
| test for running in the ide | 22 Feb 2006 06:58 GMT | 18 |
does anyone know the easiest way to test whether the vb app is running from the ide vs running stand alone? Thanks
|
| API Status Bar - Mike? | 22 Feb 2006 03:28 GMT | 13 |
One of my project testers came back to report this problem. It's a dousey. When my application opens, it resizes the picturebox to the form in maximized size, then it draws a status bar using API. Private Sub Form_Resize()
|
| Send Text Message | 22 Feb 2006 02:28 GMT | 7 |
Hi everyone! Is it possible to exchange text between vb6 windows application. I have been searching the web, but what I've found was sending number!! Thanks in advance!
|
| print image with right alignment | 21 Feb 2006 21:02 GMT | 8 |
How would I go about to print "Title" left aligned and print image.jpeg right aligned on the same line using the printer.print command?? Thanks
|
| Right Click | Save Target As... | 21 Feb 2006 19:14 GMT | 5 |
I have a MSHTML.IHTMLWindow2 in an InternetExplorer object with a MSHTML.HTMLLinkElement in it that I would like to Right Click | Save Target As... on. Does anyone know a way that I might do this? Thank you,
|
| displaying the contents of a random access file in a list box | 21 Feb 2006 13:19 GMT | 4 |
Private Type OnePlayer ID As Integer Name As String * 25 EmailAdd As String * 40
|
| M$Inet control apparently SUCKS (or is it me) WTF???? | 21 Feb 2006 11:20 GMT | 11 |
Hello VB6 Heroes, This is becoming PATHETIC! All I want to do is upload some files to our FTP site. I thought aha, Inet seems reasonable approach (well I am beginning to
|
| Unclosed objects | 21 Feb 2006 02:11 GMT | 9 |
What happens to the objects that don't get the 'set obj = nothing' before the end of the program? Does the memory they take get freed or is it wasted? I see it all the time just before the end of programs (cleaning all the objects with set 'obj = nothing'), and I do it myself
|
| ToolTipText in MSHFlexGrid | 20 Feb 2006 23:48 GMT | 6 |
Is it possible to display different ToolTipTexts for an MSHFlexGrid on different Columns? Thank you in advance. Bert.
|
| do while eof - 1 | 20 Feb 2006 23:41 GMT | 8 |
Is there a way of looping while not end of file -1 record? Open Filename For Random As #1 Len = Len(Person) Do While (Not EOF(1) - 1) 'doesn't seem to work --CODE--
|
| GetPrivateProfileString, Send the keyname as null and get all keyNames | 20 Feb 2006 23:06 GMT | 4 |
Why does this only return the keys with values set ? If I store a list in an INI file like: [Section] ListItem1
|
| remove the last record of a random access file | 20 Feb 2006 16:52 GMT | 3 |
Is there a way of removing the last record of a random access file easier than, copying all the records to a new file except for the last one, delete the old file, rename the new file to the old file's name? If not, how would I go about doing the above?
|
| VB 6 - Extract track lengths from Mp3 files | 20 Feb 2006 16:03 GMT | 2 |
I'm writing an application that will scan through folders, extract the names and file sizes of mp3 files, then write them to a database. In addition, I want to include the track lengths of each file. Is there some code that will allow me to do this... get the info from mp3 data?
|
| empty GUID from string in VB2005 | 20 Feb 2006 15:08 GMT | 1 |
When running this code in VB2003 Sub guidtest() Dim gstring As String Dim gid As Guid
|