Make A Variable That Holds Double Qoutes
Feb 10, 2011How do I define a variable which holds double quotes. when I try to define the variable like this [code]...
View 2 RepliesHow do I define a variable which holds double quotes. when I try to define the variable like this [code]...
View 2 RepliesHow would I be able to make a variable that holds the value of the directories that exist in the C:?
View 2 RepliesDim myObject As Something There I defined my variable myObject of type Something. But, as you can see, I am giving it no value yet. Sometime on runtime I want to check if myObject is holding a value or not. I tried this: If myObject <> Nothing Then But apparently I can't do such comparison.
View 3 RepliesI've been trying to add a database to my interface, and i can't seem to filter the data, i want to search based on last name and only display people with the that last name (the last name will be entered in a search form).I've tried writing SQL Queries but I can't seem to pass the variable that that holds the last name into the SQL Query, to filter the data.
View 3 RepliesHow can I make a program that holds a dll(Ex: when i press the extract button it extracts it to the specified path)?Well, If it is not worth it, it is not fun - you say programmers are boring but i say they are worth it.
View 5 Repliesi am trying to make a program that holds info in the settings... it holds it in an array so that you can add to it and take away from it... he is the code i have so far....
So far it is just the adding part but im still haveing some problems...
Public Class Form1
Public Function array_use1(ByVal array_string As String, ByVal number As Integer)
Dim num_holder As Integer = number
[Code].....
im trying to get this done so i can demonstrate how it works to some friends.
And also note that i dont want you to like write out a bunch of code then tell me its the right way...
I have a DGV.It has some columns.The columns are in the correct order e.g. 1,2,3,4 at design time.When I start debugging and then come back to VS, the order of the columns have changed and I have to put them back in the correct order everytime.After some testing I have realised it only occurs if
1) I make a change on the form that holds the DGV
2)Leave the form open in VS while I play the application ie. debug.
So I have a class made in c++ and need to convert it into vb.net but I got problem converting a certain part of a function. [Code] What type of variable is "double&", I know a double but what's with the "&"? It isn't " double &dec_deg" so it isn't an address (pointers etc.)? and how would i convert that to vb.net?
View 5 Repliesi have a big problem i have no idea what i am doing and need to create a program that can add customers and calculate and add the car qoutes to a text file. the information also needs to be retrieved, basically i want someone to finish the qoutes form for me complete with code its like connect the dots but with code :P can you fill in the "dots", create and edit btw for some reason it was called !! ERROR !! because it was a bad second version of the first version that got deleted so i used this one anyway XD[URL]..
View 5 RepliesWhen the clear button is clicked on my interface I need my variables that are set as doubles to clear...I tried setting them to zero but that messed up my equations and caused more problems. Is there some method in double that clears them out or sets it back to nothing.here's the coding
'button i need to clear my textboxs and variables
Private Sub btnClear_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnClear.Click
[code]....
For two days, already, I've been bugged by my problem. I'm trying to split a string of text i.e.( "Lakeside".) and store it like this:[code]But still, to no avail.I can split other metacharacters but not quote and double quote.
View 1 RepliesI'm trying to split a string of text i.e.( "Lakeside".) and store it like this:
myArray(0) = "
myArray(1) = L
myArray(2) = a
myArray(3) = k
[code]....
But still, to no avail.. I can split other metacharacters but not quote and double quote..
im having a simple computation problem here....
[Code]....
I've came across to quite an unusual problem with dividing integers with double variable. I've created For loop where to sum-integer interval -double is added. When sum reaches certain number text is displayed as showed below:
[Code]...
If i have a variable '12'
and a variable 'hello'
how can i double the '12' each time the variable is used?
What im trying to do is have a textbox which the user writes in a number, the number they enter then determines the amount of times a variable is written in a textbox.
so if the user were to put '3' into the textbox and click go, it would print hello12hello12hello12, how can i increase the number 12?
what i want it to do is look like this when the user presses go: hello12hello24hello36
Datatable contain some values like 0.0,10000.00,54678.94. I am getting that values using for loop and store it in a variable in double datatype. I want to add these nos and store it in a variable. Each time variable value changed.
for loop
Dim ds5 As dataset1.pro_dtsumDataTable = TA5.GetData(TextBox1.Text, users)
If (ds5.Rows.Count > 0) Then
Dim y As Double
y = Double.Parse(ds5(0)("sum(fld_primary)").ToString())
Dim y1 As Double
y1 = 0 + y
End If
Next
First time y1=0.0
Next time the value of y1 is not added to previous value.
I want the result y1=64679.34
I'm currently working on an assignment for university and I could really use a hand.I need to plot the equation y=0.2*sqrt(1-(0.25/x)^2)
View 5 RepliesI need to truncate to sertain amount of decimals for example : dim x as double;x= 6.98455 textbox1.text = x that mean textbox1.text= 6.98455 I need textbox1.text= 6.99
View 4 RepliesI want to see if a variable's type is string or double type. How to do it in vb.net immediate window?
View 1 RepliesI have a double value like 3768.595863. if i round this value then i will get 3768.596 but i want 3768.595.how can i get that?please reply.
View 7 RepliesI'm working on a vb.net application which imports from an Excel spreadsheet.
If rdr.HasRows Then
Do While rdr.Read()
If rdr.GetValue(0).Equals(System.DBNull.Value) Then
[Code]....
But when passing the value to the SQL insert I get: "Nullable object must have a value."
Solution:
Fixed by changing the datatype of the parameter in the sub I was calling and then using Variable.HasValue to do the conditional DBNull insert.
How to put data containing double-quotes in string variable? Aug 01, 2003 02:30 AM | LINK I need to store a string that contains words in double quotes. The complete string data is presented to the variable in double quotes, but the next double quotes within the data ends the string and the remaining text gives a syntax error. How can I place literal double-quotes in a string variable? For example:
[Code]...
How can I get access in a fast way to the single bytes that form a double variable?
In pseudo-code I want to do something like this:
Dim myDouble as Double
Dim myArray(7) as Byte
myArray = myDouble
'continue doing things with the single bytes
The code is meant for use in a I/O-handler. The double-variables have to be sent / received via TCP. For this purpose they shall be put into / assembled from I/O-buffers.
Whenever I store values to a double-type variable, and ask to display it on the screen, there seems to always be a discrepancy, for example, I entered 7.416 to a textbox and assigned it to a double. When i ask for it to be displayed, it used to be that the 7.416 is returned to me. But just a few days ago, when I debugged my program again, it returns numbers like 7.4159987.......[code]....
View 7 RepliesUsing Visual Basic 2008 Express. I need to pass a variable to another form. Or else make the variable visible to both forms.
View 4 RepliesI 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 RepliesHow can i make the double qoute(") as a string?
dim str as String = """
I have a simple form that works fine with a button click and the code generated by VB for Button1_Click event.But I want to make the user have to double click the button, So I just modified to: [code]This compiles but nothing happens when you double click.What am I not doing to get this to work?The problem is that if you click the button and the form is the focus, then if you hit the enter key it fires the event (when you didnt want to)
View 9 RepliesIs there any way to have an array that holds other arrays in VB? So you could call it like Array1(Array2(0))
View 2 RepliesI want to use explicit conversion (CType function in VB.NET) to convert the variable d from double type to integer type and store the result as 132.
Imports System.Console
Module Module1
Sub Main()
[CODE]...
This is my code. But Visual Basic tells me an error: Error1Type 'i' is not defined.C:\Users\mihaispr\Desktop\Conversie explicita\Conversie explicita\Module1.vb1922Conversie explicita