VS 2005 Variable From One Form To Another?
Feb 28, 2011
I have two forms and I need to take the values from the first form and add them to the second form. I have tried many things and nothing is being added or changed yet on the second form. The second form has a Panel as a background, then a GroupBox to group items together and then the relevant controls themselves.I have been working at this for the last few hours and not getting anywhere and needs a second pair of eyes.I have tried DirectCast() and it doesnt work. Nothing happens.The data isnt added or the control selection isnt changed. No errors either.I have tried Me.ControlName.Property =FormName.ControlName.Property and it doesnt work. Nothing happens. The data isnt added or the control selection isnt changed. No errors either.Screen shots attached and so is my code.Button Click
vb
Private Sub cmdStartClientSearch_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdStartWorkLogEntry.Click
[code]......
View 1 Replies
ADVERTISEMENT
Jan 3, 2011
I have two forms and I need to take the values from the first form and add them to the second form. I have tried many things and nothing is being added or changed yet on the second form. The second form has a Panel as a background, then a GroupBox to group items together and then the relevant controls themselves. I have been working at this for the last few hours and not getting anywhere and needs a second pair of eyes.
I have tried DirectCast() and it doesnt work. Nothing happens. The data isnt added or the control selection isnt changed. No errors either. I have tried Me.ControlName.Property = FormName.ControlName.Property and it doesn't work. Nothing happens. The data isnt added or the control selection isnt changed. No errors either. [Code]
View 22 Replies
Jul 9, 2009
I have the following code but I get blue squiggly line in cnn and when i point my mouse pointer on it i see this message "Variable 'cnn' hides a variable in an enclosing block".[code]
View 2 Replies
Sep 5, 2010
Using Visual Basic 2008 Express. I need to pass a variable to another form. Or else make the variable visible to both forms.
View 4 Replies
Jun 10, 2011
I have one form, which the user enters upto 5 websites then clicks go - I have on the second form, the one with the webbrowser. timer which checks if the web browser is busy then either a green light or black image will be shown along side the assocaited input box on the first form. I am finding it impossible to feed variables into the clock through ByVal, like I would a subroutine or function.
[Code]...
View 4 Replies
Mar 15, 2009
I need code for separation of one word from array in bracket. For example: Word1 (Word2). What I want, is to separate Word1 on the one side and Word2 on the other side.
View 4 Replies
Jul 30, 2009
When in the degug mode stepping through code a line at a time, I want to monitor a variable that was created public on another form. It adds the request, but won't shoe me the data. It says I have to ahve an object reference. I don't know what it wants exzactly or how to give it. Here is an example:
I have on form 1 one a variable, Crec. I am in the debugger debugging code in form 2. To access the variable on form one in my code on form 2, I have to use this syntax: form1.crec Now when I put this quickwatch request in, while debugging form 2, it will not let me see the value for form1.Crec It says I need an object reference. Can you tell me I am doing wrong and how to correct it? I'm sure it something simple.
View 1 Replies
Feb 11, 2011
I have the following function that checks if a date is on a holiday or weekend and returns the first non-holiday or weekend date.
vb.net
Private Function CheckDate(ByVal D As Date) As Date
TempDate = D
[code]....
The function does return a date. But when I try to assign it to variable, it assigns a time instead. Both tempdate and newdate are declared as date also.
vb.net
TempDate = CheckDate(NewDate).Date
View 8 Replies
Nov 25, 2009
I am reading in a mdb table into a datagrid, and with a sql command I am able to pull up a row, but now I am trying to figure out how to get a particuliar "cell" value into a variable, how do I do that? Lets say I want length 87 how would I assign that to say this:
Dim x As Integer = (??Length 87??)
View 5 Replies
May 6, 2009
I'm looking to call a subroutine via a variable. For example:[code]Is that possible?
View 3 Replies
Mar 29, 2010
I have a piece of code that would be greatly reduced if a variable can be used instead of the actual method. (I am using a structure) kinda like the difference between the following code.
srrMulti.mthChildProp1.varRecall = strVarRecall
subPageRef
srrMulti.mthChildProp2.varRecall = strVarRecall
[Code]....
View 7 Replies
Sep 14, 2010
I'm trying to debug my program on a fairly new WIN7 64 Home Premium bit machine. Whenever I try to add a variable to the Watch window, I get the message... Name 'My Variable' is not declared.or Microsoft.VisualBasic.Right(StringRow, 14)'Microsoft.VisualBasic.Right' is not declared or the module containing it is not loaded in the debugging session
View 3 Replies
Sep 25, 2009
I know this isn't a vb.net question per se, but I hoping that somebody else out there can shed some light on my problem. I have a query that looks like this:
" select count(*) from OBJECT_DESCRIPTION " & _
" where INSTALLATION_ID = @1 " & _
" and SHAPEFILE_ID = @2 " & _
" and SDS_REC_ID = @3 "
I assign the above query to the commandtext of an OracleCommand object. I'm getting the infamous oracle 'illegal variable name/number' error when trying to execute the following code using the above:
[Code]...
View 7 Replies
Mar 4, 2009
Intellisense in VB 2005 Express is showing lots of member items when hovering over a variable instead of showing the variable value. For example, when hovering over DataRow("Field"), instead of showing what's in Field, it shows all the members of the Datarow object.
Is there a way to change this, so I can see variable values without using the debug window like so, ?Datarow("Field")
View 3 Replies
Apr 26, 2009
I have a problem when debugging a code. On top of class I declare an array, and the length of array is an integer variable which is applied value below declaration of array.
E.g. class declaration
Dim array1 (2, integer) as string
Public Sub
integer = 5
End Sub
So basically, array is created with integer being 0 or whatever, because it is declared before integer was assigned a value. But the problem is, I need it to be declared at class variable so I can use array in different subs.
View 3 Replies
May 27, 2009
I'm building SQL statements with a bunch of values from a dataset. Obviously that gives some really long names to put inline or even in parameter. addwithvalue code so beforehand I just declare a bunch of variables with really short names and assign them to the DS's exact fields like: [code] but this way I'm putting all the data in the dataset into memory twice by copying it into a new variable, right? So I was thinking, if it's just a string variable representing a field on the dataset, why not declare it by reference so the variable is basically a handy nickname pointing to that field in the dataset.Will it even work to have a string declared by reference and connected to one value inside of a dataset? And if so, will that stop duplicating everything in memory? I forgot how to declare a variable as a reference to another variable instead of the normal way in VB.
View 12 Replies
Dec 7, 2010
I'm looking to create multiple variables based on a counter object. For example if a counter object is 6 I want to create 6 instances of the variable mText
Something like:
Dim i as integer
Dim Count as integer = 6
[code].....
View 1 Replies
Feb 10, 2011
I am looping through a spread sheet control that has some part number and a quantity of labels that need to print for each part number. Can I use one print doc and set the copies for each page individually? For instance, I may need 1 label for row one, 3 for row two, and 5 for row 3. Through my testing it looks like it doesn't work that way.
View 4 Replies
Oct 27, 2009
In the application I'm documenting, sometimes a value is stored in a Public variable & other times it's passed to/from a Public Property which does nothing except store it in/retrieve it from a Private variable. (And in one memorable exception, the Public Property stored it in a Public variable-I'm almost certain that was an oversight by the original programmer though.)
I know that passing it to/from the Public Property has the potential for better validation, but if the Property doesn't actually do anything except store/retrieve it is there any benefit to declaring it as a Property? (Or maybe I should put that the other way around. Personally I'd declare them all as properties because that will allow adding validation later-but I'm not rewriting this, I'm just trying to document it and, in this case, trying to figure out why sometimes it's done as a property & sometimes as a Public variable.)
View 2 Replies
Feb 6, 2010
I have an assignment that requires me to use a variable from an InputBox and place it on a label. That variable needs to be formatted using the P0 formatstring but results in the folowing error: Error2Option Strict On disallows implicit conversions from 'String' to 'System.IFormatProvider'.
Here's my
Option Explicit On
Option Strict On
Public Class MainForm
[Code].....
View 2 Replies
Oct 13, 2011
suppose I have variables named A1, A2, A3 ... B1, B2, B3 ... Z97, Z98, Z99. I have a certain operation I want to do using each one in turn. I CAN write a line of code for every single variable, but this will get pretty tedious. I'd prefer it if I can make a function that takes the letter and the number as arguments. So, if it gets the arguments "E" and "10" it will perform the operation on variable E10. What is the syntax for this? say a simple operation such as: result = E10 * 3 Is the syntax any different if I use constants instead of variables?
View 3 Replies
Dec 14, 2009
I am writing a schema.ini file to be created onthe fly and want to make file name a variable but cant seem to get the brackets as required by schema.ini file
Dim fn As String = Me.OpenFileDialog1.SafeFileName
writer.WriteLine([fn])
This writes
"myfilename" without brackets
View 2 Replies
Jan 27, 2009
i been creating a project for school that requires me to access a database for username and passwords
I have no problem doing this, but only if i "hard code" the location of the database.
[code]...
View 2 Replies
Mar 13, 2009
I am using memorystream to get and store images into sqlserver 2005 table image field. This process is working and I am able to display image in picture box. I need to be able to store PDF files into the same field and be able to display in a picture box.
View 2 Replies
Aug 26, 2009
Is it possible to pass a variable set in one form to another?
View 12 Replies
Jul 12, 2010
how can i dump a small html code in a variable? do i need to take array ?i need to write below line to a file "as is"
$a = "<style>"
$a = $a + "BODY{background-color:skyblue;}"
$a = $a + "TABLE{border-width: 1px;border-style: solid;border-color: black;border-collapse: collapse;}"
$a = $a + "TH{border-width: 1px;padding: 0px;border-style: solid;border-color: black;background-color:thistle}"
[code]....
how can i make VB turn off recognition of it's operative characters like $,<,>,= etc. which appears on above code but i need to dump it "as it is" in a file during runtime.
View 12 Replies
Jan 4, 2010
How to display the value of variable abc as tooltip text on picture1
View 1 Replies
Mar 20, 2009
, I was wondering if it was possible to reference a member of a structure by using a string variable. Here's an example of what i'm talking about:
[Code]....
Now, I know that you would usually reference the value in any of the members by using the following (String1 in this case)
[Code]....
View 4 Replies
May 19, 2009
Ive got a few strings stored inside a string array, and i need to copy each string element into the integer variable on each iteration.how i would convert it? tried
CInt(stringArr(lc))
but got errors?
View 6 Replies
Nov 18, 2010
How can I use a variable, Textbox1.Text in place of hard coding a name.[code]I want to use the variable held in the textbox rather then 12 Apple St.
View 3 Replies