VB - In Actionscript - Code - Variable
May 13, 2009In actionscript
Code:
var a = "b"
var c = "d"
var bd = "ef"
trace(this[a+c])
the output will be "ef"
How can i do somthing like this in visual basic?
In actionscript
Code:
var a = "b"
var c = "d"
var bd = "ef"
trace(this[a+c])
the output will be "ef"
How can i do somthing like this in visual basic?
I am trying to edit variables in a Flash game that runs off of AS3.I have tried this method:
Call Game.SetVariable("Variable", "Value")
Obviously my ShockwaveFlash control is named "Game" However, this only works in AS2.
Flash ActionScript Not Working?
View 2 RepliesI am going to create a gaming platform primarily with flash,flex and was also looking to create a windows client that could communicate with my server using these protocols. Could someone point me in the right direction on any possible .net libraries available that could handle the communications between client and server?
View 2 RepliesI'm having trouble tracking down what is wrong and causing the above error. This only occurs when saving the design view in VS 2012. The code builds and runs fine.Full error text:Code generation for property 'CompanyValue' failed. Error was: 'Property accessor 'CompanyValue' on object 'ContactViewUC1' threw the following exception: 'Object variable or With block variable not set."
CompanyValue definition in ContactViewUC:
Public Property CompanyValue
Get
[code].....
Private Sub Button4_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button4.Click
conn.Open()
cmd.Connection = conn
cmd.CommandText = "Select RoomName from Room_Details"
[code]....
I try this code but it throws the following error:
Object variable or with block variable not set
Can a person Dimension a variable name in code?
Suppose I know the first letter is a 'p'. How can I dimension P1 through P100 in code.
I have the following code that I want to return to a variable "t" in javascript:
Code behind:
Public Shared Function GetSomeText() As String
Dim result = "This is from code behind"
Return result
[Code].....
So, how can I make variable "t" get the "result" from Function GetSomeText from code-behind?
I can't find a way to pass a simple variable from my code behind file to the .aspx page.
In code behind I have:
Dim test As String = "test"
and in my aspx page I try: <%=test %>
that gives me the following error: Error 2 'test' is not declared. It may be inaccessible due to its protection level
What I am trying to do, is perform some edit checks on required fields in my page. When the "Submit" button is clicked, I wish to check execute a javascript function that does these checks.
The way I'm envisioning it is to declare a server-side variable in my VB.Net code-behind, set this value in the javascript CheckEdits() function and then back in the code-behind in the btnSubmit_Click() Event, check this variable.
How I can send a variable from code-behaind to .aspx file..[code]I'm remarking last rows because I don't want .pdf file to be opened outside the web page.
View 1 RepliesI'm writing a program that will be based off of TCP communications with a server. The user would click a button, which would send data through TCP Client to the TCP Listener on another computer. The TCP Listener sends back a response, and the TCP client is receiving it. Right now I have the response from the server showing up in the immediate window, which is good. I want the response from the server to determine what action the client program will take next.
How do I use the server's response variable in a different class? I need to use the response from the server in an if-then-else statement to say "if the server response is 001, then execute this code. else, if the response is 002, then execute this code."
please help i am trying to write a code that can do sums on a variable in small basic and this is what i can come up with so now:If (age=age * "2") Then age is the variable and i am trying to make it the variable x2.eg if the value of "age "(the variable ) is two then i am trying to make it 2x2=4 please tell me if you need aditional information.thx.
View 13 Replieswrite a code that can do sums on a variable
View 4 RepliesI'm making a application which can send e-mails through ms-outlook 2000.I wan't to send an html e-mail message so i added the html-code beneath for the html.body text.
' Set some common properties.
oAppt.Subject = Onderwerp
'oAppt.BodyFormat = OlBodyFormat.olFormatHTML <---t,
[code].....
I have the following code
Protected Sub btnAdd_Click(ByVal sender As Object, ByVal e As System.EventArgs) Handles btnAdd.Click
Dim counter As Integer = 0
Dim t As DataTable = DirectCast(Session("MyDataTable"), DataTable)
Dim row1 As DataRow = t.NewRow()
If (isUnique(t) And counter < 30) Then
row1("ID") = counter + 1
[Code]...
Suppose I have 3 vars:
dim a as integer = 5
dim b as integer = 1
dim c as integer = 10
What is the most efficient method of determining which variable has the largest value while using the least amount of code? I know this can be done with if statements, but there must be a more elegant way to do it.
I would like to use a loop to manipulate a set of objects on the form. This is like using a control array but not,... Here is some code to consider:
[Code]....
Would anyone happen to know how to pass a variable to a hyperlink? This is my code howver it gives me an error when I try to Pass the variable(irow("BarUrl")) as the hyperlink address link[code]...
View 2 RepliesI have a list with several fields that is created from dataset from a linqtosql query. At run-time, the user gets to specify what field he/she wants to display from the list. In other languages, I can dynamically do this like:
valueIwant=mylist(i).[fieldnameImInterestedIn]
Where 'fieldnameImInterstedIn is itself a variable. How do I do this in VB.Net?
non-working actual code follows:
Dim patientdata = (From patientvar In pdfdatacontext.tbPatients Where patientvar.PatientID = patientid)
Dim patientlist = patientdata.ToList()
fieldvalue=patientlist(0).(reportrow.userselectedfieldname)
Its about updating, it check a remote server for version. For example i have version 1.0.0 so the updater says that there is a update (1.0.5)
[Code]...
What i am tring to do is execute certain code based on a variable held in a module someting like compiler directives, here's an example for lack of an explanation.[code]...
View 2 RepliesAs you can see from the code below there is a lot of repeated code. I want to move that code outside the if statement as it's performed for each if, but the Dim employees variable I'm declaring is causing my issues. I don't know how to declare the variable outside the if statement as it's a linq-to-sql query, so I can later define it within the if statement. I can't access employees outside the if statement, so I can't just put the repeating code outside the if statement.
Private Sub btnFindEmployee_Click(sender As System.Object, e As System.EventArgs) Handles btnFindEmployee.Click
If chkSrcEmpID.Checked = True Then
[CODE]...
I am converting a VB6 program to VB express and am having a couple of problems. One of them is a problem with the variable "strEncTemp". I have the warning "Variable strEncTemp is used before it has been assigned a value", and I can't assign a value to this variable without creating issues. It also seems that a null value is being returned and the code produced by this routine is corrupt. This seems to be the last issue I have in converting the code. I tried setting it to 0 but it then shuts down the program with an error. This is the portion of code that has the warning and produces a null value. [Code]
View 4 Replieshow 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.
I'm using some VB.Net code to manipulate files on my system - the idea is that the code checks if a file exists, and based on a value read from a text file elsewhere the system decides what to do... For this I'm using a 'select... case' statement to decide on the action to take. However, when assigning a value to the variable, the code doesn't even find the option to go for... Here's the VB code:
[Code]...
This is my Repeater
<asp:Repeater ID="blogRepeater" runat="server">
<ItemTemplate>
<br />[code].....
Now I have a variable called My_Variable. How can I place that variable My_Variable inside my Repeater above?
For example, I have string variable (MyString) as below.MyString = "First word || second order || third example || fourth item || fifth stuff"
There are separator "||" at MyString variable. I want MyString variable is spited based on separator "||"and stored it into new array variable.
Could you advise me the most efficient code to do this job in VB?
I have an application that contains both test code and production code. The test code points to the test files on the local machine while production is located on the server. I comment out the production code when testing. To save some time I figured I would create a Global Variable integer called pTest and encase the test and production code in a Case statement so that if I set pTest=1 then the test code will run and if pTest=0 then production code will run.
[code]...
I have this code to set array values and store them in a variable,
Dim productName As String()
Dim productPrice As String()
Dim productCategory As String()
[CODE]...
How do you get the variable values to output like this?
<input type="text" value="Chang Beverages $19.00" id="Chang" /><br />
<input type="text" value="Ipoh Coffee Beverages $46.00" id="Ipoh Coffee" /><br />
<input type="text" value="Gula Malacca Condiments $19.45" id="Gula Malacca" /><br />