Using A Check Box Tied To A Program Settings?
Feb 22, 2009
I am using a check box tied to a program settings. When I am in form designer my check box property is "unchecked", however, when I debug my program the checkbox is checked.
My value for my settings is set to false and my property setting is also false.
View 1 Replies
ADVERTISEMENT
Sep 8, 2009
Is there a way to maintain application modified Settings in the settings files after a program update? i.e. I have 10 or so values in the settings file and the users can modify them... when I send a program update they revert back to what I initially programmed them to be.
View 3 Replies
Aug 5, 2009
ReportViewer is a component I use frequently. Imagine my surprise in VS2010 when I find that a project MUST use the 4.0 framework choice or the toolbox will not display the component. I am trying to use a 2.0 project for compatability reasons. No matter how I try to reference the WinReportViewer it will not work unless I update the project for 4.0 framework.MS, I don't understand what this means for upgrade path for old projects being opened in VS2010. We are a VS2008 shop and it would be horrible to upgrade a bunch of projects to 2010 only to find that ReportViewer is no longer supported by 2.0 framework.
View 5 Replies
Feb 4, 2009
how many handlers are tied to an event?
View 2 Replies
May 5, 2012
is it possible by 1 program to save settings to another program without running the program that is being edited?
View 6 Replies
Jun 14, 2010
Currently I have a background worker doing a bunch of stuff and if a condition is met, it throws up a MessageBox for the user to pick from an the background thread pauses like I need it to, however most of the time the Messagebox shows up behind the main form (which is on the primary app thread, the UI thread) and I'd like the BW code to pause until it's acknowlegded and I also want the MessageBox to be owned by the main form (so it's always displayed in front and you can't get to the main form until you acknowledge the MessageBox. Later I'll be changing the MessageBox to be a modal form that matches the app's theme (I'll be opening this form using .ShowDialog()) should I go ahead and make that form now?
View 20 Replies
Sep 30, 2011
Beginner question. How come I can do this:
Public Class Form1
Private StudentsInMyRoom As New ArrayList
Public name As String
[code].....
View 2 Replies
Apr 15, 2011
Is it possible to check to see if a program made by my company (I fill out all the publisher stuff in vb) is installed on the computer, and if it is can i have another program read the My.Settings of the installed program that i was looking for.I am using VB Express 2010 with click once deployment.
View 5 Replies
Apr 24, 2010
I have a app config file with a filewatch file path as a setting. This way the user can change that file path easily on site. My problem comes into play when the file path, usually to another computer on the network is not valid, then I will get a not so nice microsoft error. I would like to catch this error, and put in a friendly msgbox to tell the user it's just an invalid file path. But the file watch is on my first form on the program, and having the catch on the onload of the form is not soon enough. I can catch the error on the form1.designer.vb, but I don't think your suppose to modify that. Cause when I do, bad things happen, like i'm not able to get my form in design mode.
View 2 Replies
Jan 16, 2012
I declar a dataset in my setting i Write the code below:
GlobalDataSet = My.Settings.GlobalDataSet
GlobalDataSet.Tables.Contains(TableName)
But problem is when load my application first time My.Settings.GlobalDataSet is null. a error rise in secound line is NullReferenceException. i try to write below:
If
My.Settings.GlobalDataSet =
""
Then
GlobalDataSet = My.Settings.GlobalDataSet[code]....
but it say sindex error. is there any code for check My.Settings.GlobalDataSet is null or not null.
View 4 Replies
Aug 15, 2011
using vb.net I need to access the regional settings on a remote server and check to see if they are en-gb
View 4 Replies
Apr 7, 2012
I have some application settings that I want to put some error checking in and the below code does not work.
If My.Settings.SmtpServer = ("") Then
MsgBox("SMTP cannot be blank!", vbExclamation, "SMTP App")
End If
View 4 Replies
Jan 28, 2009
My program will need to store some settings for when the program gets closed then opened again. I would then like to reload the settings?
- Flat file
- Database
- Registry
- Other
View 1 Replies
Mar 23, 2011
I am creating a web browser as a school project. One feature I hope to include involves a splash screen check the state of a Boolean (True/False) at launch and then open the appropriate form. I know that I will need an 'If' statement in the code of a splash screen but I am not sure how I would go about making it do this.
View 4 Replies
Aug 2, 2009
I want to hear some discussion regarding what is the best way to persist program parameter and variable settings from one run of the program to the next. I used to often use the ubiquitous INI type file in VB6 programs but I am aware that these are not formally supported in .Net programs. I also have a major aversion to adding to the already overwhelming bloat of the Windows registry by using that to store values.
[Code]...
View 6 Replies
Apr 9, 2010
Details: I want to compare these above two table1 and 2 . The unmatched records should be save in a new table .
objectives
1 Should take input the table and fields we want to match each other.
2 Then after searching or reading the record from table and selected fields save the unmatch records in a new table
View 1 Replies
Apr 14, 2009
I am currently using vb 2008 and want it so when a user registers it will unlock all the extra features and stay that way even after the user quits and restarts the program... I already have everything set exept for the save feature. I don;t know exactly what to do. I just want to save the settings of my program so that they are the same every time somebody uses the program. I heard that you need to go into Project , then properties and then settings... But I don't understand what to do there...
View 2 Replies
Jul 21, 2011
In an app I am writing I need to be able to display the current settings of the following:- Windows "automatically restart on error" setting from advanced, startup and recovery section Paging file size and whether it is custom size or set to system managed Is this at all possible? perhaps VB has a function to do so I cannot find, or perhaps I can do by querying a registry value?
View 6 Replies
Mar 15, 2009
How can i get my program to remember settings?I have made it so that they click on a register button, if they enter the correct registration code, it will unlock these features. How can i make it so it remembers that the key has been inserted, so when the user next uses the program, they dont have to re enter the key. I think it has something to do with ini files, but im not sure how i can implement it.Here is the
Private Sub Register_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Register.Click
If UserID.Text * (KeyID.Text / 2654) > "2234047144494" And UserID.Text * (KeyID.Text / 994) < "213725721516" Then
MsgBox("The User ID and Key are Correct! Registration is now complete. You now have full access to EVERY feature.
Base.CalenderToolStripMenuItem.Enabled = True
Base.ShowTrackBarToolStripMenuItem.Enabled = True
Base.HideTrackBarToolStripMenuItem.Enabled = True[code].....
View 4 Replies
Feb 26, 2009
How would I be able to encorporate an ini file that is full of this...
<?xml version="1.0" encoding="UTF-8"?>
<IpceloynProject CompactMode="1">
<ThemeInfo Caption="Common">
<Class Name="Documentation">
[code]....
View 1 Replies
Jul 6, 2011
I have a autoit script that I am using for automation testing. My autoit script is called from a vb.net file. Dialog box of UAC settings will appear and is stopping the execution of test scripts. Currently I am trying process.startinfo.username and password to give specifically username so it may execute the script. Please guide how can I avoid that UAC during my tests execution.
View 2 Replies
Oct 27, 2010
I have 2 Forms: (1. MainForm.vb and 2.Settings.vb). MainForm.vb is the Startup form and Settings.vb shows when the MainForm.vb loads. Settings.vb has a CheckBox that allows the user to check if they never want to see the form (Settings.vb) at startup again. When I check it and close the program, then restart the program the checkbox is unchecked. How do I get the program to remember the user selection of the checkbox? [code]Is this a "Writing to Registry" matter?
View 17 Replies
Jan 6, 2011
On the printer preferences side, paper size is Letter. So when i try printing a Rectangle it is cutting from the bottom, using following code. The reason i found is Printer is not listening the code to change the size from Letter to A4. Only then Length of page will be increased.[code]...
View 4 Replies
Apr 23, 2012
Is it possible for a program to make new settings?
To enter the settings name, type, scope, value?
View 9 Replies
Apr 27, 2012
I want to save settings in my program as follows. I have an import button to open files. How can I make it so when I start up my program next time, they are already "imported" as a setting or something? *Note - I have not tryed anything as I do not have the slightest clue how.
View 1 Replies
Jun 15, 2009
Okay, i have this program that gives the user some settings that need to be saved and loaded when the program runs. Can anyone help me with this?
View 15 Replies
Jul 9, 2010
We have a VBScript that launches an Access app that connects via ODBC to SQL Server - wouldn't you know the server name is changing.
Is it possible to use VBScript to modify the ODBC information in the registry to point to the new server? Basically changing one specific value for one specific key. Am I better off deleteing the ODBC key and readding it from scratch?
View 6 Replies
Mar 26, 2012
How do you make a program remember settings. For example, first it prompts you for your name, then when you close out of it and start it again, it will display your name?
View 8 Replies
Apr 4, 2011
I'm working on program that has two forms. The main form is called 'frmMain'. Second form is called 'FrmHistory'. In the History form, you can check a number of combo boxes to set settings for a grid.
This works.Now, when I close the FrmHistory form and then open it again, I have it so those combo boxes (Settings) are how I left them. This works. I do so via this.
[Code]...
View 3 Replies
May 17, 2012
To save data to your program using My.Settings. To do this go to your program's properties and to Settings. Create your variables there and to access them, here's an example:
[Code]...
View 1 Replies