VS 2010 Sentinel HASP Keys To Protect Applications?
Jul 30, 2011
if anyone here has ever worked with Sentinal HASP keys to protect applications.I understand how to make features in the keys but i do not understand what i need to include in my project to have it authenticate against the HASP at runtime.
View 3 Replies
ADVERTISEMENT
Jul 16, 2010
I'm looking to sell some Applications i have made. What's the best way i can protect my applications from being spread around easily? I know there's no Sure-fire way of protecting my App.. but there must be a good program or something that will give me a helping hand.
View 1 Replies
Sep 29, 2008
I'm currently doing a windows application in C#.Net and was just wondering how to write code that enables my program to be "locked" unless a specific serial key has been entered.
View 2 Replies
Mar 25, 2011
I'm trying to create a shortcut which expands or collapses my treeview using the ctrl+alt+up-arrow or ctrl+alt+down-arrow:
If Keys.ControlKey And e.KeyCode = Keys.Alt And e.KeyCode = Keys.Down Then
mytreeview.ExpandAll()
End If
[code].....
View 2 Replies
Feb 12, 2006
Here is the problem I am working on. It asks me to use the method CalculateCharges, but I don't fully understand how to do this or how it works. I would be grateful for any input.
Lab Problem III
A parking garage charges a $2.00 minimum fee to park for up to three hours. The garage charges an additional $0.50 per hour for each hour or part thereof in excess of three hours.
The maximum charge for any given 24-hour period is $10.00. Assume that no car parks for longer than 24 hours at a time. Develop a console program that calculate and displays the charges for each customer who parked a car in this garage yesterday.
You should input hours parked for each customer. The program should display the charge for the current customer. The program should use the method CalculateCharges to determine the charge for each customer.
The program should input as Double the hours parked by each customer. The program should continue asking for new customer until sentinel value is entered for hours parked.
View 1 Replies
Oct 20, 2009
I have an issue with my DO While loop (it has to be a DO While loop). It is supposed to loop until a value of -99999 is entered for the value of previousReadiing. The program works, and it will stop after -99999 is entered, but only after it goes through the rest of the loop.How do I get this to end rather than have to finish through the other input statements and calculating again?This is homework so I don't want the answer, but can I get a nudge in the right direction please?
Module ElectricBill
' program to compute a consumer�s electric bill. It will calculate the bill for one or more customers
[code].....
View 7 Replies
Dec 13, 2011
I have developed a program, which will be installed by several users. How can I protect it, so, once installed, the users can use them on the installed pc, but not others. before, what I did is: create a web service, when the user use it, they need verify the account by the web service. however, it needs the user always be online, which is not applicable to this case.
View 1 Replies
Oct 5, 2010
When my program first launches, it generates a GUID which is then saved to the registry and compared to an online database when an internet connection is detected. If it is a valid registry key, another registry value is saved stating that it is valid. Is there a way to protect these 2 registry entries from being changed?
View 6 Replies
Nov 18, 2011
OK, so, I made a program that locks the computer with a password, to help you protect data from other people. It's quite simple, you open the program, it shows up in full screen, "To access this computer please type in the password"....etc.
BUT, I want it to have a "Guard". To make it act like a screen saver does. That's my plan: So, you typed in the password, and close the program. And then, if you didn't move your mouse, or press a key, or you're not watching a movie, for more than 6 minutes, I want it to automatically launch the program. Until now, I've just put in Form2.Show in the Form1's (which is the password-protect program) FormClosing class. I also made the Form2 on Full Screen, and it's opacity to 0%. That's where you will move your mouse. I made all the code until now, but I need code for making it act like a screen saver.
View 1 Replies
Oct 21, 2008
I have a problem detecting whether one of the arrow keys is pressed, all the other keys seem to be detected apart from the arrow keys??? I have set key preview to True........ It detects the arrrow keys BUT ONLY if I have NO other controls on the form??? example..
Me.Text = e.keycode
It works, but then if I add a button for example, it stops.
View 3 Replies
Jun 27, 2010
I have created an excel 2003 file using visual basic 2010 express edition with access as backend. The excel is created using a select into query. I would need help to protect this excel file once it generated using visual basic 2010 so that the users cannot edit the same.
View 1 Replies
Nov 3, 2011
Here are my questions concerning VB 2010 Express:
1. I've registered my VB 2010 Express, will it still expire?
2. Will the applications I made using VB 2010 Express expire after some time?
3. Is it OK to write my code in the designer.vb file? I don't know why, but when I started writing my application it took me to the designer.vb instead of form1.vb code.
4. I've been working on an application for a week now, but suddenly I can no longer access my Design View(Shift-F7). All my codes are written on the [form name].Designer.vb. I can still view my codes but I cant access my form layout. On the solution explorer, my forms no longer have the 'form icon'. When i press Shift-F7 nothing happens. Right-clicking the form on the solution explorer doesn't show 'View Designer' option. How can I fix this?
View 5 Replies
Nov 15, 2011
I am making a fake virus program as a joke and would like to know how to disable all of the keys except for the shift and enter keys.(these will exit the program)
View 1 Replies
Oct 1, 2010
How can to Know If the key is pressed and according to act?
View 9 Replies
Oct 4, 2010
After countless hours of production, I've finally got a working product that I'd like to market. However, I obviously don't want this product stolen and torrented. So, how exactly would I add license support to my program? I'd like to make the license paired with a number that's unique to the compute
View 13 Replies
Sep 12, 2011
I am working on a project that is used for key broadcasting. Don't worry nothing illegal, I'm making a multibox application for world of warcraft. However I am having trouble when it comes to launching and manipulating other applications from another.
[Code]...
View 2 Replies
Jun 25, 2011
just wondering how i could give my auto typer hot keys, for example they press f1 to start the typer f2 to stop it.
[Code]...
View 4 Replies
Aug 3, 2011
I have a lot of keyboard keys stored in different formats. For example, "Up" may be stored as a string, as a decimal (200) or as hex (C8). I need to convert all of this different representations to strings so they can be easily understood by the user, and then back again when I save them.When I capture the key press using the KeyDown event, I can grab the decimal value from KeyEventArgs.KeyCode, which can easily be converted to hex if needed.
View 2 Replies
Apr 18, 2011
im trying to make something to protect my application a simple serial key the only thing i can think of is if textbox1.text = ("key") then blah blah blah you get it. what i really want is something that will allow me to add and remove keys without having to mod the application, something that would check a site like
View 22 Replies
Oct 11, 2010
What names / number of the following keys (marked in red):
View 13 Replies
Mar 21, 2012
I have one small problem on my app, here's the deal, when I run my app that have a button for "load playlist" and when I click on file>options my app is looking for settings.xml (created before by the same app) on the same folder from where I loaded my playlist. Load playlist button is on my Form1 and Form4, and settings is on my Form6, and this happend every time I load anything, open anything, so my app remembers last opened folder. Is there any way that I can return my path to apps path? I need to mention that this applies only to Windows XP, idk why, because on my win7 it works just fine.
View 13 Replies
Feb 19, 2011
I'm trying to learn this and had gone through some tutorials (found on googling).But most of them are a bit harder to understand. An easy to understand version was not found Do you know any links to a good tutorial ?
Also, where can I get a good example program written using 3-tier architecture in VB ?
View 10 Replies
Oct 19, 2010
just wanted to ask if it is possible to have different applications sharing the same session (i.e. database session)... i'm planning on creating a web-based application and a form-based application using asp.net for web and vb.net for forms but i need to have them share sessions since some global variables will be session based and also authentication to one application should also authenticate on the other.
View 2 Replies
Feb 26, 2011
So I'm creating an application that will notify a person of something when I send a command. I've been thinking of just using a TCP connection to do it but there must be an easier way.
View 1 Replies
Nov 2, 2009
I am using VS 2010 to create a Mac OSX like dock application.Everything has worked great apart from one of the key features of the dock! So what I want is:When the user clicks the minimize but on any (including external application) it minimize to the dock I have created rather than the windows Task-bar.
View 5 Replies
Dec 4, 2011
I have made a dock bar program
So when I drag programs in I get this
But when I restart my program all the dragged in applications are gone.
save my settings,
View 7 Replies
Jul 23, 2011
I've encountered another minor problem with using vs 2010...how do you assign shortcut keys? I've read you just click in the shortcut keys option then press the buttons you want to be your shortcuts- this however just acts like I'm pressing the shortcut keys for vs. for instance alt x, which I want to be exit, takes me to debug. Typing alt + x in manually gives me an error saying what I've put in is invalid.
View 8 Replies
Dec 26, 2011
I've finished my chat spammer, and it's not working the way it's suppose to (In Game). However, it works properly in chat rooms. Instead of it spamming once per line, it clumps the messages together.
If FormOptions.ChFilter.Checked = False And FormOptions.CHad.Checked = False And FormOptions.ChTroll.Checked = False Then
SendKeys.Send(TxtSpam.Text)
SendKeys.Send("{enter}")
ElseIf FormOptions.CHad.Checked And FormOptions.ChFilter.Checked = False
[Code] .....
It works if I don't check anything (This code):
If FormOptions.ChFilter.Checked = False And FormOptions.CHad.Checked = False And FormOptions.ChTroll.Checked = False Then
SendKeys.Send(TxtSpam.Text)
SendKeys.Send("{enter}")
But the "troll" ones with multi-lines don't.
View 1 Replies
Sep 9, 2011
I want to know if i click button1 then it's auto press keys.Tab and then keys.Enter.
View 5 Replies
Apr 23, 2012
i am trying to make a proper keylogger. i have programmed the qwer QWER 123 and !@# keys but it wont read the ,< .> type ok keys for some reason, how to make the program read these keys
View 10 Replies