Jump to content
Xtreme .Net Talk

rnm89

Members
  • Posts

    20
  • Joined

  • Last visited

About rnm89

  • Birthday July 14

rnm89's Achievements

Newbie

Newbie (1/14)

0

Reputation

  1. - I would like to use computer BIOS and possibly HD. - I use like to be able to use the trial either by 'days' or 'uses' (if possible) - Once either of the above expire the reg screen will be locked except for a REGISTER button. - The ability to edit the above 'days' or 'uses' . - Use my own encrptyion keys - a KEY generator to UNLOCk the APPS
  2. I have read many posts here and other forums. At this point I am willing to pay a FEE for someone to complete it. At that point I would be able to attach it to my program and tweak it. Please let me know if you are interested and I can send you more details. Thanks for the quick response.
  3. I was hoping someone can help me. I am new to VB.NET and just finished my first "project" I would like to know if someone would create a .NET APP to LOCK my program, let the user have a trial, then MUST register. I really don't need super security. I would of course pay for someone's services. I would like to be able to "re-use" the code for other APP's in the future. Please e-mail me with any questions. Thanks
  4. OK, I was able to get it to work by starting a NEW project and reloading the code. I thought however that with this code, once form1 started textbox1.text would be loaded with the data in the test.txt file. That is not happening. I have to click into the textbox1.text box then click on the form, after a few seconds, it loads test.txt Thanks for any help!!
  5. I added Imports System.IO to the VERY TOP of the code
  6. Can anyone tell me what's wrong with this code? I keep getting a streamreader error. I have added 'Imports System.IO' at the top of the code to import the streamreader class Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load End Sub Private Sub TextBox1_TextChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles TextBox1.TextChanged 'read test.txt Dim streamtodisplay As streamreader streamtodisplay = New streamreader("c:\test.txt") TextBox1.Text = streamtodisplay.readtoend streamtodisplay.close() TextBox1.Select(0, 0) End Sub
  7. Found a good source I found a great source for protecting .NET apps without much effort. http://www.exeshield.com The program is $80.00 but it seems well worth it. I just made the purchase.
  8. Good Question I was wondering the same thing. I am not using the VB.net for deployment. I will use my own setup program. Thanks
  9. Registration I would like to Protect it from illegal distribution.
  10. Can anyone point me in the right direction. I just finished my first APP and I would like to add some type of registration to the APP to protect it. I would like to create my own code instead of 3rd party software. I cannot seem to find anything in my books are even how to begin starting! Thanks
  11. I cannot seem to find anyhwere in the create & deploy application help file to add a "desktop icon" once the solution has been built. Thanks for any help!
  12. Worked Great!! Thanks for the code. It worked great!!
  13. I was wondering, is it possible to highlight & copy text to the clipboard from within textbox1.text using my button2 all in one step. I am using the " Clipboard.SetDataObject(TextBox1.SelectedText)" command within my button2 properties, but I still have to highlight the text.
  14. Thank you That worked. I don't understand why I keep having problems with the elseif tag. I truly appreciate the help.
  15. this is where I'm at I wrote this code into the button1 field If RadioButton1.Checked = True Then TextBox1.Text = ("box1") If RadioButton2.Checked = True Then TextBox1.Text = ("box2") If RadioButton3.Checked = True Then TextBox1.Text = ("box3") I am trying to get the sub routine to work with this
×
×
  • Create New...