Click here to Skip to main content
16,008,299 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Dot-matrix printing Pin
GuyThiebaut8-Nov-07 22:11
professionalGuyThiebaut8-Nov-07 22:11 
GeneralRe: Dot-matrix printing Pin
r_mohd8-Nov-07 22:21
r_mohd8-Nov-07 22:21 
QuestionSub report Pin
di3.ny288-Nov-07 18:01
di3.ny288-Nov-07 18:01 
Questiongrid with multiheader? Pin
sean13328-Nov-07 16:23
sean13328-Nov-07 16:23 
AnswerRe: grid with multiheader? Pin
cstrader2329-Nov-07 4:27
cstrader2329-Nov-07 4:27 
QuestionReading a text file backwards Pin
iSeeGhosts8-Nov-07 15:58
iSeeGhosts8-Nov-07 15:58 
AnswerRe: Reading a text file backwards Pin
Luc Pattyn8-Nov-07 16:26
sitebuilderLuc Pattyn8-Nov-07 16:26 
AnswerRe: Reading a text file backwards [modified] Pin
The ANZAC8-Nov-07 17:53
The ANZAC8-Nov-07 17:53 
put them in an array and work from i.

Dim Records() as string = file.readalllines("c:\example")
Dim CurrentRecord as Integer = 0

on forward:
if currentrecord < (records.length - 1) then
currentrecord +=1
me.displaytextbox.text = records(currentrecord)
end if

on backward:
if currentrecord >0 then
currentrecord -=1
me.displaytextbox.text = records(currentrecord)
end if




-- modified at 17:22 Saturday 10th November, 2007

Please check out my articles:
The ANZAC's articles

Generaltypo Pin
Luc Pattyn8-Nov-07 17:56
sitebuilderLuc Pattyn8-Nov-07 17:56 
GeneralRe: typo Pin
The ANZAC8-Nov-07 17:57
The ANZAC8-Nov-07 17:57 
GeneralRe: typo Pin
iSeeGhosts10-Nov-07 8:45
iSeeGhosts10-Nov-07 8:45 
GeneralRe: typo Pin
The ANZAC10-Nov-07 11:18
The ANZAC10-Nov-07 11:18 
QuestionHelp on Report Viewer Pin
Abbhie8-Nov-07 15:08
Abbhie8-Nov-07 15:08 
AnswerRe: Help on Report Viewer Pin
pmarfleet9-Nov-07 3:09
pmarfleet9-Nov-07 3:09 
Questionhow to change the highlight color of a treeview? PinPopular
lee238-Nov-07 15:00
lee238-Nov-07 15:00 
QuestionVB Shell Folder error handler Pin
reegan418-Nov-07 10:39
reegan418-Nov-07 10:39 
AnswerRe: VB Shell Folder error handler Pin
Mycroft Holmes8-Nov-07 16:00
professionalMycroft Holmes8-Nov-07 16:00 
QuestionDelegate Question Pin
midnightshifting8-Nov-07 8:08
midnightshifting8-Nov-07 8:08 
AnswerRe: Delegate Question Pin
MidwestLimey8-Nov-07 8:52
professionalMidwestLimey8-Nov-07 8:52 
QuestionDeploying Com Wrapped DLL that has a webreference Pin
nlarson118-Nov-07 4:28
nlarson118-Nov-07 4:28 
Questionssh database connection in vb.net Pin
tj288-Nov-07 3:33
tj288-Nov-07 3:33 
QuestionNeed help to collect forest-wide group policy information. Pin
kingpin20058-Nov-07 3:16
kingpin20058-Nov-07 3:16 
QuestionA simpale Question Pin
half-life8-Nov-07 2:38
half-life8-Nov-07 2:38 
AnswerRe: A simpale Question Pin
AliAmjad8-Nov-07 2:43
AliAmjad8-Nov-07 2:43 
GeneralRe: A simpale Question Pin
half-life8-Nov-07 3:14
half-life8-Nov-07 3:14 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.