Posts
 
Reputation
Joined
Last Seen
Ranked #4K
Strength to Increase Rep
+0
Strength to Decrease Rep
-0
100% Quality Score
Upvotes Received
4
Posts with Upvotes
4
Upvoting Members
4
Downvotes Received
0
Posts with Downvotes
0
Downvoting Members
0
2 Commented Posts
0 Endorsements
Ranked #2K

11 Posted Topics

Member Avatar for ashwinshenoy

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]

Member Avatar for ashwinshenoy
0
191
Member Avatar for swathys

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 …

Member Avatar for swathys
0
370
Member Avatar for msqueen082

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 …

Member Avatar for HookDevil
0
111
Member Avatar for Resentful

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 …

Member Avatar for HookDevil
0
236
Member Avatar for HookDevil

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 …

Member Avatar for HookDevil
0
297
Member Avatar for crankyslap

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 …

Member Avatar for HookDevil
0
2K
Member Avatar for hjdoran

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 …

Member Avatar for HookDevil
0
252
Member Avatar for sumathibadri

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?) …

Member Avatar for HookDevil
0
163
Member Avatar for nemzmiyaw

It seems to me like you closed the form before calling Login.Show(). Try: Login.Show() Login.SetFocus() Application.Close() '[or Application.Hide()]

Member Avatar for HookDevil
0
103
Member Avatar for HookDevil

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 …

Member Avatar for HookDevil
0
141
Member Avatar for stvrich

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 …

Member Avatar for Stefano Mtangoo
0
250

The End.