i have an appl. in vb2008 with a datagridview. when i import my data from excel (colum with text and numbers)it only imports the numbers or the text , not the both.
i have an appl. in vb2008 with a datagridview.when i import my data from excel (colum with text and numbers)it only imports the numbers or the text , not the both. [code]
I am trying to wirte a function for a Phone number class called "import phone number". It should take any string with 10 digits in it somewhere (and allow for an extension), and import them into it's own properties: AreaCode, Prefix, Suffix, and Extension (aaa-ppp-ssss-xxxx...).
I check the input with a regex to make sure it's valid, now i want to tokenize those pieces into their respective properties. What I have looks like this (incomplete):
Public Sub ImportPhoneNumber(ByVal anyNumber As String) 'phone number is 10-digits long, e.g.: 012-345-6789 Dim reg_exp_10 As New Regex("^((D*)d(D*)){9}((D*)d){1}(((x|ext){1}(d)+)?|D*)$", RegexOptions.IgnoreCase)
I am making a program, where the user enters 6 numbers in 6 different text boxes, and it displays the larger of those 6 numbers. But I also want to make it where if the user enters a string value (like S for instance) in the text boxes, it gives an message and says "please enter the numbers again" and the user gets to enter the 6 numbers again. But when I do try to do that, it gives an error message saying conversion from "w/e the user entered" to Double is not valid. If the user just enters the numbers, it works fine. However, I am trying to make it if the user does enter non numeric value, it gives a message window and the user can reenter the numbers again.
Here is my code Example
CODE:
This is where I am trying to use IsNumeric to show a message if a user does not enter a string so the user can renter the numbers again, but when the user does enter a string value (say in textbox 1) it gives me an error message saying conversion from "S" to 'double' is not valid.
CODE:
Then right here this is where I have my series of ifs statements, this part works fine, it displays the largest numbers of the 6 textboxes every time. Error free.
CODE:
And do this with variable number 2, 3, 4, 5.
I know there are easier ways to do these with arrays and stuff. But I am not there yet. I am still learning about ifs and stuff.
I am trying to convert some old VB code (EXAMPLE 1) to VB.Net that opens up a text file and loads a text box line by line. I am really looking to replace the existing syntax. Note that I know I can import the whole file using EXAMPLE 2.[code]...
I'm in the final stages of finishing a program I've been working on for nearly a year now, and this is basically my final hurdle. The Save dialogue is working beautifully, with 'flags' in order to switch it over from the regular input into text boxes to the Listbox input protocol.
i have an issue with database connection or import of file. i use following settings / methods so far unsucessful. the content in the table calendar is just not being added. how can i find out why this wont work?
I have a table into my database(Paydb) call additionPension. There is a textfile(AdditionPension.txt)on my c: drive. I want to import this text file into the additionpension table in my database.
I have to read a file like this below , when my program reads @name what comes after it, goes to a textbox that is in my form.After the program reads @atributes, it goes in to another textbox and finally, when it reads the period it puts in another textbox.
We had a wierd problem at work.SOmeone at finance tried to import a text file into their system. It complained about the textfile was in unicode format. The file contains scandinavian . Apparently the ERP system that exported the file can only handle unicode.So one of our junior programmers wrote a batch program that line by line converted the unicode file to ascii (you can't choose encoding.ANSI because ANSI is byte array)
The files are rather big, about 3 GB in size.Apparently the system liked ASCII files, but sadly after this processing the and was gone and replaced with ?So, he wrote a new batch program, this time replacing m?nad with m�nad using String.Replace The file was opened using Encoding.Default and saved using Encoding.Ascii.Now the files HAVE AND can be imported. After he explained this to me, I just went . I wish I had some nifty "you should have done this... bla bla its much easier" but I am lost here in the jungle of code pages and encodings. Can someone that has their head screwed on straight enlight us *both* about why we had this problem and how it could be handled without writing the second batch program?
Basically unicode->non unicode (ascii) with the intact. I also noticed that if I use streamreader to read an ansi file with the internal strings will show ? instead.
I am once again working on a project and have hit an absolute wall! Here is what I'm trying to do:
1. Create a Userform that has one textbox and one button.
2. Have the user enter text in the textbox and press enter.
3. Once enter is pressed have the form take the data they typed into the textbox and search a specific .txt file (beginning the search from bottom to top to find the most recent entry) until it finds a match.
4. Take the latitude and longitude to the right of the match and convert them to proper form. Right now my SQL provides live updates to the .txt file only the lat/lon come accross as |-112053440|33427640|, so I need to insert decimals in the correct places.
5. Either way, they type "c123" it will search until it matches that then take the latitude and longitude that is to the right of the match.
6. Convert the latitude/longitude into proper format because if it pulls the data as is it will appear as[urls]...
I have an application with a listview which contains 3 columns (account, password, and a hidden column).
I have written some code to save the contents of the account and password columns in the format Account|Password.
Now I would like to be able to import text files into the listview. I was thinking about reading the text file then splitting it using Split("|") however I don't know how to put the variables in the seperate columns. Here is my code:
Dim accounts As String Dim i As Integer Dim aryTextFile() As String
I need to open a text file, remove lines in the file that contain specific starting characters, and save the file back with a different file name, is this possible? The file contains a header record, detail records, and a trailer record. There are other records that I do not want in the file, this records have a specific starting character. I can open the file in VB, copy to another string variable, but cannot find out how to remove the lines I do not need and save the file.
i have this code but not working the programme hanging the data base called sa.accdb and contain of two tables 1-market definition 2-marketrecord..how to insert text file into( 2-marketrecord)[code]
Is there anyone here who can help me with my problem in importing text file using vb.net and then after the importing, the imported data will be insert in sql server?
I have Converted my code from VB6 to 2008 then I have got the below warning. Warning 1 Variable 'a' is passed by reference before it has been assigned a value. A null reference exception could result at runtime. The code is working but the results in sql server table is wrong due to this error.
CommonDialog1Open.ShowDialog() Dim pathh As String pathh = CommonDialog1Open.FileName If cn.State = 1 Then cn.Close() If rs.State = 1 Then rs.Close() [Code] .....
I need to get a text file into a blank datatable that already exists. The table has its column names already so I need to insert the data into the fields. The text file is set up as so for example:
I am justing looking for how to Import whole directory with the text files and picture. I know about the file handling through which we can Import single file to form in vb.