Save And Load Buttons On Different Forms
Oct 25, 2009
When you complete various feats in my program, on a form called "User Details" there is a label with the text that says "Complete" only when you have completed a particular game. There is a save button, and a load button, all on different forms. How could I make a save and load feature? One that saves the fact you've completed certain games - and then when you press load after exiting and reentering the program, the Complete text will reappear.
View 9 Replies
ADVERTISEMENT
Mar 16, 2010
I have been playing around with Visual Basic for about a week now. I created a program that I use at work basically just to organize my day.
The program consists of buttons that link to programs and spreadsheets that I use often, as well as a checklist of tasks I've completed and text boxes that I use for reminders. Other buttons affect GroupBox texts and Label texts.
What I'd like to know is how I can implement a Save and Load button? I'd the current state of the program to be saved so it can be loaded in the event that I have to shut the program down. (Check boxes checked, Text in Text boxes, Labels, etc...)
I've been looking online for HOURS and I've messed around with the SaveSettings feature... nothing seems to work.
View 2 Replies
Jun 10, 2010
I build my project and i got some problems. First i want to print barcode for books(toolstripmenu item). but i cant. here's the code that i found:
[code..]
second problem is printing again. i want to print my MS ACCESS .mdb from child datagridview's records.
third one i want to save and load(with dialogs) my database from main form to child forms' datagridview.and the last one is help provider. i prepare my own .htm help file, when press F1 it opens. but i dont know how to call provider to toolstripmenuitem and help provider keep my computer's path so when i call provider another computer, the programme cant find the path.
View 10 Replies
Dec 15, 2011
i need to load all buttons(200) text in my vb.net windows form at run time from my database table column.
for single button its like
button1.text = database value
but i want
For i = 1 to 200
[Code].....
View 8 Replies
Jun 18, 2010
I am creatting an windows application software in which many controls like Buttons, textBox, combobox are remain same in 12 different form. In this 12 diff form the activity of those controls will remain same.The scenareo id
1. I have 12 forms.
2. Each form containing 3 labels (Country, State, City). These labels indicates 3 combobox from which we can select location.
3. Now I need to use these 3 controls in all 12 forms with same activity.
4. When I change forms to another, these buttons shud remain same.
View 3 Replies
May 3, 2011
i'm still working on making my button project and I've came across a new problem.
I want to create buttons based off the amount of lines in a text file which will be easy if I can get this to work. This is my test code before I implement it into the real program:
[Code]...
View 10 Replies
Apr 22, 2010
I have a picture box in which I type some letter on capturing keystrokes.The problem is that at Form Load, the focus is on the buttons available on the form. How can I keep the focus on my Picture Box at form load?
View 2 Replies
Oct 7, 2011
I have a form consisting of datagridview and two buttons of update and load all.. I have used fillby method to obtain data from database. The query seems to be working fine, except that the data is not shown in the gridview.As in, for the qeury, if the returned rows are 2, it will show 3 rows in the gridview, but all empty.
Imports System.Data
Imports System.Data.OleDb
Imports System.EventArgs
[code].....
View 2 Replies
Jan 16, 2012
I'm making a text Editor, that can load unrelated code then edit it graphically using buttons.So far my problem is with replace, I'm probably not using the right context some times it works, most times it does not.
[Code]...
View 1 Replies
Jan 25, 2012
I've got this code
ToolStripTextBox1.ProgrammeTemplatesToolStripMenuItem.DropDownItems.Add(btn)
ToolStripTextBox1.TS.Visible = True
How to save this button so that when the program runs again, it's still there?
View 5 Replies
Jul 9, 2009
I'm trying to save my radio button settings in My.Settings...
At the moment I save the setting in the CheckChanged event for each radio button like this:
Private Sub Option1_CheckedChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Option1.CheckedChanged
If Option1.Checked Then
[Code]....
But if I close the program completely and reopen it, the settings will have changed back to the default settings
View 8 Replies
Aug 3, 2009
I have looked everywhere for some info on how to code save and open buttons. In my program, there are textboxes and labels that will have info entered into them by the user. I need to be able save whatever is in the labels and textboxes. Then, I need to be able to open the file and have all values in the labels and textboxes to be restored to wherever they were. I want to be able to save and open just like in excel, word, and whatnot with a file that is saved onto the computer.
View 14 Replies
Apr 17, 2012
I'm using VB 2008, and I have created a Ribbon (Visual Designer) Add-In for excel 2007.When the user clicks a "Save" button, that was created at design time, this buttons click event prompts the user for the new file name...then saves the workbook.then uses the new file name as the label for a dynamically created button that is placed in Menu1, on Ribbon1...all of this works just fine.The problem is, this dynamically created button in Menu1 disappears when excel is restarted. So, I setup user scope settings in an attempt to save these dynamically created buttons.The settings properties are as follows:
Name = RibbonSettings
Type = Microsoft.Office.Tools.Ribbon.RibbonMenu
Scope = User[code]....
The problem is, this seems to lock Menu1 and the dynamically created button never gets added to Menu1. Without this, the button is added to Menu1 just fine, but disappears upon restart.How can I save these dynamically created buttons in Menu1 on Ribbon1?
View 1 Replies
Mar 13, 2010
Private Sub btnSave_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSave.Click
[Code]...
View 5 Replies
Mar 29, 2010
Can anyone tell me why the buttons in the development and in the runtime look different? Buttons.jpg Top is how the button looks like at runtime.Bottom is how the button looks like at development.
View 4 Replies
Jul 7, 2010
When i click on ADD it changes to SAVE and disables other buttons DELETE UPDATE SEARCH.When i click on SAVE and if texboxes are empty it brings an error,when i click search and i want to cancel the search from the inputbox it brings another error i also want to add cancel button or refresh button.How can i make this project to run well. WHere did i go wrong
[Code]...
View 6 Replies
Aug 15, 2011
i am creating a game and i would like to record the score and name ounce the player is game over.. you can also view the records
View 2 Replies
Nov 20, 2008
For an application I am building, I need to have the user specify button labels and be able to click on them to play a sound they specify. I would like them to be able to specify the number of buttons, the label for the buttons, and the sound file to be played. I would then like the user to be able to save those settings. How do I go about doing this? Also, how do I get the file they've opened's name to show up in the title bar of the app?
View 2 Replies
May 31, 2010
I am attempting to create a program which saves customer information for a business e.g first name, last name, address etc. but i am having trouble coding the save , new, print, next/previous record buttons.
View 2 Replies
Jun 26, 2011
I am working on this app and decided to add a listbox to the form since a listbox can contain objects. The objects I decided to add are buttons. When I launch my app. I see the listbox and what appears to be where the buttons are but no text is being displayed. Maybe I am missing the point of the listbox. Can I have buttons in the listbox and have the text display for the bottons?
View 1 Replies
Jan 8, 2012
I have a button in my windows form using vb.net when I actually clicked the button something happen then when I press any keys like enter or space, it focuses on the button since it was clicked and the codes in my button is the one that is executing rather than the codes in my enter or space key. I think it means that the button is being pressed when I hit spacebar and enter because there is a blue border in the button. When I click a button the focus remains on the button. I don't know how to remove that.
View 5 Replies
May 30, 2010
Ive got over than 120 groupboxes in my project which Contains radio buttons & Checkboxes control How can I save & retrieve the selection setting for these huge amounts of groupboxes when close my form and restart it?
View 16 Replies
Nov 13, 2010
Firstly though, I'll have to mention that I'm a relative newcomer to vb.net and don't really know that much about advanced functions.I have my main form which dynamically generates 15 buttons.
Each of these buttons will need to open another form, depending on which form has been assigned to that button in a config file (the config file isn't yet done, as I want to get it working simply by hardcoding the name of the forms for the time being)
The way I have it in my head is that I would assign the form name that needs to be open to the name of the button, if that makes sense....However, I have absolutely no clue how to do it, I've tried a couple of things but to no avail.
Here's my code, and I have no problem changing any part of it if it will help things along, this is just the only way I know how to create dynamic buttons.[CODE...]
View 8 Replies
Dec 4, 2008
Is it possible to make custom buttons for the forms? I know i can add imaging to the button controls, but if is it possible to really customize the buttons so they look different, like designs instead of blocks?
View 3 Replies
Nov 14, 2011
I have a basic math test program, and 2 forms to allow the user to choose which function to test on.
The first form has a list of radio buttons with the 4 basic math functions and a button to load the next form.The second form contains this code on Load..
[Code]...
frmOptions has 4 radio buttons, addition is default chosen.After selecting one, the user clicks a button to open frmTest.The above code runs upon first load to change a label to reflect what was chosen on frmOption above.
On step 3, the label on frmTest that is supposed to be changed based on the Checked radio button from frmOption never changes. It doesn't even change on the first load of the form, so I think something is wrong with the Checked property of the radio buttons.
View 3 Replies
Mar 3, 2012
I have a piece of software with two tabs, inside each tab there are buttons (the user can add the buttons when they want). when tab1 is full tab2 should start to fill. I currently know how many buttons fit on the screen so I just say something like if buttons > 150 then start to populate tab 2 The problem i have now though is if the resolution is changed then a different amount of buttons can be displayed. so if I put my screen to 1280x720 some buttons are left of. I was thinking of detecting the resolution and then using different cases for different resolutions but this seems very inefficient im wondering if there is a different way?
View 5 Replies
Nov 2, 2009
How do I make a connection between a button and textbox when using windows form applications. In other words, if a button is clicked on, how do I assign it to read that certain textbox where the information was entered?
View 4 Replies
Feb 3, 2010
Just a quick question, using Visual Basic 2008, is there a way to change the text of a forms buttons and other objects during runtime so that the text sticks no matter if the form is closed and reopened or not? I can get the text to change, but after closing the window and reopening, the text resets. Is this possible?
View 2 Replies
May 21, 2011
I'm making a program which will work minimized in the system tray.Now, what it have to do is to load a page [URL] and then input a specific string which i have stored, into this element:
HTML Code:
<input name="ctl00$ctl00$JobnetBaseMiddelContent$LoginContentPlaceHolder$txtUsername" type="text" id="ctl00_ctl00_JobnetBaseMiddelContent_LoginContentPlaceHolder_txtUsername" class="text required" style="width:183px;">
and another string into this one:
HTML Code:
<input name="ctl00$ctl00$JobnetBaseMiddelContent$LoginContentPlaceHolder$txtPassword" type="password" id="ctl00_ctl00_JobnetBaseMiddelContent_LoginContentPlaceHolder_txtPassword" class="text required" style="width:183px;">
and then press this button:
HTML Code:
<input type="submit" name="ctl00$ctl00$JobnetBaseMiddelContent$LoginContentPlaceHolder$btnLogon" value="Log ind" id="ctl00_ctl00_JobnetBaseMiddelContent_LoginContentPlaceHolder_btnLogon">
After that, it would login to the website, and would afterwards press on another button.Each week, i have to login to a website, and press a button in order to keep my current economic status. Which is quite meaningless. Therefore, having a program to press it for me, working in the background, would be so much easier, and make me not forget it?
Ps.The elements info's were received using Google Chrome's "View Element Details".
View 4 Replies
Jun 6, 2011
I have a form which gets populated by 15 buttons dynamically at runtime (these need to be dynamic as there will be a user config file at some point)What I need these buttons to do is to open a specific form when clicked. Which form that opens will be dealt with in the config file.
Public Class frm_MainScreen
Private Sub frm_MainScreen_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load
Dim count As Integer
Dim ImageDir As String
[code].....
View 2 Replies