Get Form Name The DataGridView Is Located On
Jan 15, 2012
I have a DataGridView that is embedded in a TabPage of a TabControl and the TabControl is embedded in a SplitterPanel of a SplitContainer and the SplitContainer is embedded in a ToolStripContentPanel of a ToolStripContainer which is on a Form. I want to get the name of the form the DataGridView is on, how do I do this?
Note: Sometimes in my application the DataGridView will not be embedded in any control other than the Form. So I would need this code to work no matter what the DataGridView is embedded in. For example, if I send my DataGridView as an argument to a function how can I get the name of the form the DataGridView is located on?
[Code]...
View 3 Replies
ADVERTISEMENT
Apr 1, 2012
I have default.aspx used masterpage, in master page i have a control called DefaultMenuContent, this control have a dropdownlist with autopostback, the problem is loosing the selection even if i use Is Not PostBack in control's load event, how to persist the dropdownlist selection?
In Master:
<asp:ContentPlaceHolder ID="MenuContentPlaceHolder" runat="server">
<art:DefaultArabicMenu ID="DefaultMenuContent" runat="server" />
</asp:ContentPlaceHolder>
[code]....
View 1 Replies
Sep 27, 2010
I have this main form, that uses dll's to get information. One of them is to have a preview of a video. So the one dll has its main class, that contains this.[code]...
View 8 Replies
Jul 25, 2009
How to access a variable that is located in a private sub and then display that variable in another private sub located on the same form.
My actual code is:
Public Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
Dim strFileName As String
strFileName = OpenFD.FileName
OpenFD.InitialDirectory = _
[Code] .....
Obviously, the sub in blue has nothing in it currently and so this is the one I would like to access the variable in. The variable I want to use again is 'FILE_NAME'.
View 27 Replies
Apr 25, 2012
I am new to VB. I have created some labels/textboxes in my Form1. I use them to do some calculations. Basically, this is my calculation area (in Form1) and then I want some of the results that have been calculated and showed in these texboxes to be shown in labels which are in another form (Form2). So here is what I have done in terms of coding:
Label12.Text = Transactions.ComboBox1.SelectedItem
Label13.Text = Transactions.ComboBox2.SelectedItem
Label14.Text = Transactions.ComboBox3.SelectedItem
Label15.Text = Transactions.TextBox1.Text
Label16.Text = Transactions.TextBox2.Text
These codes are in Form2 and Labels 12-16 are in my form2 as well. My form1 is called Transactions as you can see. Everything looks OK, when i run no errors, also when do the calculations and I go from form1(Transactions) to form2, labels 12-16 show the results from form1 but the problem when I go back to form1 and change the values and go back to form2, the labels 12-16 are not changed. They simply show the old values regarding of the fact that they have been changed in form1. So how can I make form2 to show them correctly, to refresh the form or what?
View 3 Replies
May 23, 2012
show me how to Load an Image that is located in a Folder created on a nother Form. Public Class CroppingForm Private Sub CroppingForm_Load(sender As System.Object, e As System.EventArgs) Handles MyBase.Load PictureCropper.Picture = Image.FromFile(MainForm.CurrentFilePath, "PreView Photo.bmp")
End Sub The Image that is sepose to be loaded into PictureCropper is named "PreView Photo.bmp"
By using: PictureCropper.Picture = Image.FromFile(MainForm.NewImage)the Image is being loaded correctly.
Unfortunately this is going to be a problem later on, for a Image with a diferent name will allso have to be saved to the before mentiond Folder. That is the reson for var."CurrentFilePath" it mast hold te Folder Path only "D:DIY.ID Photos"
[Code]...
View 6 Replies
Jun 7, 2009
I need to press a button on a web page that is not located within a form, so how do I press a button according to its html element ID?Here is the HTML for the button by the way.:
<input id="i0011" class="css0088" type="submit" value=" Sign in " name="SI"/>
I had to use the code tags.
View 2 Replies
Jan 9, 2012
I want to have a DataGrid in a form Docked as Fill, and have it located below the ToolStrip.What I mean by Docked as Fill is I want to be able to resize the DataGrid along with the Window Form.When I select Dock as Bottom, the space between the DataGrid and ToolStrip changes as well.
View 1 Replies
Jun 17, 2007
Trying to get this for the last couple of days,but can't figure it out.I found a DVD class in vb.net but how can you tell it what Drive it needs to look for and also to a folder on your harddisk?
I found this one DVD.DVDDirectory = "c:dvdmovievideo_ts"but i'm getting all kinds of weird errors, that its not compatible?
Anyone knows how to do this correctly?I'm just trying to get a overview from a DVD that shows all the titles and chapters/ sound etc..
View 9 Replies
Sep 1, 2010
I did a little research to find a source that would check the proxy server whether if the server is a located at government or fbi's server, but I couldn't find what I am looking for.
View 10 Replies
Jul 1, 2010
Well whenever I reference a file I have been doing so using the full C://location/here kinda way, but my next program will be on CD so I need to figure a way to locate files that will be on the CD drive.In other languages I have used, %A_ScriptDir% and then go from there, is there something similar in vb?
View 10 Replies
Nov 23, 2010
Is it possible that i can run a vb6 exe file located in another computer using my vb.net program? how?
View 4 Replies
Jun 28, 2010
I am trying to connect to a dbf file.. I have it so right now I can specify the path of where the dbf file is located ie, C:\Temp but there is more than one dbf file located in the folder and I don't know how to get it so I can specify which dbf file to open. I have done searching and believe I have to do it thought a SQL statement but am not sure how to go out it and once the statement is created how to use that to open the connection.
View 2 Replies
May 1, 2012
I know that it is Microsoft.VisualBasic and this is where I need help. Should be quick question I am sure.
View 3 Replies
Apr 19, 2012
I will have people send me (a zipped archive of) an entire VB project and when I try to open it, I get a message that "The system cannot find the file specified" for one or more files. I have had them bring their laptop with the project on it, and it runs, but when I search the folder, I only see the files they sent me. Apparently sometimes files get stored (or moved) elsewhere and their system will track the locations, so their computer can find the files??? Really not sure how or why this is happening.Is there any way to have VB report where all the files in a project are actually located? There are so many files and so many folders in even a simple VB.net project that trying to track these down myself is very frustrating.
View 1 Replies
Aug 25, 2010
I have to connect Access DB located in web server with VB.NET Windows application.
View 3 Replies
Feb 5, 2012
I will have people send me (a zipped archive of) an entire VB project and when I try to open it, I get a message that "The system cannot find the file specified" for one or more files. I have had them bring their laptop with the project on it, and it runs, but when I search the folder, I only see the files they sent me. Apparently sometimes files get stored (or moved) elsewhere and their system will track the locations, so their computer can find the files?Is there any way to have VB report where all the files in a project are actually located? There are so many files and so many folders in even a simple VB.net project that trying to track these down myself is very frustrating.
View 13 Replies
Nov 5, 2009
I want to change the defaults of setup project, (ex. installallusers to true, it comes with false). Any one know where is the setup project template, so I can change it
View 6 Replies
Jan 27, 2011
I am unsure why all of the sudden i am getting this error every time i compile and run my VB.net program running Oracle 10g. It ran fine many times but all of the sudden keeps saying this now.
[URL]
It happens on this line:
myConnection = New OleDbConnection("Provider=OraOLEDB.Oracle;Data Source=(DESCRIPTION=(ADDRESS_LIST=" & _
"(ADDRESS=(PROTOCOL=TCP)(HOST=" & dbHost & ")(PORT=" & dbPort & ")))" & _
"(CONNECT_DATA=(SERVER=DEDICATED)(SERVICE_NAME=" & dbServiceName & ")));" & _
[Code].....
Once it gets to the myConnection.Open() is when it displays that error box. Like i said, i used to work just fine.
View 1 Replies
Dec 28, 2011
I have two MS Reports with each their own dataset.The first one works but the other does not fill anything in it's table. When I debug the dataset, just before showing the Report, it's fill, and I did the same setup as with the first report.I get no errors og other input.. The table just not show any rows at all. Is their any log files that can tell me something and if so, where can I find them?
View 2 Replies
Mar 12, 2009
I always wondered, but is there a way to get My.Settings to save even when you move a program, such as copy it to another location? Maybe its just me but whenever I use My.Settings in an application, copying it into a different directory will reset all the settings, which kind of sucks.Is there anyway to get the values to stay in the application no matter what? If not My.Settings, than is there any way to store a value to a program so that you don't have to use external files, but so that it will remember the settings even when copied?
View 8 Replies
Jan 29, 2011
How do I access a file located directly in my bin folder via a relative file path?
View 2 Replies
Dec 4, 2009
i want to connect to mysql located on my website's server in visual basic.
View 1 Replies
Dec 17, 2009
I'm trying to delete a dll file in the system32 folder but receive a permission error (Access to the path 'c:\windows\system32\testfile.dll' is denied.)
I'm using:
[code...]
I have multiple versions of an app that uses a dll, I have to replace the dll with the correct version and register it. The plan was to delete it from system32, and copy over the relevant version, then register it.
View 1 Replies
Dec 2, 2009
I am using ASP.NET 3.5.
In my code behind i have this code that i want to execute from my JavaScript.[code]...
View 4 Replies
Mar 7, 2012
I have the listview1 saving writing good.List view is two columns First column name Second Column being URL. [code] What I can not figure out is how to get the url located in column two to open a the webbrowser1 in form1.
View 4 Replies
Jan 23, 2011
I am making a program that Calls on a string in a dll to verify that the program is registered. Any idea on what functions I need and how to write a string in a dll?
View 1 Replies
May 21, 2009
i am trying to add webreference by right clicking on project in visual studio 2008 it gives me error message below The document at the url [URL] was not recognized as a known document type.how to sort out error above or is there any other method to add webservice
View 5 Replies
Feb 16, 2010
I am attempting to discover how I can populate a ComboBox with the data values already located in a data source that has been added to my project. I know how to use the ComboBox.Add method. I also know how to add individual value items contained in a manually entered array at design time using the For Each Next loop. However, I am unable to populate a ComboBox with all values for a field of a table in a data source that has been added to my project. I assume that I am unaware of some simple referencing step that will solve this problem.
[Code]...
View 10 Replies
Jan 9, 2012
I am developing a program that send sms to cellphone using a datacard.I can read the com port from the server if i run the program from the server, but i run the program from the terminal y read the com port of the terminal, but i need to read the port from the server for use datacard. What can i do? My code for read com port.
Function checkPort() As String
Dim intPort, X As Long
Dim strAbierto As String[code].........
View 3 Replies