VS 2008 Parsing Strings With The Constant At The End?
Feb 15, 2010
I have the html of a page loaded into a string.
confirmUse('??????','Eat'
I want to extract the number that the ?'s represent however confirmUse is used in other parts of the page. The only constant is the 'Eat' which is unique to this specific number.
I usually use Mid and Instr to find what I need but when I try to back track it gives me an error because the index number is below 0.
View 2 Replies
ADVERTISEMENT
Jul 19, 2011
I was wondering something. Is it possible to call a function in a Dll whose location is placed in a variable?What I mean is that I create a string that contains the file location odll file(Dim str as String = "DllFileLocation") Then, I call a function from that dll. And thenI change the string to a different file name (str = DifferentDllFileLocation") and then call a function from that dll. Is that possible?This would be good for my program whereuserswould import their own dll files, and then the program would call functions from those dll files.
View 4 Replies
Jan 8, 2009
i've to declare two constant arrays one bidemensional of strings the other bidimensional of Doubles?
View 10 Replies
Oct 17, 2011
I get long strings of images like this
Image1.jpg?set_id=8800005007,Image2.jpg?set_id=88000040075,
How can I break them down to just the image only string
Image1.jpg
Image2.jpg
View 3 Replies
Oct 29, 2011
If INPUT = "Fog/Mist" Or "Overcast Haze" Or "Freezing Fog" Or "Shallow Fog" Or "Partial Fog" Or "Patches of Fog" Or "Fog in Vicinity" Or "Freezing Fog in Vicinity" Or "Shallow Fog in Vicinity" Or "Partial Fog in Vicinity" Or "Patches of Fog in Vicinity" Or "Showers
[code].....
View 14 Replies
Oct 28, 2009
I am having trouble figuring out how to parse a string with delimiters. I have a text box which the user inputs data or what ever. I need to figure out how to parse the string and display it in a listbox, each word in a single line. Here is what I have so far, my book doesnt explain parsing very well and I'm stuck
View 2 Replies
Jun 20, 2011
I have a text file with preferences in it. I read the file and find text on a particular line like this:If InStr(sLine, "avidDirectory") Then This is my line in the text file: avidDirectory "S:Avid MediaFiles" "D:Avid MediaFiles" "Z:Avid MediaFiles"..What I need to do is read each string between the quoations marks and place each one in a text box.I have 5 texts boxes to use if there are 5 different directories above (only three in the example above)So I guess I need to capture the text between the quotation marks, create a new string from it, and place that string into a text box [code]
View 1 Replies
Feb 18, 2010
I'll start off by saying I am using Visual Studio 2008 Standard. I am creating a program that will open installed programs using short code. For instance, if a user types in 'npp' then Notepad++ opens. I have it working just fine to respond to the predefined commands, but I would like to expand it so that the user can define their own settings simply by typing the program directory and the custom short code they want: Example: If I am an end user and would like to say define a short code for Windows Media Player, I would simply type the following: (Assuming Excel or likewise is used to open the csv file).
[Code]....
View 3 Replies
Aug 13, 2011
When building a class library which contains many classes, all classes uses a lot of common constants and functions, what is the best to do:
1- Declare these constants and functions as public in a module.
2- In each class declare constants and functions used by individual class as private.
The first choice is good for easy and fast implementation, but re-using a class in a different project will require importing the module to the other project.The second choice require a lot of copy/paste for code snippet but a class can be re-used in different project easily.
View 3 Replies
Aug 13, 2009
I am working on a UDP Client/Server, and currently i have them sending back and forth strings, which i convert to bytes, and then open the bytes to read. I want to now send an Object instead of those strings, which includes multiple unsigned integers and strings.
View 39 Replies
Oct 16, 2009
I'm migrating from VB6 to VB.NET, in hence my questions below:
I have to write a function that returns array of strings.
How can I initiate it to empty array? I need it since I have to check if it's empty array after it returns from this function.
Is list of arrays better for this purpose? If I use a list - Is it empty when it firstly defined? How can I check it it's empty?
View 3 Replies
Oct 16, 2009
Say I have a List(Of Tag) with Tag being an object. One member of Tag, Tag.Description, is a string, and I want to make a comma-separated concatenation of the Description members.Is there an easier way to do this than to read the Description members into a List(Of String) and then use the Join function?
View 2 Replies
Aug 8, 2009
I want to know that how we access a constant which is declared in a public structure, with an instance of that structure?
View 7 Replies
Oct 26, 2009
I would like to know how to apply code for a date that will expire 5 days after whatever the current date would be and it needs to be a "constant".For example: When the user loads a form, the current date is assigned, and the expiration date always needs to be 5 days after the current date.
View 4 Replies
Mar 5, 2009
I would like to be able to parse vb.net code files, so I can examine the collection of Subs, Functions (and their contents, including comments), private variables, etc. I can be open the actual source code files. So for example, if I have:
[Code]....
View 7 Replies
Nov 5, 2009
I want to create an array of constant variables for my program. But from everything I read about arrays they are handled by a number. I want to be able to pass back a variable that will hold the name of the constant as well as the value. How would you go about do that.I want to when I type the variable to have the constant name show up as I am typing.
View 4 Replies
Mar 12, 2012
I've been trying to take a text string converted to HASH512 and have a textbox to verify that the entered string to HASH512; if HASH512A <> HASH512B then "incorrect password".
The problem is I don't know how to specify a certain saltByte prior to running the function.
vb.net Public Shared Function ComputeHash(ByVal plainText As String, _
[Code]...
View 1 Replies
Mar 16, 2011
I'm creating a vb.net winforms application that will take in user given strings, parse them, and print out labels with variable information. The given string will be used in all the labels, but the variable part of the string will change with each label.
My question is: is it better to parse the strings one time, then store those values in arrays, or to parse the string each time a label is printed? Which will perform better? Which is better practice? What is the proper way to test something like this?
View 2 Replies
Jan 26, 2009
I successfully wrote a code to retrieve a version number from a HTML page which is this:
<div class="header">Latest Version: <span class="version">6.59</span></div>
So the following code will return the version number which currently is 6.59 which is what I'm after. [Code] But then i remembered that releases are done as following: 6.59, 6.59b, 6.59c, 6.60, 6.60b etc. So when the b version of 6.59 is released the parser will still return 6.59. So how can i make this code better?
View 8 Replies
Nov 15, 2009
After countless hours of searching I have been unable to get this code to work. If anyone can provide we with an alternative. I know the easiest way is to use the Split() function but im trying to do an alternative method by identifying the spaces within the string and splitting them up.
I tried the search function, but to no avail.
Attached is the code.
CODE:
View 5 Replies
Feb 18, 2011
parsing a JSON from a URL... Using the Nascar JSON file I am trying to place it into a listview or treeview. Displaying the drivers name, number and current position.
[Code]...
View 1 Replies
Oct 19, 2011
I'm trying to find a way to parse a string which looks like this:
1,394,7,0,0,0,0,0,,0,0,63,85,0,,0,0/2,595,59,8,0,0,0,0,0,,,0,0,,0,8,6,0/3,696,0,0,0,0,,,0,0,,84,0,0/#
So that it only reads the first two digits, then delete everything after that till it reads a "/", read the first two digits and delete everything up to the "/" again.This would result in this:
1,394
2,595
3,696
I don't know how to remove every character after the last of the first two digits up to the first / it reads, can anyone help me with that?How can I parse this code easily?
View 3 Replies
Feb 6, 2010
I have a large XML database of song files. I basically want to parse this into a listview with two columns. "Artist" and then a subitem of "Song"
And example of one <song></song> section of the database is:
Quote:
<Song FilePath="C:UsersAdamDownloadsSusan Boyle - I Dreamed A Dream CDRip 2009 [Cov+CD][Bubanee]�7. Up To The Mountain - Susan Boyle.mp3" FileSize="5900603">
<Display Author="Susan Boyle" Title="Up To The Mountain" Album="I Dreamed A Dream"
[Code].....
Then put Author in the Item and Title as a subitem. How would I go about doing this on startup to a database that has thousands of songs?
View 1 Replies
Nov 15, 2011
i have managed to make an application to get print logs from the print server 2003, But now we have changed it to 2008.get print logs from windows 2008 server.i have activated the print loges from service manager -> diagnostics -> application and service logs-> microsoft ->windows ->print service and enabled the logs.using
Dim
EvntLog1() As EventLog = EventLog.GetEventLogs(My.Computer.Name)
For dhi
As
[code]....
i can get some process but i am not sure how to get the printer logs from windows server 2008?
View 11 Replies
Feb 13, 2011
i am getting a piece of text from a webpage, but i would like to only let the text after a $ to show up?
View 1 Replies
Jul 14, 2010
I need to convert a string such as "01h45m" into a TimeSpan. I know I can split the string apart to get the numbers, just looking for something more elegant...
View 2 Replies
Apr 3, 2011
i need help parsing html using regex..i am hardly find the exact expression to use.
[Code]...
View 2 Replies
Jul 27, 2011
I am reading from an IO.port and returning the data to a string. I need to parse this to data rows that each represent a data record which I will add to a datagridview.
The data basically looks like this. I have inserted <SOH>,<US>, etc. for readability.
[Code]...
View 17 Replies
Dec 27, 2010
I have one large XML file from one of our vendor and I am trying to pars it using Linq but it looks some wrong logic I am using.
This is xml file:
HTML
<Psw xmlns="http://localhost">
<exid>20</exid>
<Mes><Me>
<doc><ps>
<ghder> .....
The code I am trying:
Dim doc As XDocument
doc = XDocument.Load(TextBox1.Text)
Dim qList = (From xe In doc.Descendants.Elements("ghder") _
Select New With { _
.mid = xe.Element("MId").Value, _
.cdate = xe.Element("cD").Value _
' As well I need to get the value for pn child attribute }).FirstOrDefault
MsgBox(qList.mid)
Error for DBNull ' Object reference not set to an instance of an object.
View 6 Replies
Nov 6, 2009
Is it possible to collect data in this page with table. link here Is t possible to collect and view the data from tables into a ListView control in winForm?Instead of viewing page in webbrowser. i just want to use listview.I found klienma's thread in codebank but i could find a way how to parse table data form the web page.
View 5 Replies