Forms :: Display Variable In Msg Box?

Sep 20, 2010

I am struggling to find out how to use a msg box to display the value of a variable.

I've tried a number of permutations, and searched for hours to find a tip.

My code is currently:

Private Sub btnShowTotalCost_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnShowTotalCost.Click
If (radCorpTravel.Checked) Then

[Code].....

View 10 Replies


ADVERTISEMENT

Pass A Variable To Another Form Or Else Make The Variable Visible To Both Forms?

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

Forms :: Can Make Variable Actually Seen As A Variable?

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

Forms :: Wonky Variable Passing In Forms

Apr 22, 2010

This is my first Windows app to create since VB6. I've been in the world of ASP and ASP.NET for many years. However, now I have been asked to create a simple app that needs to be windows based.

[Code]...

View 4 Replies

VS 2005 - Gotchas With Docked Forms - Forms - Displayed Using Menu Items To Display Information To User

Nov 10, 2011

We have an application that has a main form with a map on it. Right now the paradigm is to have forms that are displayed using menu items to display information to the user. Most of these forms are modal forms, but a couple are non-modal forms that interact with the map. For some of the forms, it really would make for a better user experience if we could dock them in the main form of the app and allow the user to see both the form and the map. For instance. We could have a list of map features in a docked window, and select one of the items on the list and have the map zoom to that feature. Or do the reverse: let the users select a map item and have a docked window that shows details of the feature. Sounds great, but I wonder about what sort of gotchas we may encounter. In particular, what if we have two windows docked at the same time? Could we get tangled up in our event code?

View 2 Replies

Forms :: Display Video On 2 Forms?

Jul 5, 2010

I've been trying to create a simple program with vb 2010 to play video's (when you use multiple screens) on the main screen (with controls) and the full screen (with no controls) on the second screen.I get it to work that I can open the second screen and play a video, but the video is only played on the main screen and audio is played on the second screen.I want to play the video on the main screen as well as on the second screen at the same time.

[code]...

View 8 Replies

Display A Value Of A Variable, Type Into A Textbox?

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

Display A Variable In A Crystal Report?

Dec 28, 2008

in my report i have a field to display the persons name who generated the report. i have global variable and i take the persons name into that when he log in to the application. how can i display that in my report.

View 1 Replies

Display Image With Global Variable?

Oct 29, 2009

My program involves selecting up to 2 images and having them displayed on another page. I'm currently using global variables to pass the image name (for example apple) to the 'results' page with the following [code]...

View 2 Replies

Display The Contents Of A Variable In A Textbox

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

Display The Values Of A List Variable?

Feb 12, 2010

I've populated my list variable from my dataset. How do I display the values of the list variable in a message box? Dim strList As New List(Of String)

View 9 Replies

Using Variable To Display In Dropdown List?

Oct 14, 2010

How do I make options in a drop down list display variables? For example this is what I would like to have done:-in form1, a user types seven words into 7 text-boxes.-in form2, a user clicks on a drop-down list to select one of the words that was previously typed in to a txtbox in form1.

View 6 Replies

How To Use A Variable Between Forms

Oct 23, 2009

I have two windows forms in my application, and I want to have variables that work between them. How would I do this?

View 2 Replies

Use The Same Variable On Different Forms?

Oct 28, 2009

I want to calculate the score on one form and display the score on another form

View 7 Replies

Display A String (stored In A Variable) In Notepad?

Jul 12, 2009

I want to display a string (stored in a variable) in notepad(or any other default text editor depending upon the system). Saving to a text file is not necessary. I just want to open Notepad with an unsaved file containing the text. Please help

View 4 Replies

Display An Image In PictureBox Using String Variable?

Jul 4, 2009

I'm real new to VB and thought I'd try something "simple". I have a form with a button, two pictureboxes and textboxes. When the button is clicked, I am generating two random numbers (1-6) and then want to select a corresponding picure of a dice from the Resource folder (named Dice1-6.jpg) for each of the pictureboxes. The textboxes display the numeric version of the "dice" rolls.[code]...

View 5 Replies

Display Value Of Variable Abc As Tooltip Text On Picture1?

Jun 21, 2010

How to display the value of variable abc as tooltip text on picture1

View 1 Replies

Put Multiple Data In One Variable And Display It On Datagrid?

Apr 12, 2012

My problem is how can i insert multiple data? like ordering a producc, customer have many item.

View 14 Replies

