Creating A Variable For Bunch Of Stuff?

Mar 1, 2012

I want to create a variable that will hold bunch of stuff.

I will be using over 50 IF statements (it's a complicated number game) and the IF statements will be something like this.

If something = 1 then
' do this
' then do that

[Code]....

View 12 Replies


ADVERTISEMENT

Creating A Bunch Of Child Forms

Mar 19, 2012

Is there a quick way of creating child forms? I am going to have 20+ and all the code I can find is this below:[code]Can I not make a subroutine and send the form into it to be made a child form? Something like this pseudo code:Is there a fast way like this available?[code]

View 3 Replies

Creating A Bunch Of Child Forms?

Mar 19, 2012

Is there a quick way of creating child forms? I am going to have 20+ and all the code I can find is this below:

Dim MDIChildForm As New form2()
MDIChildForm.MdiParent = Me
MDIChildForm.Show()

Can I not make a subroutine and send the form into it to be made a child form? Something like this pseudo

Private Sub setChildForms()
createChildForm(form2)
createChildForm(form3)

[code]....

View 15 Replies

Make Multiple Enemies Without Creating A Bunch Of Pictureboxe?

Nov 13, 2009

I have got one picture box to appear from a random point at the top of the form and move down the screen.

But how do I create an infinite amount of these enemies that will travel down the form?

The only way I know how is to just create a bunch of picture boxes and hide them all, and then each time a timer clicks one of them is visible, and starts traveling down the screen. There must be an easier way.

View 1 Replies

VS 2010 - Creating StartMenu And Adding Stuff

Jun 17, 2011

I am looking to create a startmenu like thing in my game, I have my 'desktop' all sorted out but struggling to create a startmenu that I can easily add stuff to via code. For instance when the form starts it will check a directory for DLLS, query each dll which will return a name. I then need to populate this menu with the 'installed' applications my game has. I have a start equivalent button then I just need to the actual menu.

View 1 Replies

Creating A Program For My Workplace Which Stores Hours Worked, Calculates Pay And All That Stuff?

Jun 21, 2010

I'm creating a program for my workplace which stores hours worked, calculates pay and all that stuff.Problem being, the database will be accessed through the network and i want to be able to select the database from an openfile dialog on first use to locate the database. On every program start up it then would have the database location stored within the program itself.

View 1 Replies

Creating A System Variable?

Jun 10, 2011

WINDOWS PLATFORM: WINDOWS 7APPLICATION LANGUAGE: VISUAL BASIC 2010 EXPRESSWINDOWS FORMS DESIGN.CONTROLS: CHECKBOXES, RADIO BUTTONSDear VB Programmers,The function of the checkbox is to: check whether the application will display a particular page @ start up or not.

View 2 Replies

Creating An Array With A Variable Value?

Mar 22, 2010

i want to declare an array with a name that is the value of a variable. I need to do this because i want to create arrays from a text file that i'm reading.Basically, if someone could make this work then i should be able to change it to fit my use.

Dim var1 As String = howdy

Dim var1() as Integer

In this case i'd like to be declaring an array with the name 'howdy' that stores integers. In reality i'm looping a bunch of read names and would like to create an array for each name i read- but i'm quite capable of sorting the rest.

View 6 Replies

Creating A Graph Using Variable Values?

Feb 23, 2011

I have created an array of 6 numbers which are randomly generated, I can create a graph using six randomly generated numbers, however what I want is to use the random values that are placed in the array to create my graph, I have enclosed the code that I have:

Private Sub btnGraph_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnGraph.Click
txtAns.Text = ""

[Code]......

View 3 Replies

Creating A Unique Filenamme With A Variable

Dec 18, 2011

is there any way of creating a file in visual basic using a variable as the file name? I have tried using the following but keep getting an error "The given path's format is not supported." ??? I am trying to create a log file of machine use every shift (8 hours) and just want to use the same name for the file with the date and time appended to the end of the file name. the section of code giving me the error is below.

[Code]....

View 6 Replies

Creating Variable - Expression Does Not Produce Value

May 1, 2011

Why I cannot get a variable to come in. I keep on getting the error "Expression does not produce a value" for one of my Dims.

Imports System.IO
Public Class Main
Dim image_1 As Integer = Openimg1.FileName
'The line below is the one causing my problem
Dim image_2 As Integer = My.Computer.FileSystem.RenameFile(Openimg1.FileName, "_hid" + System.IO.Path.GetExtension(Openimg1.FileName))
[Code] .....

So basically, how can I create a variable from something that has yet to be created?

View 5 Replies

Creating Variable Names From Other Variables?

May 20, 2010

how do I DIM a variable's name using previously declared string varialbes? I have been using PERL for processing data stored in text files but I now have a business need to use VB2008. I would like to do something like this:

dim name1 as string = "ABCD"
dim name2 as string = "123"

'here is the part that I don't know how to do - create a 3rd variable name concatenated from name1 and name2:

dim string.concat({name1,name2}), or maybe use a counter in a line like 'dim namex as string' with x being a counter value.

Essentially I want to dim variables using text strings extracted from a file. In PERL I have declared literals and arrays, such as 'my @$name1', which creates an array named with the contents of $name1. In VB2008 I am not sure how to make this work with the DIM statement.

View 5 Replies

Error Creating Global Variable?

Sep 19, 2009

I have got a bit of code which creates an error when you start debugging. the code is:

Dim Gravitee As Decimal = TrackBar1.Value / 100

This code is a declaration (outside of a sub) so that it can be used in any subs I choose. I don't know why this causes an error?

View 3 Replies

Creating A Session Specific Global Variable?

May 12, 2012

Is it possible to create a variable that is global for each session in ASP.NET? Usually I do this with Session:

Session("my_variable") = 10
But this necessitates casting it every time I want to use it like so:
Dim my_variable as String = CInt(Session("my_variable"))

[code]......

View 2 Replies

Creating New Instances Of Form1 With Variable Properties

May 13, 2009

I'm trying to elaberate on some basic examples of .Net programming in using VB. The basic example of creating a new instance of Form1 is:
Dim x as New Form1
x.Show
I've added some OptionButtons to set the StartPosition of the Next Instance of Form1 as well as some Labels that display the Top, Left, Width and Height properties when the new instance of Form1 is Shown.

This is the code I'm using.
Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click
Dim x As New Form1
If Me.RadioButton1.Checked = True Then
x.Top = 0
x.Left = 0
[Code] ......

View 1 Replies

Multidimensional Array - Creating A Variable For A Grid In .net?

Sep 6, 2011

I need to store elements in a multidimensional array. Specifically, I need to save "tiles" to a grid (e.g.Grass at x:2 y:5, Dirt at x:3 y:5, etc.). Using a multidimensional feels very hacked up and is very glitchy (having to resize my arrays and having to create new ones were they are non-existant). Is there some kind of element made for this? Something I can say obj.getPos(2,5) and get my Grass Element and use obj.setPos(DirtObj, 3, 5) to set it to my Dirt Element?

I'm just wondering if there is something easier to use than multidimensional arrays in vb.net, that is all.

View 1 Replies

VS 2008 Creating A Sql Query With A String Variable And Executing It In VB

Feb 15, 2011

Ok I'm creating a sql query with a string variable and executing it in vb. The string would look something like: Insert Into Table (vara,varb,varc) Values ('vara','varb','varc') This works fine.

[Code]...

View 2 Replies

Calander Click Event, Auto Creating A My.setting Variable

May 24, 2011

Im trying to create a diary system that on click event of the built in calander in vb.net opens the current diary entry for that day. i am using the my.settings variables to store the entrys the problems i am having is how to create a my.settings variable automaticly if one dosnt exist for that date (will be using the date of the clicked day as the name e.g. 10/5/2011)

So basicly i want the user to be able to click through the dates on the calander and the entry be displayed in a text box next to it, blank if nothing is there and the user can edit/save them after just need the code to auto create and i guess how to search the my.settings im quite new to using this storage, i normally use text files. the pic shows the program so far, it has one diary entry but it has no relation to the date. the label is linked to the calander also , displaying the selected date.

View 2 Replies

Calander Click Event, Auto-Creating A .setting Variable?

Aug 11, 2011

im trying to create a diary system that on click event of the built in calander in vb.net opens the current diary entry for that day.i am using the my.settings variables to store the entrysthe problems i am having is how to create a my.settings variable automaticly if one dosnt exist for that date (will be using the date of the clicked day as the name e.g. 10/5/2011)so basicly i want the user to be able to click through the dates on the calander and the entry be displayed in a text box next to it, blank if nothing is there and the user can edit/save them afterjust need the code to auto create and i guess how to search the my.settingsim quite new to using this storage, i normally use text files.the pic shows the program so far, it has one diary entry but it has no relation to the date.

View 2 Replies

Calling A Bunch Of Different Propertys?

Feb 3, 2012

im calling a bunch of different propertys named K0 to K6, im using a string to check which one i need to access, this is damn messy, how can i do it in a more clean way? Im convinced that strings are not the way to go so please give me a comment to get in the right direction.

Dim tempAntDec As Integer
Select Case wd.MClass
Case "K0" [code]....

I would like to call this in some other way like, this.. or dont know but i feel like there is a better way to handle this?

tempAntDec = wd.allMeasUnc.KValue.antDec

View 1 Replies

Populate A Bunch Of Comboboxes?

Aug 11, 2009

I have the following class. Basically, i want to populate a bunch of comboboxes. So i want to return an Id and description column almost all the time.

Public Class combodata
Private _id As Long
Private _description As String

[Code]....

how can I return the items as an array. Is converting to an array the best way? I will need to populate a combobox with the returned result

View 5 Replies

.net - Markup Page With A Bunch Of Checkboxes?

Jun 18, 2012

In my classic asp app, I have a markup page with a bunch of checkboxes. The checkbox control ID is bscv.Once a user checks a box and clicks submit, the value is processed on the next page called next.asp.Based on the value of the checked box, I display the correct dropdown.I use the following code on next.asp to display the correct dropdown.

If bsvc = "master" Then
' only master was checked
' "If the user checks only master checkbox, ...txtmaster with 2 options... is displayed."
%>
<select id="txtmaster" name="txtmaster">
<option value="">-Select a service-</option>
<option value="1">1</option>

[Code]...

View 2 Replies

Add Xml A Node With A Bunch Of Children Nodes In .Net?

Nov 3, 2011

I need to modify a xml file (actually a .rdlc report file) and add some nodes which have a lot of children nodes (and those children nodes again have children nodes). Actually they are almost the same strucutre, like this one:

<TablixRow>
<Height>0.23622in</Height>
<TablixCells>

[Code].....

and it will add my specified NS. (like I said, XElement.Parse(string) won't add it) So now I can construct the correct node. For my second problem I still can't figure out: I can't navigate to the target node by using the element name since it won't search for correct NS.

View 1 Replies

Dataset With A Bunch Of Product Info?

Aug 12, 2009

I have a dataset with a bunch of product info. What I really need to do is send each product individually through a file stream using serialization/deserialization into a web service. I tried for testing purposes to write the dataset to a file, but I don't know how to write each product to a different file.

Dim oProduct As webservice.Product = New webservice.Product()
For Each DataRow As DataRow In DataSet11.Yahoo.Rows
oProduct.MfrName = DataRow("manufacturer").ToString

[code].....

View 1 Replies

How To Use C# To Automate Bunch Of Print Jobs

Oct 21, 2011

I am developing an automation tool which is reading the file path from an Excel workbook and after launching the application I am firing print job using SendKeys.SendWait() for Ctrl+P and Enter key. Now the Problem is, I am facing synchronization issue for launching the application and handling the print procedure keys.Sometimes Applications are launching little late(like Excel and MsWord files), so at that time I am not able to find till how long I have to wait for a successful launch of the Application. Anybody have any Idea how to check this waiting time till how long I should wait to fire CTRL+P and then after getting PrintDialog ENTER button ?

View 2 Replies

Listview With A Bunch Of Items Which All Use Checkboxes

Dec 8, 2011

I've got a listview with a bunch of items which all use checkboxes. Each time an item is checked or unchecked I want to save the selection. Whilst saving/loading the selection is not an issue, I can't seem to find an event which triggers AFTER the checked item has been changed. For example, the ItemChecked event will fire when an item has been checked or unchecked but the event will give it's checked status BEFORE it was changed. I've had to resort to saving the list when it loses focus but this isn't ideal.

View 11 Replies

Open A Txt File With A Bunch Of Names?

Apr 21, 2010

ok im trying to open a txt file with a bunch of names and the names will be show in a list view. Like this

Simon
Jhon
Martin

This is the code I have

Public Sub SaveLink()
Dim sr As StreamReader
'streamreader is used to read text

[Code]....

View 5 Replies

Read Bunch Of Items From Registry?

Oct 4, 2011

If I need to read a bunch of items from the Registry, the following gets tiring fast:

Dim item1, item2 As String
item1 = My.Computer.Registry.GetValue(KeyValue, "item1", Nothing)
item2 = My.Computer.Registry.GetValue(KeyValue, "item2", Nothing)
Is there a smarter, more compact way to do this?

I was thinking of using a dictionary object, but it doesn't work as planned:

Dim dict As New Dictionary(Of String, String)

dict.Add("item1", Nothing)
dict.Add("item2", Nothing)

[Code]...

View 2 Replies

Send A Bunch Of Data To Flash?

May 13, 2010

vb.net send a bunch of data to flash. i.e i want all data in a listview will be send in list view of flash and vice versa all items in flash will be send in listview of vb.net ?

View 1 Replies

Sorting A Bunch Of Controls In A FlowLayoutPanel?

Oct 22, 2010

I have a flowlayoutpanel, and a bunch of controls inside it.

I would like to actually SORT the controls, depending on some values.

For Example:

The FlowLayoutPanel has 4 Controls:

Each control has: Name (string), Maker (string) and Rated (integer) values.

So what I thought of was:

Dim
s As
New
SortedList

[Code]....

View 6 Replies







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