I don't have ever used RTF files before now, so, I don't know what to do. However, whilst I was waiting for your replies, I found another way to solve my problem using a PictureBox and...
Meanwhile I was waiting anyone who replies, I did a research and I discovered this interesting link vb6-MP3-WMA-Image-Extraction. I took the part I need and it seems to work well...
I have a form within a PictureBox object where the user clicks on it and will appear a CommonDialog to choose what image will be loaded into the control. The PictureBox needs to show the image only,...
I can't use objects such as listbox or other because data are put or get from different points of the program, and not always the form cointaing the object is visible or loaded in memory.
I've this trouble: I've several names grouped into an array of strings. The dimension of this array isn't fixed, because the user can add and remove an item from it. The array must be...
I've this trouble: a Label must display a string of 40 characters and can fill at most a space of 4100x615 twips. But, if I set the AutoSize or WordWrap properties, the text...
I had the same question several years ago and I realized that there aren't easy way to compare two colors from their codes. The only solution I found...
The OPEN argument is not needed and you can also leave a blank string, because the ShellExecute has the open command as default one. See a guide on this API, that provided by AllAPI.net is a very...
A Visual Basic EXE project is a single threaded project. You (or final user) cannot execute two actions at the same time, i.e. you cannot click on a button until the execution of a previous event is...
I don't say you are wrong, I only say that you cannot fully understand the 'philosophy' of my program, and how and why it is structured in that way, and try...
Private Sub Form_Load()
Dim G As clsGame
Set G = New clsGame
With G
Debug.Print .Sound(None).SoundName & " (" & .Sound(None).SoundID & ")"
.Sound(Ding).Play...