Click here to Skip to main content
15,889,931 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: How do I display different group boxes, according to radio button selected ? Pin
Wendelius19-Feb-15 7:56
mentorWendelius19-Feb-15 7:56 
QuestionVB dropdown list that will enable another after a selection is made with a private sub Pin
Bluewolf3119-Feb-15 2:34
Bluewolf3119-Feb-15 2:34 
AnswerRe: VB dropdown list that will enable another after a selection is made with a private sub Pin
Eddy Vluggen19-Feb-15 5:57
professionalEddy Vluggen19-Feb-15 5:57 
GeneralRe: VB dropdown list that will enable another after a selection is made with a private sub Pin
Bluewolf3119-Feb-15 7:56
Bluewolf3119-Feb-15 7:56 
GeneralRe: VB dropdown list that will enable another after a selection is made with a private sub Pin
Bluewolf3119-Feb-15 8:20
Bluewolf3119-Feb-15 8:20 
GeneralRe: VB dropdown list that will enable another after a selection is made with a private sub Pin
Eddy Vluggen19-Feb-15 8:39
professionalEddy Vluggen19-Feb-15 8:39 
QuestionData entry in sequential file in vb6 Pin
Preeti197918-Feb-15 22:28
Preeti197918-Feb-15 22:28 
AnswerRe: Data entry in sequential file in vb6 Pin
den2k8818-Feb-15 22:35
professionalden2k8818-Feb-15 22:35 
Sequential files are tricky: they are called sequential because you cannot change the contents in an aribitrary location in the file.

The only solution using sequential files is to
1) create a new temporary file (in Output so you don't accidentally append to an existing file)
2) append the old data into the new file until you reach the point which the changed data
3) write the new data
4) resume appending the remaining data (take care to skip the changed ones before resuming copy)


The other solution requires you to use Random Access Files and to devise another way of memorizing the data.
Geek code v 3.12
GCS d--- s-/++ a- C++++ U+++ P- L- E-- W++ N++ o+ K- w+++ O? M-- V? PS+ PE- Y+ PGP t++ 5? X R++ tv-- b+ DI+++ D++ G e++>+++ h--- r++>+++ y+++*
Weapons extension: ma- k++ F+2 X

GeneralRe: Data entry in sequential file in vb6 Pin
Preeti197919-Feb-15 1:06
Preeti197919-Feb-15 1:06 
QuestionIs possible to use a global variable inside a class ? Pin
dilkonika18-Feb-15 11:11
dilkonika18-Feb-15 11:11 
AnswerRe: Is possible to use a global variable inside a class ? Pin
Duncan Edwards Jones18-Feb-15 11:19
professionalDuncan Edwards Jones18-Feb-15 11:19 
QuestionHow to show time zones in dates (Time Stamp) Pin
Murray Whipps18-Feb-15 7:13
Murray Whipps18-Feb-15 7:13 
AnswerRe: How to show time zones in dates (Time Stamp) Pin
Richard Andrew x6418-Feb-15 8:37
professionalRichard Andrew x6418-Feb-15 8:37 
GeneralRe: How to show time zones in dates (Time Stamp) Pin
den2k8818-Feb-15 22:37
professionalden2k8818-Feb-15 22:37 
GeneralRe: How to show time zones in dates (Time Stamp) Pin
Murray Whipps19-Feb-15 6:43
Murray Whipps19-Feb-15 6:43 
AnswerRe: How to show time zones in dates (Time Stamp) Pin
den2k8818-Feb-15 22:42
professionalden2k8818-Feb-15 22:42 
GeneralRe: How to show time zones in dates (Time Stamp) Pin
Tim Carmichael19-Feb-15 1:23
Tim Carmichael19-Feb-15 1:23 
GeneralRe: How to show time zones in dates (Time Stamp) Pin
Murray Whipps19-Feb-15 6:32
Murray Whipps19-Feb-15 6:32 
QuestionDeconstruction of a VBA Code Module Pin
ruvain18-Feb-15 0:41
ruvain18-Feb-15 0:41 
AnswerRe: Deconstruction of a VBA Code Module Pin
Chris Quinn18-Feb-15 1:00
Chris Quinn18-Feb-15 1:00 
QuestionData entry in VB6Flexgrid1 developed by Mostafa Kaisoun Pin
Preeti197917-Feb-15 21:23
Preeti197917-Feb-15 21:23 
AnswerRe: Data entry in VB6Flexgrid1 developed by Mostafa Kaisoun Pin
Chris Quinn17-Feb-15 21:37
Chris Quinn17-Feb-15 21:37 
AnswerRe: Data entry in VB6Flexgrid1 developed by Mostafa Kaisoun Pin
den2k8817-Feb-15 22:13
professionalden2k8817-Feb-15 22:13 
GeneralRe: Data entry in VB6Flexgrid1 developed by Mostafa Kaisoun Pin
Preeti197918-Feb-15 22:23
Preeti197918-Feb-15 22:23 
QuestionEntity Framework : Set value of a not-mapped property inside a query Pin
dilkonika17-Feb-15 17:03
dilkonika17-Feb-15 17:03 

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.