Click here to Skip to main content
15,879,535 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: How to disable Ctrl P keys in vb.net(for my application only) Pin
Xandip16-May-07 0:26
Xandip16-May-07 0:26 
AnswerRe: How to disable Ctrl P keys in vb.net(for my application only) Pin
Dave Kreskowiak16-May-07 3:50
mveDave Kreskowiak16-May-07 3:50 
QuestionError Type Mismach Pin
Vimalsoft(Pty) Ltd15-May-07 20:37
professionalVimalsoft(Pty) Ltd15-May-07 20:37 
QuestionRe: Error Type Mismach Pin
CPallini15-May-07 20:41
mveCPallini15-May-07 20:41 
AnswerRe: Error Type Mismach Pin
Vimalsoft(Pty) Ltd15-May-07 21:07
professionalVimalsoft(Pty) Ltd15-May-07 21:07 
GeneralRe: Error Type Mismach Pin
ChandraRam15-May-07 21:23
ChandraRam15-May-07 21:23 
GeneralRe: Error Type Mismach Pin
Vimalsoft(Pty) Ltd15-May-07 22:02
professionalVimalsoft(Pty) Ltd15-May-07 22:02 
GeneralRe: Error Type Mismach Pin
Vimalsoft(Pty) Ltd15-May-07 22:42
professionalVimalsoft(Pty) Ltd15-May-07 22:42 
i have managed to add data and save it, but whe i click on cmdPrevious
it show me this Error

"Row handles must all be relaeased before new ones can be obtained" hence this is a big database , did it save the record? and why that Error.
The code for First and Previous

Private Sub cmdPrevious_Click()
rrs.MovePrevious
If rrs.BOF = True Then
rrs.MoveFirst
End If
End Sub

Private Sub cmdFirst_Click()
rrs.MoveFirst

End Sub





and i get an Error when i try to Delete
"Either BOE or EOF is true or the Current Record has been Deleted Request Operation Requires Current record."

What suprises me is that i was scrolling through the recordset and i came across the blank record, so i was trying to delete it.Below is the code for delete
Private Sub cmdDelete_Click()
On Error GoTo DeleteErr
With rrs
.Delete
.MoveNext
If .EOF Then .MoveLast
End With
Exit Sub
DeleteErr:
MsgBox Err.Description
End Sub


Thank once more


Vuyiswa

QuestionProblem arise when set exe icon Pin
Rupesh Kumar Swami15-May-07 20:09
Rupesh Kumar Swami15-May-07 20:09 
AnswerRe: Problem arise when set exe icon Pin
Xandip16-May-07 0:11
Xandip16-May-07 0:11 
AnswerRe: Problem arise when set exe icon Pin
Dave Kreskowiak16-May-07 3:37
mveDave Kreskowiak16-May-07 3:37 
Questionhi.... [modified] Pin
navyasri15-May-07 20:08
navyasri15-May-07 20:08 
AnswerRe: hi.... Pin
Christian Graus15-May-07 20:19
protectorChristian Graus15-May-07 20:19 
QuestionSystem.Diagnosis.process Pin
Sonia Gupta15-May-07 19:33
Sonia Gupta15-May-07 19:33 
AnswerRe: System.Diagnosis.process Pin
Vivek Narayanan15-May-07 19:44
Vivek Narayanan15-May-07 19:44 
QuestionRe: System.Diagnosis.process Pin
Sonia Gupta15-May-07 19:59
Sonia Gupta15-May-07 19:59 
AnswerRe: System.Diagnosis.process Pin
Vivek Narayanan16-May-07 1:16
Vivek Narayanan16-May-07 1:16 
GeneralRe: System.Diagnosis.process Pin
Sonia Gupta16-May-07 2:10
Sonia Gupta16-May-07 2:10 
AnswerRe: System.Diagnosis.process Pin
Dave Kreskowiak16-May-07 3:34
mveDave Kreskowiak16-May-07 3:34 
Questionsubclassing only in runmode Pin
lee2315-May-07 19:15
lee2315-May-07 19:15 
QuestionRe: subclassing only in runmode Pin
CPallini15-May-07 20:48
mveCPallini15-May-07 20:48 
AnswerRe: subclassing only in runmode Pin
lee2315-May-07 22:05
lee2315-May-07 22:05 
QuestionRe: subclassing only in runmode Pin
CPallini15-May-07 22:10
mveCPallini15-May-07 22:10 
GeneralRe: subclassing only in runmode Pin
Dave Kreskowiak16-May-07 3:32
mveDave Kreskowiak16-May-07 3:32 
AnswerRe: subclassing only in runmode Pin
Richard_Wolf16-May-07 5:43
Richard_Wolf16-May-07 5:43 

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.