Click here to Skip to main content
16,005,389 members
Home / Discussions / Database
   

Database

 
AnswerRe: SELECT Query Pin
pubududilena21-Mar-06 19:46
pubududilena21-Mar-06 19:46 
AnswerRe: SELECT Query Pin
HimaBindu Vejella21-Mar-06 19:57
HimaBindu Vejella21-Mar-06 19:57 
AnswerRe: SELECT Query Pin
S Douglas22-Mar-06 0:41
professionalS Douglas22-Mar-06 0:41 
QuestionCan U help Me !!!!!!!! Pin
AnhTin21-Mar-06 15:55
AnhTin21-Mar-06 15:55 
AnswerRe: Can U help Me !!!!!!!! Pin
Christian Graus21-Mar-06 16:21
protectorChristian Graus21-Mar-06 16:21 
GeneralRe: Can U help Me !!!!!!!! Pin
AnhTin21-Mar-06 22:35
AnhTin21-Mar-06 22:35 
QuestionBindingNavigator DeleteItem button Pin
ALGNET21-Mar-06 12:47
ALGNET21-Mar-06 12:47 
AnswerRe: BindingNavigator DeleteItem button Pin
krzychub22-Mar-06 4:45
krzychub22-Mar-06 4:45 
Hi ALGNET

I'm not an expert but i think You can do something like this:

1. Set your BindingNavigator's 'DeleteItem' property to: 'none' (in form designer)
2. In the code window of your form write:
Private Sub BindingNavigatorDeleteItem_Click(ByVal sender As _
System.Object, ByVal e As System.EventArgs) Handles _
BindingNavigatorDeleteItem.Click
If MessageBox.Show("Are You sure?", "Erase Data", _
MessageBoxButtons.OKCancel) = Windows.Forms.DialogResult.OK Then
Me.'YourBindingSource'.RemoveCurrent()
Else
Me.'YourBindingSource'.CancelEdit()
End If
End Sub

Hope this help You, for me it works fine.
Regards.
GeneralRe: BindingNavigator DeleteItem button Pin
ALGNET22-Mar-06 12:18
ALGNET22-Mar-06 12:18 
QuestionUpdate/Append SQL Server view through MS Access front end Pin
Duncan Edwards Jones21-Mar-06 11:13
professionalDuncan Edwards Jones21-Mar-06 11:13 
AnswerRe: Update/Append SQL Server view through MS Access front end Pin
Duncan Edwards Jones22-Mar-06 1:15
professionalDuncan Edwards Jones22-Mar-06 1:15 
QuestionTSQL Exception Handling Pin
john_eight20-Mar-06 22:37
john_eight20-Mar-06 22:37 
AnswerRe: TSQL Exception Handling Pin
Duncan Edwards Jones21-Mar-06 21:01
professionalDuncan Edwards Jones21-Mar-06 21:01 
AnswerRe: TSQL Exception Handling Pin
HimaBindu Vejella21-Mar-06 22:22
HimaBindu Vejella21-Mar-06 22:22 
QuestionNewbie Crystal Reports Question : Making a Crystal Report in Landscape? Pin
cbhkenshin20-Mar-06 19:38
cbhkenshin20-Mar-06 19:38 
AnswerRe: Newbie Crystal Reports Question : Making a Crystal Report in Landscape? Pin
albCode20-Mar-06 20:39
albCode20-Mar-06 20:39 
QuestionSome problem with For Pin
AnhTin20-Mar-06 19:17
AnhTin20-Mar-06 19:17 
AnswerRe: Some problem with For Pin
AnhTin20-Mar-06 19:24
AnhTin20-Mar-06 19:24 
QuestionDataAdapter.Update not working Pin
luckyeagle20-Mar-06 13:38
luckyeagle20-Mar-06 13:38 
AnswerRe: DataAdapter.Update not working Pin
mcljava24-Mar-06 9:15
mcljava24-Mar-06 9:15 
QuestionHow to upsize Access 2003 to SQL 2005 Pin
LuluSailor20-Mar-06 7:29
LuluSailor20-Mar-06 7:29 
AnswerRe: How to upsize Access 2003 to SQL 2005 Pin
LuluSailor20-Mar-06 8:00
LuluSailor20-Mar-06 8:00 
QuestionHow to implement search in database Pin
Arindam_DT20-Mar-06 2:33
Arindam_DT20-Mar-06 2:33 
QuestionDB_E_DATAFIELD_OVERFLOW Pin
Gupta Suraj20-Mar-06 0:27
Gupta Suraj20-Mar-06 0:27 
AnswerRe: DB_E_DATAFIELD_OVERFLOW Pin
Chris Meech20-Mar-06 9:47
Chris Meech20-Mar-06 9:47 

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.