Forms :: Bug When Setting FolderBrowserDialog1.SelectedPath In Code?
Mar 2, 2010
Do you know why this happens? If (strCampaignFolder <> "") Then 'Next line works fine when strCampaignFolder already has a value set by FolderBrowserDialog1.SelectedPath further below.
FolderBrowserDialog1.SelectedPath = strCampaignFolder Else 'PROBLEM: Next line causes the external .NET code 'UnsafeNativeMethods' to put the app to sleep when strCampaignFolder has no existing value!
[Code]...
View 3 Replies
ADVERTISEMENT
Mar 2, 2010
Do you know why this happens?
vb.net
If (strCampaignFolder <> "") Then
'Next line works fine when strCampaignFolder already has a value set by
[code].....
View 4 Replies
Jan 21, 2009
How would I split Folderbrowserdialog1.selectedpath to remove the selected folder but keep the path to it, e.g C:Folder1Folder2Selectedfolder becomes C:Folder1Folder2
View 2 Replies
Jul 21, 2011
I am using OpenDialog and want to move down to the SelectedPath when i have it set....
I have it set for a folder that is not in the pick area of the OpenDialog, and would like the selectedpath to show when i show the OpenDialog
View 9 Replies
Jan 17, 2011
i have a textbox1 with the following text c:xxxy how can i open Folderbrowserdialog.selectedpath with a variable,i mean:when i try to do Folderbrowserdialog.selectedpath=textbox1.text, this displays a error.
View 1 Replies
Apr 4, 2012
Just opened the VS2010 pack I've been meaning to get round to for ages. Where is the setting to use un-docked forms in the de?I know I can un-dock each for manually but thats pants.
View 6 Replies
Feb 9, 2009
Did vs2008 or vb.net got some of the solution to solve properties setting of the components are same with each other?
Example: like I want to standard the datagridviews' property, each of the datagridviews' property is same with each other. but each time I create the new datagridview. I have to manually set the datagridview 1 by 1.
View 4 Replies
May 5, 2010
I'm doing an application for a school to help them keep track of student attendance and because I'm rather new to VB 2008 .NET I'm sure I'm missing something simple.see the screen shot and attached sample application showing the problem I am having.
The screen shot shows 3 open forms. I'm not able to get the value from the 3rd open form into the Student ID textbox of the 2nd form even though my messagebox shows a value is really in there.The attached application has 3 forms similar to the production application I'm writing which also includes 3 forms. Could you look at the application and tell me what we are missing to get the textbox data in the 2nd form to show up?
View 6 Replies
Nov 18, 2009
I've set the Icon for my forms and project, and saved. But my project's icon is still the default app icon.
View 14 Replies
Mar 3, 2012
i am working on a college project in visual basic 2010. in my program, i noticed at the last minute that i needed to add a "main" window. in this main window, i want to have all my other forms opened by buttons (i know how to do that part of it).
the problem i keep having is the window with the options to save the information pops up, not the main window. is there a way to easily fix this? maybe a snippet of code, because the only way i can think of is to scrap the project, start over from scratch adding my main window first, then the others.
View 2 Replies
Dec 4, 2011
I have a list box on my form with 2 value - "2010" & "2011". When I change the value in the listbox it should set the minimum and maximum value of 2 datetimepickers. Each time I try to change the value I get an error - for example if I change the listbox from 2011 to 2010 I get the error:
"Value of '31/03/2011 00:00:00' is not valid for 'MaxDate'. 'MaxDate' must be greater than or equal to MinDate. Parameter name: MaxDate"
If ListBox1.SelectedIndex = "0" Then
DateTimePicker1.MaxDate = #3/31/2011#
DateTimePicker1.MinDate = #4/1/2010#
DateTimePicker2.MaxDate = #3/31/2011#
DateTimePicker2.MinDate = #4/1/2010#
End If
If ListBox1.SelectedIndex = "1" Then
DateTimePicker1.MaxDate = #3/31/2012#
DateTimePicker1.MinDate = #4/1/2011#
DateTimePicker2.MaxDate = #3/31/2012#
DateTimePicker2.MinDate = #4/1/2011#
End If
View 1 Replies
Nov 9, 2009
I have a panel with 5 labels and 5 listviews in it. By default they are hidden. At runtime I want only the ones shown that are needed. For example, if there are enough players for three tables then three tables should show up. I know how to make the controls visible, but not sure how to control how many are actually displayed. I also think I may have to do seperate loops and seperate the control types?
Private Sub Set_Tables()
Dim tables As Long
tables = Math.Ceiling(NumPlayers / NumPerTable)
[Code].....
View 1 Replies
Aug 16, 2011
I have a combobox which is populated from a datatable.
I hae a list of values also and when one is selected i would like it to highlight the correct value in the combo box and have been trying to no avail.
my code is
Dim searchrow() As DataRow
Dim searchrow2() As DataRow
Dim cellvalue As String = dgvStockComps.Rows(e.RowIndex).Cells(1).Value
[Code]....
eveytime i sellect a value in my list nothing happejns to my combo box (i.e. it goes blank and it doesnt show the sleected item like i would like!)
View 2 Replies
Sep 20, 2011
I am having one heck of an issue with a webbrowser control I am using. As part of my job, I am working on creating a tool to automate an older system that we still use. The part that is being automated is web-based, and the group running the automation does not have access to any automation tools like QTP. In order to give them something they can use, the idea was to build an application just for them. In this application, I have everything working perfectly, with the exception of the most important part: the entry of a policy number. The policy number goes into a textbox, and then the user presses a button. A part of the automation sequence involves the use of a timer.
If I manually navigate to the appropriate page and put the .SetAttribute statement in a button action on my form, it works perfectly fine. However, if I put the .SetAttribute statement anywhere that is being controlled by the timer ticking, it does not work.So, this works:
Private Sub btnTest_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnTest.Click
Me.wbPrestige.Document.Window.Frames("WORKSPACE").Document.GetElementById("policynumber").SetAttribute("value", "1234567")
End Sub
but this does not:
Private Sub timerLoad_Tick(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles timerLoad.Tick
Select Case currentStatus
Case Status.wait_for_retrieving
[code]....
As a note, I do not have the Select statement in the Tick action; I have it in its own little sub. However, since it functions the same way no matter where it is, and to save space, I combined everything here. Also, at the time of the timer firing and setting things into motion to enter the policy number, the page is already fully loaded, so I don't think it is an issue with that, though I could be wrong.
It does not throw an error. The "1234567" above is passed in as a string, and doing a watch on it at run-time does show that the value is actually in there. It just seems like the .SetAttribute is not registering on the textbox. I have tried a few things ranging from "what-if" all the way to "that-is-so-dumb-it-just-might-work." Nothing seems to do the trick. I have tried sleeping everything for a few seconds just to see if there was an issue there. I have tried issuing the .SetAttribute command a few times in a row thinking it just wasn't taking the first time. Since setting .Focus() didn't seem to work for it, I even went so far as using SendKeys to move focus to the textbox on one attempt and API calls for mouse clicks (to click inside of the textbox) on another attempt. As a last crazy attempt, I had the Select statement doing a .PerformClick on btnTest (which works if I navigate to the page manually).
View 4 Replies
May 15, 2012
Most of the apps I write have a base / home form and a few other forms (three of four typically) which pop up in response to controls clicked by the user. I'd like to be able to set some properties to be the same for all the forms in an app; particularly properties like BackColor and FormBorderStyle. Yes, I can manually set the individual properties for each form in the VB IDE, but I'd prefer to be able to have one line of code in the base / home form for each property along with one line for each dependent form which says something to the effect of "use the same property value as the base / home form has". Overall, my objective would be to have one single line of code in the app which, when changed, would apply the changed property to all the forms. For example, a single line which I can change to take the BackColor from Apple to Orange for all the forms ...
[Code]....
View 11 Replies
Jul 29, 2010
Dows anyone know how I can build a timeout feature into a windows forms app.
The app is event driven, but I am thinking of somehow using a timer which counts down for say 10minutes, and one the timer ticks then we time out the user.
The problem I have is how can I reset the timer each time the mouse is moved or clicked.
View 3 Replies
Jan 3, 2011
I got a form, another form, another form, another form, etc.And I got a quit form (Msgbox is not pretty)So, there starts a problem.I have two quit forms now, so that the user can pick the best one.The problem is that I don't know how the user can pick it. I have a quit button in Form3. I want SettingsForm have one label that says "Use the new quit dialog:" and two RadioButtons (which it has.) The Yes Radiobutton = Uses the new form, the no button uses the old one.Settings save the selection for the next session, etc.
RadioButton2 = Yes
RadioButton1 = No
Label = Use the new quit dialog
ButtonQuit = The Quit Button
View 15 Replies
Jul 23, 2009
I am doing a alarm system project which allows a user to select a particular alarm and test the sound. It will also enable the user to save the alarm as the prefered type. So that the next time the alarm rings, it will be that tone which the user has selected.i have already done the select alarm button, play and stop button, but i am having trouble with the save button. [code]
View 1 Replies
Apr 30, 2009
So I am playing around with the resize event. My form is 500 wide, my button.left is at 100. If I use:
Dim int As Double
int = button1.Left / Me.Width ' this = 0.2
'resize event
'Button1.Left = (int * Me.Width)
TextBox1.Text = (int * Me.Width).ToString
The number in the texbox is correct - proportion wise, but it won't set the button1.Left to this number. I'm sure this is because int is a Double where .Left is an integer?
View 7 Replies
Oct 26, 2009
I'm having trouble with setting a datagridview's cell in edit mode, or rather, to let the user type some input on load of a form (as in Excel or the like).
This is my code (after the dgv has been filled):
dgvTentander.EditMode = DataGridViewEditMode.EditProgrammatically
'(or dgvTentander.EditMode = DataGridViewEditMode.EditOnEnter)
dgvMyDGV.CurrentCell = dgvMYDGV.Rows(lastrow).Cells(TeCOL_Quant)
dgvMYDGV.BeginEdit(True)
The code correctly indicates that the cell is selected, and when the page is loaded I can still se the cell selected, but the cursor doesn't appear and nothing happens when I type.
View 3 Replies
Apr 28, 2010
Is there any way to create a new setting from source code instead of having to create the setting first and editing it later?
View 5 Replies
Feb 19, 2008
I have an open database (dataset) with two tables. It is binded to toolboxes, but I have one field, what I have to calculate about other parameters. I have binding navigator, and I can set field values from controls (eg. toolbox). I can step my rows, with binding navigator. I can update my database. But how can I set field value from code?
I want a code line:
database.fields("fieldname") = something - or something like this
View 8 Replies
Mar 30, 2011
I've been searching for quite a long time how to do this. I don't know how to set the colour of a row item in the GridView (WPF) using code I don't want an example in XAML. My data comes from me loading & pulling apart an XML file. I then put it into a small class with properties and those are bound to the column to populate the data. Later, it can begin some functions on the table's data. Because this takes at some times over 10 minutes it's on a thread & I would like to colour the rows I've completed parsing depending on the result. (IE: Red for HTTP error, Orange for XML parsing error ect...)This is the GridView's XAML:[code].....
I am then parsing the data using the url column. I am currently changing the selected item as I go through. I want to know if theres something I can do to change the specific item. Let's assume I'm on row 500: I use: setSelected(i) which uses Dispatcher to safely change the selected row. Is there anything I can do to change the colour as well?
View 1 Replies
May 23, 2010
This there a setting anywhere that will enable you to open the code editor and all sub/functions etc will be "shrunk", i have a lot of sub and hate opening the IDE att the start of the day and having to minimise everything.
View 2 Replies
Apr 14, 2010
I have problem when asking for default ILogger from Unity container. I have this setting defined in code (its VB.net)
Dim container As IUnityContainer
...
container.RegisterType(Of ILogger, NullLogger)()
[code].....
View 1 Replies
Dec 7, 2009
I've been trying to search a way to set IE's proxy in code and ran across the WinINet API.I then found some code that someone made to set the proxy:
VB.NET
' The Windows API function that allows us to manipulate
' IE settings programmatically.
Private Declare Auto Function InternetSetOption Lib "wininet.dll" _
[code]....
how to modify it correctly.
View 2 Replies
May 6, 2010
How do I code in vb.net that the text box can only accept 10 inputs from the user. User can only enter 10 strings.
View 2 Replies
Dec 4, 2011
I am trying to make a program that allows me to operate a program while I am not around (kind of like a bot) because I need to move alot of things and do the same motion over and over.
So in my program's settings I have made a form that is transparent that I want to set my working area with (i wont be resizing the form, it's size is "975, 575") and save the forms Top, Left, Bottom, Right positions so I can create a macro for my mouse to click.
how to save a forms position on the screen? So I can use it to set a working area?
I just want to save its current location to 4 variables
View 2 Replies
Jul 8, 2009
I need to work with custom controls, I want to be able to set the properties of my controls so when I put them on my windows forms they will show up in the properties window thing.
View 3 Replies
Jul 28, 2009
just wondering if it is possible to add a method to all forms in my project without having to do it on one form and Inherit all my other forms from that one
View 3 Replies