This should give you some idea of how to get started
Public Sub menuCut()
If txtBox.SelectionLength > 0 Then
txtBox.Cut()
End If
End Sub
Public Sub menuCopy()
If txtBox.SelectionLength > 0 Then
txtBox.Copy()
End If
End...
I found a free program that does windows installers. It's called Install-Creator and can be found at www.clickteam.com. I find it a lot easier to work with.
Becca
Somtimes, the easy answer is the hardest to find. :)
Still under construction ... http://webpages.charter.net/rlmsoft2006
Yes, they are. The only real difference, is one is a LCD the other is not. It works on the LCD, not on the other.
Becca
Somtimes, the easy answer is the hardest to find. :)
Still under construction ... http://webpages.charter.net/rlmsoft2006
Thought of that, both are on the same settings.
Becca
Somtimes, the easy answer is the hardest to find. :)
Still under construction ... http://webpages.charter.net/rlmsoft2006
Ok, now get a load of this. I have 2 monitors, and the transparency key works on one, but not the other.
Becca
Somtimes, the easy answer is the hardest to find. :)
Still under construction ... http://webpages.charter.net/rlmsoft2006
I have this cute little program I am working on, that looks like a little house. I made the bmp, then set the forms shape so it looked really neat.
Dim shape As New System.Drawing.Drawing2D.GraphicsPath
Dim myShape As Point() = {New Point(140, 0), New Point(280, 70), New Point(280...
Writing to a file is probably the simplest way.
Public invoiceNumber As Int16
Public invoiceFile As String = System.Windows.Forms.Application.StartupPath & "invoicenumber.txt"
Public Sub openInvoiceNumber()
Dim FN As Int16 = FreeFile()
FileOpen(FN, invoiceFile...
If you are wanting to increment the number each time, then just store the last number used in a file, BD, or registry. When making a new invoice retrieve the last number used, and add 1 to it, then store the NEW last number used.
Becca
Somtimes, the easy answer is the hardest to find. :)...
Never mind .. I just gave it a try, no luck
Becca
Somtimes, the easy answer is the hardest to find. :)
Still under construction ... http://webpages.charter.net/rlmsoft
Have not tried this, but it is a thought ... Make a gif with part of it already set to transparent (the color you are going to use in the TransparencyKey would make the most sence to me.)
Becca
Somtimes, the easy answer is the hardest to find. :)
Still under construction ...
Can you rephrase that question, I am not understanding it.
Becca
Somtimes, the easy answer is the hardest to find. :)
Still under construction ... http://webpages.charter.net/rlmsoft
This is the best way to set the TransparencyKey to an exact color.
in the form load event use this command
Me.TransparencyKey.FromArgb(255, 0, 0)
good luck.
Becca
Somtimes, the easy answer is the hardest to find. :)
Still under construction ... http://webpages.charter.net/rlmsoft
You could use my program. I call it EZ Run. One of it's features is to run any designated program at any designated time, for a designated amount of time. It then turns that program off. (Or can be set to start a program and not turn it off.) If interested, let me know.
Becca
Somtimes, the...
I have vb2003, and it does not work that way for me. I'd love to get my hands on 2005 and see what other diferences there are.
Becca
Somtimes, the easy answer is the hardest to find. :)
Still under construction ... http://webpages.charter.net/rlmsoft
I am having some problems with TransparentKey as well. I wrote a simple clock program, set the transparentkey, and run the program. I have 2 indentical computers, it works (is transparent) on one, but not the other. Have never been able to figure that out.
Becca
Somtimes, the easy answer is...
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.