Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations Wanet Telecoms Ltd on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by RebeccaLynn

  1. RebeccaLynn

    Using cut, copy, paste, etc.

    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...
  2. RebeccaLynn

    Deployment program for Windows.NET app

    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
  3. RebeccaLynn

    BackgroundTransparencyIssue

    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
  4. RebeccaLynn

    BackgroundTransparencyIssue

    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
  5. RebeccaLynn

    BackgroundTransparencyIssue

    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
  6. RebeccaLynn

    BackgroundTransparencyIssue

    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...
  7. RebeccaLynn

    Adding Number for invoice

    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...
  8. RebeccaLynn

    Adding Number for invoice

    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. :)...
  9. RebeccaLynn

    BackgroundTransparencyIssue

    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
  10. RebeccaLynn

    BackgroundTransparencyIssue

    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 ...
  11. RebeccaLynn

    grid

    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
  12. RebeccaLynn

    BackgroundTransparencyIssue

    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
  13. RebeccaLynn

    Scheduled application launcher

    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...
  14. RebeccaLynn

    Tabpages in a Tabcontrol

    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
  15. RebeccaLynn

    Does TransparentKey actually work?

    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...

Part and Inventory Search

Back
Top