Make A Program That Makes User Type In A Password
Aug 28, 2009
Im trying to make a program that makes a user type in a password, then open a folder where the user can put files. but once they close out of the file browser. the program needs to save the files and remove the directory. for example think of a file cabinet being the program, and the drawer being the temp folder. when the user closes the drawer, it goes back into the cabinet, or in this case the program.
View 7 Replies
ADVERTISEMENT
Jul 14, 2010
I'm planning to make a program that Allows the user to type in the Download Link of another program, and then Run it. I do not want the file to be saved on the user computer.
View 1 Replies
Oct 15, 2010
How do i make a folder that my program makes hidden. I am using (MkDir)
View 5 Replies
Mar 4, 2009
I where wondering about it is pausible to make a program that makes a popup on your screen at a time you chose in the program? and then you could choose a text and a icon as a message, so the program reminded you about something?
View 15 Replies
May 8, 2009
how to make a program that makes all the possible characters and numbers (A-Z & a-z & 0-9) from 5-20 characters, and put them in a list or something?
Someone may think this is bruteforce hacking, but I don't see why I should do that? If I want to find a password on 13 characters, it would be: 62^13 = 200028539268669788905472 possibilities... in other words... it would take forever!
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
Jul 15, 2009
I got a list of 16 items and I have sorted them and I want to show the number of comparisons the program had to make using the insertion sort?(in a textbox for example)I mean is there a formula?
View 10 Replies
Sep 2, 2011
I am making a program that NEEDS to be password protected, so i made a textbox with a code so that when the user enters the right password it lets you in. But if the user/person enters a wrong password 2X it will kick you out. So is there a way to keep the
View 3 Replies
Nov 2, 2011
i want to know how to let the user select a password for a program that i made and would like to know where the password is storedNever Fear Spartucus49 is here
View 16 Replies
Nov 6, 2009
Open a pdf file with user password in vb 2008
View 6 Replies
Apr 26, 2011
i made a program that sends their user and password on my email and post in a site a link.But some email me using my gmail that i used in my program. How can i hide my codes on my VB program. im using VB 2010. [code]
View 1 Replies
Feb 21, 2011
I am trying to develop a program that will allow a user to automatically log into a website with a username and password and click login, which works fine, However after clicking login i am trying to have the pragram click another button to submit a file. This is where the program bombs. This secondclick will work in a separate event but not in the same event as the login.
View 9 Replies
Nov 23, 2010
I use VB 2008 express edition and i have this problem.I want to make a program that password locks any folder you want.(Using Icacls from command promt).My problem is that when i run the program
Code:
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
If My.Computer.FileSystem.DirectoryExists(TextBox1.Text) Then
[Code].....
All this is done becouse i can't save the listbox contents in My.Mysettins.If anyone would be able to show me how to do it i would be helpfull.But please don't give me 50 lines of ununderstandable content.I want something that i will be able to understand becouse there no reason if i use it without knowing what it does.
View 1 Replies
Jan 12, 2009
make a password changing program?
View 3 Replies
May 29, 2009
how can i login when user type password and they press enter that login code can be activiate. What event can be using for this, i m using button_click event. need textbox typed value and press enter it should be login to that next form.
View 1 Replies
Aug 10, 2009
I've one form log in and 2 button in that form, log in and cancel. when user type user name and password,they must click log in button. I want when user type password and press "Enter" without click log in button.
View 3 Replies
Mar 30, 2010
How to make when the program loads to give 1 textbox to enter password: if they enter wrong password to give them message that the password is not right and to try again..if the password is right to open the corect form.can someone help me with that i have made 1 keygen program and i have insert there the keygens and to make the program to has more than 1 password inside to check
View 1 Replies
Mar 19, 2012
i have an access 2007 database in wich i have a table named abc_PersonalLog, wich also has three columns: Id (auto number), StarDate (text) and LogEntry (Memo). It is a Diary application. So, when the user makes a log entry, the StarDate column receives a string formed of concatenated year, month and day, i.e. if date is 20th march 2012, the string will be 120320, and the Log entry column, the text entered by user in a textbox.My problem is that, somehow, i have to retrieve that data, when the user will want to read log entries he made. I managed to assign the text property of a label to the LogEntry text for a given date.But, if the user makes multiple entries in a single day, the table will have several rows containing the same string in the StarDate field, but different text in the LogEntry fields. How can i display ALL the LogEntry texts for all the rows containing the same StarDate value? Here is my code so far:
[Code]...
View 4 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
Nov 15, 2011
im trying to create a program where the user will type in a number then choose the units its in and units it will be converted to from 2 comboboxes. The output should be changing as different units are clicked without a button.
Public Class Convert
Sub Calculate()
Dim Unit1 As Double = (ComboBox1.SelectedItem)
[Code].....
View 2 Replies
Apr 10, 2010
I have a button on my Form called EditingButton that will have a DialogBox appear asking for a password. How can I have "*" show instead of the Password it-self when the user enters the password?[URL]...
View 1 Replies
Dec 9, 2011
This is a spin-off post from another issue I am working on. The problem is related to triggering event handlers when the user makes an input into a combo box, you might even call this a complaint.I have a combobox with a DataSource and ValueMember and DisplayMember. There is no DataBindings to worry about at this point. The combobox is DropDownStyle = DropDown and I havealso enabled AutoCompleteSource = ListSource and AutoCompleteMode = SuggestAppend.The datasource contains a list of Countires, and when the user types in an entry or chooses an entry from the combobox, I should be able to detect what the user has selected ortyped immediatley after the selection, some would say it's the very purpose of the combo box.Which event would you choose to deterine what the user has entered or Selected? few events come to mind:
SelectedValueChanged
SelectedIndexChanged
Validating
[code].....
View 1 Replies
Sep 30, 2011
In my program I've got several comboboxes that all have the same comboboxitems and when the user makes a selection in one of the comboboxes the selected comboboxitem gets disabled in the other comboboxes. (i.e. If the user has selected the comboboxitem with value 'a' in combobox #1 and selected the comboboxitem with value 'b' in combobox #2 then in remaining comboboxes both the comboboxitems with values 'a' and 'b' are disabled)
View 1 Replies
Sep 19, 2010
I'm trying to work out how i can make my multithreaded app stop at a certain point and wait for the user to type something into a text box and click ok. It must then carry on and when a different thread gets to that point it stops again and waits for the user to input some text again.
View 1 Replies
Sep 4, 2009
1. I need to be able to store the STR MG INT and SPD somewhere when they create an item and make sure it is assigned to that item, and since I allow them to create unlimited item, I need this way to be dynamic (as in create variables as needed).
2. I need to find some way to make sure the user has selected an item name in the treeview (not type or main node).For example, they need to click Hockey Mask and then click the equip item button for it to work?
View 2 Replies
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
Mar 26, 2011
In a function I have
Do Until PageLoaded() = True
{
Nothing
}
The problem is it freezes up the program and makes it unusable. I fixed it using timers but it makes my program real sloppy and hard to edit.
View 13 Replies
Sep 10, 2011
I was wondering if it would be possible to monitor a programs audio output and identify when its on / off? I'm coding a carpc frontend and would like to mute the audio when the navigation program speaks directions.
View 1 Replies
Sep 4, 2011
Try
OleDbConn = New OleDbConnection("Provider=Microsoft.Jet.OLEDB.4.0;Data Source=D:\list.mdb")
OleDbConn.Open()
[code]......
View 5 Replies
Feb 12, 2012
here is my script:
Private Sub UpdateThread()
Dim AppDir As String = Application.StartupPath()
My.Computer.Network.DownloadFile(MyUpdate.UpdateFetchURL,
[Code]...
It does perfectly the UpdateThread task, but program just hangs.
View 1 Replies