Create Custom Uninstaller Which Asks For A Password During Uninstallation Of The Application
Jun 5, 2011
i have created an application in vb.net and now i want to create custom uninstaller which asks for a password during uninstallation of the application. if password is correct, then start the uninstallation process else exit the process of uninstalation. i always used clickonce deployment type installation and so i dont know how to create a custom uninstaller like i said.
View 2 Replies
ADVERTISEMENT
Apr 21, 2010
I'm currently working on a CRM project in vb.net. I want the program to start with a prompt that asks for a password and if the user enters the correct password then the main form loads.Im having some problems wrapping my mind around this...
View 10 Replies
Sep 12, 2009
I've made a small program that creates a registry item in the users run key (basically starts the program on bootup), my question is does anybody know how to remove the item from all the users of the computer when the program is uninstalled?.
I know that all the other users registry hives aren't loaded at anyone time and feel a custom action dll that runs on uninstall that iterates through the 'documents and settings' folder loading the hives one at a time and removes the registry key.
View 3 Replies
Dec 5, 2010
how can i crate a customized installer/uninstaller package for windows programs?
View 1 Replies
Jun 12, 2009
My Crystal Report is using VB.NET and Sql server 2005. The report can be displayed but everytime it will prompt me to key in the Username n Password..is there anyway to automatically pass the login information to reports?
View 9 Replies
Oct 27, 2009
Im coding a very nice browser, it has a gui and has many addons. Im looking for how to make it so when you type in a username and password on a website it asks you if you would like it to remember them like mozzila.
View 8 Replies
Jun 8, 2010
i recently wrote an application in vb.net to print over an a4 paper, the app consists of a basic windows form with a couple of text fields who's values will be printed over specific location on the a4 paper, some of the extra features i added were the ability to save the text in the fields as .pf file (.pf is my own custom made extension name to make this custom extension i had to create 3 keys in the registry: [Code]
This indicates that whenever an application with an extension .pf is double clicked open it with my application and the "%1" means pass in the name of the file as a command line argument to my application (later in my application i added code to deal with command line parameter i.e simply read the content of the file and fill in my text fields with it) also i added a 3rd registry key which describes the location of the icon for this extension: QuoteHKEY_CLASSES_ROOT\PrinterForm\DefaultIcon with a string value of the path to the icon file using the following code: [Code] now i want to delete this keys when the user uninstalls my app. How can i achieve this goal? is it possible to write uninstall code in vb.net?
View 8 Replies
Nov 30, 2011
To create a program that asks for input then uses an else statement to create a handling fee balance.
Input: sales record - first name, last name, purchase amount, balance before purchase
Output: report - full name, old balance, purchase amount, handling fee, new balance
Definitions: handling fee is 5% of the old balance if the old balance is less than $1000.00 else it is 2% new balance = old balance + purchase + handling fee
Processing:
Ask for and receive sales information
Calculate new balance
Print output report
End the program when a purchase amount of 9999.99 is entered
View 3 Replies
Apr 12, 2012
Trying to create a game that firsts asks for the users initials. Once the initials are entered the game from becomes visible. Can't seem to figure this out.
[Code].....
View 4 Replies
Jun 21, 2010
I try to create an forgot password application. in the application, in order to get user password, user must do some input. there is 4 input : Username, Name, Security Question, and Security Answer.
Try
If TextBox8.Text <> "" Then
kueri = "select Username, Pass, Nama, SecQue, SecAns from Account where Username = '" + TextBox8.Text + "'"
[Code].....
View 3 Replies
Jul 21, 2006
With VB.net, I'm coding a simple application to get more used to the new .Net format.
I'd like to save all the information to a 'new' database file. how to create a database on the fly, once that is done i'll be able to connect to it no problem, but actually creating the file is proving difficult to work/find out.
Also, with vb.net and the newly created custom file, how can it be made to automatically open that information with the program?
Is there a method in installation to associate the file type with the new program? How can i check when the program loads if a database file has been 'double-clicked' (rather than just running from the .exe of the program) and proceed to load the data?
EDIT1 - Extra InfoThe windows application has many different fields and content etc, then i need to save that to a file that could later be loaded by 'double clicking'. I assumed the easiest way would be to create a mini-database for each unique file
View 3 Replies
Apr 1, 2011
[code]...
Basically, I want it so if dllA doesn't have a method that the application is looking for, it asks dllB. This is assuming, as well, that ApplicationX and dllB don't know anything about dllA and dllA kind of just appeared out of nowhere (I want dlls dynamically like a patch to my applications without having to rewrite ALL of the methods, properties, etc. in the dll and have everything else just routed to the old dll).
View 2 Replies
Jun 10, 2010
As i am trying to create a custom FTP server for an application i've been reading up on this for a while. One part of the problem is obviously the multi threading issue.Now i know that the synclock command will lock an object to the thread that requested it's lock, however in an example on the internet i found the following construction and i am wondering why he would do this.
Code:Private Sub ProcessClient( NewClient As Client )Call SendMessage( "530 Acces Denied", NewClient.ControlSocket) more codeEnd Sub Private Sub SendMessage(ByVal message As String, ByVal ToSocket as Socket)Dim CurrentThread As Thread = Thread.CurrentThread SyncLock CurrentThreadToSocket.Send(Message)End SyncLockEnd Sub Now ProcessClient is a thread that is trying to do some stuff with a newly connected client and SendMessage is just a sub in the same class as where the thread was created. Now normally one would synclock a "syncobject" however here he calls a sub and then from that sub he synclocks to the thread that called it. I wonder what the use of that is and why he does it this way?
I have removed the synclock statement and as I expected it functions exactle the same as it does with it. I tested it with multiple users at the same time trying to connect to it.
View 2 Replies
Jan 15, 2012
I'm trying to create a password change form for my company's vendors. There are a couple of scenarios I could encounter doing this:
1 - User enters invalid current password
2 - New passwords do not match
3 - User's account is locked
4 - User cannot authenticate because password is expired
It's case 4 that I'm struggling with, because their is no way for me to take the password the user entered and verify it against active directory without getting an error.
View 5 Replies
Nov 14, 2011
I've search the net in order to create a custom control but nothing I find is worth looking at, The main thing I want to do is create a skinengin via DLL and import it in my vb 2010 then using or creating some sort of skin builder where I can create a full setting file which contains all the details of the customization regarding the Form(Look, Feel and the controls such as a menu), I have used Iriskin and multiple apps doing this for me and when a user installs my application they still recieve a message about buying the registered DLL file, I would like to create it completely from scratch.
View 2 Replies
Jul 15, 2009
I am looking to create a simple password box that will ask the user for a username and pass, if the user is validated against the usernames and passwords in an .ini file the login box will close and launch a program also stated in the .ini file. I would also like to be able to launch different programs for different users.
View 16 Replies
Feb 9, 2009
I have to make a basic program that: Create a program with a simple interface that
1. Asks the user type his/her email address into a textbox.
2. When the user clicks the "Evaluate Email Address" button, one of two message boxes pops up: "That is a valid email address!" with an "Information" icon, or "That is an invalid email address!" and on a second line, "Please retype your email address.", with an "Exclamation" icon
3. To be considered valid, the email address must -include an "@" symbol, and -it must end in either ".com", ".net", or ".org" or ".edu" (I don't know how to check a string and test if its last four characters end with any of these and make it say not valid email address. I think I might have to use a case statement)
View 8 Replies
Dec 9, 2011
I have a script for uninstallation which I use to uninstall a developed application. For some reason I am getting the following message and the uninstallation is not working. The message is attached.The script for the uninstallation is follows:
Dim shell, systempath
set shell = WScript.CreateObject( "WScript.Shell" )
systempath = shell.ExpandEnvironmentStrings("%SystemRoot%")
[code].....
View 3 Replies
Apr 16, 2010
I am facing problem while upgrading a vb6 module to vb2008 module. After upgradation the module gives build error. The module after upgradation is given below;
Code:
Option Strict Off
Option Explicit On
Module Module1
[code].....
View 3 Replies
Dec 25, 2011
how to save data (for example some text that user type [as password etc]) and save that password on same location where is application. After saving I want to have also Load option so we can load saved data.
View 7 Replies
Feb 6, 2009
This is what I would like to achieve:To create a custom messagebox, with varying number of buttons with custom .Text descriptions, and other features. I intended to have a property array that would be redim-ed and have values (.Text values) set by the calling class:
[code]...
View 7 Replies
Mar 26, 2009
i add uninstall.bat in my setup and deployment.the uninstaller works.but when i execute it, the cmd appear..what should i do to hide the cmd when i execute my uninstall.bat?can someone tell me?i write this in my unistall.bat :C:WINDOWSsystem32MsiExec.exe /I{productcode}should i add something?
View 4 Replies
Dec 29, 2011
how to specify a custom icon for display in the toolbox window when you create your own custom control? Something other than the dreaded "gearbox" icon.
View 2 Replies
Dec 19, 2010
know how to create a custom file association ( a custom extension ) in VB .Net and how to open it on the application
View 1 Replies
Oct 29, 2009
when publishing a program , is there any options to attach an uninstaller with the program ?
View 5 Replies
Jan 20, 2011
I have a project based in VB.net and WPF 4. My program has a "launchpad" screen with buttons like "Play" "Demos" "User Manual" "Quit", etc.I have an uninstall button on this menu, too. When it is clicked, I need to run the .exe file "uninst000.exe", located in my program's directory (which could be anywhere on the computer, depending on user options during installation).
View 2 Replies
Feb 15, 2010
Create A Password And Log In Using Else If?
View 4 Replies
Feb 7, 2009
I am not a new coder, but i am not a know-it-all. I have been watching some of those NVidia fluid videos, and got jealous. I thought "Why can't i do it?" I'm not good enough for OpenGL or some other 3d engine, but i thought i would try it in 2d.
View 4 Replies
Mar 7, 2010
I created a project on form1. I then added form2 to be the password protector for form1.
View 1 Replies
Jun 8, 2011
how to create confirm password..
View 4 Replies