Make A Textbox Choose What To Name A Variable?
Oct 19, 2010
How do I name a variable depending on what is in the textbox?
Like would it look like:
Dim (textbox.text) as string
etc.
The reason I want to do this is because the user is gonna click a button to create a task. When the button is pushed, a label is created by the code I already have, the problem is, I want them to be able to click the button more then once and new labels will appear below the one that just was there. By being able to name a variable by what is in the textbox, I will be able to do so many things.
View 6 Replies
ADVERTISEMENT
Nov 4, 2010
I want to set a variable in a class. But I want to dynamically choose which variable to set.
[Code]...
View 1 Replies
Jul 24, 2011
I am using VB .net 2010 express from microsoft. I have a numeric up down box to display a variable that the user can choose a number for. Then I have a text box that I want to display a result of the updown box * 1.5... So far I have the following... What do I need or need to change? I have the integer variables initialized or whatever with Dim statements as follows -
'speed variables
Dim CruisingSpeed As Integer 'cruise speed - updown box
Dim FlankingSpeed As Integer 'Flanking speed - will be cruise * 1.5
[CODE]..................
It says that it cannot convert the up down box into an integer... I need it as an integer to calculate the other number...
Complete code just in case the above was not enough info...
'Imports Excel
'Imports System.IO
Public Class Form1
[CODE].............................
I have some stuff commented out because a variety of issues - some I will end up using and some I will end up taking out before it is done...
View 5 Replies
Feb 25, 2012
I have a Windows Form in a VB.NET program with a property of "TournID". The ID will be passed in when the form is created by a button pressed. Here is the property stub:
[Code]...
View 1 Replies
Feb 15, 2012
I have DateTimePicker where user can choose a date and make entry. I then record this entry into the database. My application date shows 08-02-2012 (i.e., 08 february 2012 in DTPicker value), when I select this and insert it to my database, the MS Access takes this as August, 2 2012, and records it as the same.
I could fix this by using this code:
Dim mydate As DateTime
mydate = Me.dtpicker10.Value.ToShortDateString
Dim output1 As String = Format(mydate, "MM-dd-yyy")
and pass sql insert query using
insert into table (mydate) VALUES (#" & output1 & "#)
Instead of getting the value directly from the dtpicker. This fix the issues, but when I tried to get the date out of the database to filter it between entry made in certain date, I sometimes have problem. How do I generalize this for all type of client computers where the date and time settings can be any form. What will be the best and more flawless ways of approach to target all types of clients? Am I on the right track?
View 4 Replies
May 10, 2010
I wanna make a program wich starts a .exe I know the code for starting the program : (EXAMPLE)
Process.Start("C:UsersPublicGamesWorld of Warcraftwow.exe")But the program only opens the file when its placed there, is there a way to start it else way?Maby make them choose the file derection ?I know u can make a text box so they have to type it them selve, but can u make it so they have to go through a menu with it ?
View 4 Replies
Feb 22, 2011
Ok so I can't figure out how to make it so that on my application users cannot just click "submit" without choosing a radio/option button & filling out the username + password field ?? Using VB 08 BTW.
View 6 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
May 18, 2010
i just got it in the internet and edited it..
Dim xlApp As Microsoft.Office.Interop.Excel.Application
Dim xlWorkBook As Microsoft.Office.Interop.Excel.Workbook
Dim xlWorkSheet As Microsoft.Office.Interop.Excel.Worksheet[code]....
what I want to do is have a column name in the excel worksheet which is not included in the code..i'm getting the data from a datagridview but it only shows the data in the excel.. i also want the field name of these data to be shown..another, as you can see in the code given, the directory is fixed.. what do i have to do to choose a directory to save my work? and also, i have many gridviews and whenever i'm exporting my work to the excel worksheet, it always overwrites my work.. i want to choose the directory to save, also show the field names, and make a separate worksheet for every gridview..
View 3 Replies
Dec 20, 2011
I am currently working on a family project which is based on "Who Wants To Be A Millionaire?" show. There is a huge diffrence between the show and my project. My project is a christmas edition and the goal is not to get money or something, since I will not add it... Erhmm... Let me get to the point. I have already designed a layout and scripted some things. I have about thirty questions but I do not want them to always spawn in the same array, if you know what I mean. I want the program to randomly choose one of those thirty questions and NEVER choose the same question in the same program run. By the way, there are four options on my project: A, B, C and D. I have got everything, I just need a code.
View 3 Replies
Feb 17, 2011
I have a VBA form in Microstation I am using to try and help automate a task. The only problem I am having is I am reading a textbox (Filebox.Text) and setting it as the variable (FN). It works, because I used Msg.Box (FN) to test it. However, in two of the lines of code, I am trying to use (FN) to pass the typed in filename to the command to run in Microstation. Unfortunently, it gets passed on as (FN).dgn instead of the actual filenale typed into the textbox. Is there a way I can make the variable actually seen as a variable? Code on Pastebin: url....Also, not sure if this is the right section, 100% new to VBA, coming from a world Bashed together.
View 3 Replies
Nov 7, 2010
QuoteImports System.Data.OleDb
Public Class admin
Inherits System.Windows.Forms.Form
Dim mypath = Application.StartupPath & "\db1.accdb"
Dim connection As New OleDbConnection("Provider=Microsoft.ACE.OLEDB.12.0;Data Source=d:\db1.accdb;Persist Security Info=False;")
[Code]...
View 5 Replies
Jun 29, 2009
I want to make a function in VB 2008 with which u can make a textbox change some letters within the textbox when u click a button. So example: Textbox1 has got in it: url...Then when I click button 1, it has to change ....
View 8 Replies
Sep 9, 2010
How to make validations for textbox allow numbers only or textbox allow letters only?
View 14 Replies
Jun 13, 2010
I have an app that automates a Google query but I have to enter my search terms in the code each time before I build the app and that's crazy.....how can I fit a variable in here from a textbox?
I pasted the code here....but...the variable is needed at the line of code:
txt.SetAttribute("value", "Sample Information")
Sample Information is my search query but I want to be able to use a text box to input my own variable at run time.
Code:
Public Class Form1
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Automate = True
[Code] .....
View 2 Replies
May 1, 2011
Is it possible to use a variable for text box names?I have 25 student name, and grade boxes that need to appear and disappear depending on how large the student number was given to start with.So far i have had to use this if\then statement 25 times.
If txtStudentNum.Text = "" Then
txtStudent1.Hide()
txtGrade1.Hide()
ElseIf txtStudentNum.Text > 0 Then
[code].....
how would one go about cleaning up all of those if\then statements to clean up the clutter of the code?
View 3 Replies
Feb 2, 2009
Can someone give me a simple example on how can I store/appear in a variable/or a textbox a value that i retrieved from a database. The sql query is something like "Select Comment from Params where id =1".
View 5 Replies
May 20, 2011
have the following code and would like to know how I can substitute the filename (i.e.,test.rtf) with the name of a Textbox. For example, I have several Textboxes that I want to add and associate individual comments to. That is, once the comment is created I will SaveFile with the TextBox name. Each of these Textboxes will have their own comment
Private Sub btnOpenFile_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOpenFile.Click
[code]......
View 6 Replies
Dec 23, 2010
I have a variable and i need to seperate it into 2 variables so in code form its like this[code]...
View 1 Replies
Jun 10, 2009
I posted this before and got a few answers that haven't worked for me so far. Therefore I'm going to post part of my code so you can see what I'm talking about. The highlighted part is what I pulled from another post and it's not working for me right now. I'm using visual studio 2008 and the program was written in Basic. I pulled most of this program from the net and started tweaking it to my needs, If you're familiar with arabic you will understand the letters, if not, just use A and B for the variables.
[Code]...
View 2 Replies
Feb 11, 2012
I know that
Public Incognito As Boolean
is a variable called "Incognito" that is class-wide that is a boolean.My question is that is there a form-wide variable form that can like communicate with different forms. So if a variable in form1 is "True" than, how can you make a variable in form2 turns to "True" too?
View 1 Replies
Aug 3, 2009
What I am trying to do is to grab the value of a variable placed in a AxShockwaveFlashObject into a textbox placed in a VB .net form.I tried this code, but it requied an End Of Statement:
AxShockwaveFlashObject.GetVariable("_root.something") As String = TextBox1.Text
View 11 Replies
May 26, 2010
i want to display a value of a variable, type into a textbox.
for example
num=1234
varx=763
i=23
[Code].....
View 14 Replies
Oct 3, 2009
Does variable total have to be converted back to string ie..Cstr(total) in order for the result of total to be displayed in the text box txtdisplay? I notice It will work if I convert it to string or If I leave total a double it will still display the result as a double. what is the correct programming practice? [code]
View 1 Replies
Dec 21, 2009
Well, my problems is follow. I use a textbox where the user can enter a text but which I would like to prefill out with a variable (later , with more experience, want to ask the AD for the username and put it in the box).
That means, when the user runs the app, automatically is the username written in the textbox without pushing a button but the user has the opportunity to change it (For example doesnt want the second surname).
View 1 Replies
Mar 19, 2009
I'm traying to write some query but I don't know much about DataBase. I have a variable that store the value entered on a textbox and I want to look value in the DataBase and then show the record on the DataGrid. I'm traying to build some query but I think I'm way off.
Here is my query:
SELECT Name, Record, Plan, [Numero de contrato]
FROM [Record de Pacientes]
WHERE (Name LIKE '%Variable%')
View 9 Replies
Mar 2, 2010
Error1Value of type 'String' cannot be converted to 'System.Windows.Forms.TextBox'With this code. Variables are in Module1.vb and this code resides in form1.vb
Private Sub btnSubmit_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnSubmit.Click
MyFile = Me.txFileName.Text
[code].....
View 4 Replies
Jun 15, 2012
Using WPF, and VB.net, I want to update a textbox in a textblock with the current date and time. I use a timer, and it seems to be firing, and setting an object property to "Now".And I am using iNotifyPropertyChanged.All I get is an empty textbox with no data in it. Can you help? Maybe my context is off? [code]
View 4 Replies
Mar 15, 2009
how can i add a certain part of a textbox to a variabele
eg.
[Code]...
I am making a web browser whit a google search. The intention is that the search term (single words) is split and that each word is added to another variable
View 7 Replies
Feb 9, 2009
I want to make a Variable textfield, so i can use it in a while loop. I know that in FLASH it's like[code]...
View 10 Replies