- Strength to Increase Rep
- +0
- Strength to Decrease Rep
- -0
- Upvotes Received
- 4
- Posts with Upvotes
- 4
- Upvoting Members
- 4
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
11 Posted Topics
Re: If the above code from codeorder doesn't work you could use: [CODE] 'given that xmlString is the variable holding 'the string read from <name> abc xyz </name> Dim newString as string = xmlString.Substring(1,xmlString.Length-2) 'store newString in DB [/CODE] | |
Re: If I read that right then you basically want to put an incremental number after those dates right? like: <DateTime1> [B]1[/B] <DateTime2> [B]2[/B] ... If so then u just need: [CODE] dim CurrentTranxDateTime as date dim UniqueID as string For i As Integer = 1 To 10 'change next line … | |
Re: easy: [CODE] For i As Integer = 0 to clientIDList.Count-1 'CInt converts string to integer but raises error if 'a value isn't a number so watch out what you write into 'txtTargetID.Text! If clientIDList(i) = CInt(txtTargetID.Text) Then 'ID found write needed code here ElseIf i = clientIDList.Count-1 Then 'No match … | |
Re: 1. Not many of us know what GOCR is :) (heard it myself here the first time) For 2. and 3. : "GOCR is an OCR (Optical Character Recognition) program, developed under the GNU Public License. It converts scanned images of text back to text files. Joerg Schulenburg started the … | |
Hi to all, I have a severe problem with memory when executing my application. At start it merely uses about 14.000 K without doing anything. Then, when the main code starts in a seperate thread, it spikes up to 700.000 K (observed in TaskManager). Program in question is an implementation … | |
Re: Well... the error message says it all... since forms are created on separate threads aswell you tried to access your control from another thread... Best way around this is to put your datagridview update in another sub or function apart from your 2nd thread and to invoke it by itself … | |
Re: Every time the user hits ; you could add the specified name of the author to a list and clear the textBox. i.e. If keyPressed = ";" then AuthorList.Add(txtBox.Text) txtBox.Text = "" End If You could also tell autocomplete to start over at specified substring where the starting index of … | |
Re: 1. Which reference did you use? (Microsoft Office runtime library?) 2. If your FindStringInFile actually finds the given string then you should put that "currentPageNumber" line of code inside it (maybe you already put the page number into a local variable but tried to use it as a global variable?) … | |
Re: It seems to me like you closed the form before calling Login.Show(). Try: Login.Show() Login.SetFocus() Application.Close() '[or Application.Hide()] | |
Hi, First of all... Yeah, I know that there WAS and still IS a lot of discussions and arguing about this particular topic (actually the main reason why I opened a new "Global Hook vb.net" topic is because I couldn't find any answers to my questions as a lot of … | |
Re: Opinion on Firewall: ZoneAlarm is generally heavy on resources (at least it has been while I was using it) and has really poor security(the free edition that is). Best free firewall that I was using was Comodo Personal Firewall. AV: Avira was always very good to me and to my … |
The End.