CanNot Pass Variable Between Forms?

Sep 11, 2009

i have a dialogbox (dialog1) i will assign the input from textbox a variable to the from1 but i cant do that.the variable in form1 is Dim get_from_dbox As Long i try to assign to it from dialog1 like below it fails form1.get_from_dbox = Textbox1.Text but i can assign to textbox??like that which works well

form1.RichTextBox1.Text=Textbox1.Text I am new programing i know i am wrong .don't know where?

View 1 Replies

Passing Variable Between 2 Forms?

Jun 15, 2010

i have 2 forms -> form 1 and form 2

in form 1 -> 1 button
in form 2 -> 1 textbox and 1 button

when I click button in form 1, it will show the form 2..how can i pass the variable (data from textbox in form 2) into a variable in form 1 after clicking the button in form 2 ?

View 8 Replies

Sharing Variable Value Between Forms

Jul 31, 2009

When I declare a variable as public, shouldn't it be available in another form? I am trying to write a windows mobile prg with 12 static mileage points, form1 has the 12 buttons for start point, but when I call form2 with the destination points, my start variable value is not carried over. I intend to then assign a mileage based on the two points and write to file on mobile device. We support 12 schools, and I want my employees to track mileage easily.

Public Class main
Public start As String = "start"
Public dest As String = "dest"
Public miles As Decimal = 0
[Code] .....

View 4 Replies

Using A Variable Between Multiple Forms

Apr 20, 2009

I want to create a variable to be used by multiple forms, so I created a module that looks like this:[code]I expected the title of that specific form to be "(Name)'s Settings"But instead, it just says "'s Settings," as if the variable had never been assigned a value.

View 4 Replies

Variable Readable From All Forms?

Feb 7, 2010

Variable readable from all forms?

View 14 Replies

VS 2008 Variable Could Be Used Across All Forms?

Jun 26, 2010

In my previous knowledge of programming, i used to use global.variable = true how could i achieve this so the variable could be used across all forms?

View 1 Replies

Asp.net - Pass A Variable To User Control To Determine Display?

Nov 28, 2011

I've found various C# examples here, but I can't seem to get a VB version working.I want to be able to pass a simple variable into a User Control to determine whether it shows a certain section of data.It's basically a Customer Data form, and in some circumstances I need to show a line with the customers account number and sort code, and in some I don't, so my user control:

<controls:customerForm ID='customerForm' showBankDetails="no" runat='server' />

But I can't work out what to do with the showBankDetails variable in Code Behind to stop it from rendering that section, or simply hide it with a CSS snippet.How do I access that variable in the code behind using VB.NET?

View 1 Replies

Convert String To Raw Binary And Display Save It In Variable?

Sep 15, 2009

How do i convert string to raw binary and display save it in variable?

i can do it when i write the string to file :

Dim data As Byte() = Encoding.GetEncoding(862).GetBytes("שלום")
Using writer As New StreamWriter("C:lasttest.txt", False, Encoding.GetEncoding(862))

[Code].....

View 15 Replies

Numeric Up - Down Box - Display A Variable That The User Can Choose A Number For

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

VS 2005 Display The Value Of Variable As Tooltip Text On Picture?

Jan 4, 2010

How to display the value of variable abc as tooltip text on picture1

View 1 Replies

VS 2008 Calculate And Display Unknown Variable In Another TextBox

Jan 1, 2012

1.prompt a text string in 0 to 20 characters and then pass it as a input parameter to a Boolean-valued Function to check if the string is symmetric or not. Display the result.

2.The Einstein's equation E=mc2 relates three variables, E, m, and c. create four TextBoxes, two for the names of variables (E, m, c) and the other two for the values of corresponding variables. Based on the entered names and values, calculate and display the unknown variable in another TextBox.

View 4 Replies

IDE :: Display Report Grouping Variable Values In A Header Block?

May 29, 2011

I am using the VB ReportViewer and report designer. I am not using the report wizard as I have had no success creating the report I want that way (I'm new to all this).

I have created a view holding all the columns I want to report on. Half the columns have values to be displayed in the body of the report in tabular form. The other half contain values on which I wish to group. Although there are several columns in this set, the values do not change except when the group value changes. Eg

Group col1
Group col2
Group col3

[Code]....

I cannot discover how to achieve this using the tools provided with the report designer.

View 2 Replies







Copyrights 2005-15 www.BigResource.com, All rights reserved