Click here to Skip to main content
15,913,055 members
Home / Discussions / Visual Basic
   

Visual Basic

 
GeneralRe: extracting data problem to ms exel and access database location different in some system Pin
Richard MacCutchan18-Apr-18 5:55
mveRichard MacCutchan18-Apr-18 5:55 
GeneralRe: extracting data problem to ms exel and access database location different in some system Pin
lazy_dude23-Apr-18 6:55
lazy_dude23-Apr-18 6:55 
GeneralRe: extracting data problem to ms exel and access database location different in some system Pin
Richard MacCutchan23-Apr-18 7:00
mveRichard MacCutchan23-Apr-18 7:00 
Questionmy program running on background makes my current open application in desktop to blink blink such excel , google, outlook etc. Pin
Member 1280941214-Apr-18 13:38
Member 1280941214-Apr-18 13:38 
AnswerRe: my program running on background makes my current open application in desktop to blink blink such excel , google, outlook etc. Pin
Richard MacCutchan14-Apr-18 21:10
mveRichard MacCutchan14-Apr-18 21:10 
GeneralRe: my program running on background makes my current open application in desktop to blink blink such excel , google, outlook etc. Pin
Member 1280941215-Apr-18 8:01
Member 1280941215-Apr-18 8:01 
AnswerRe: my program running on background makes my current open application in desktop to blink blink such excel , google, outlook etc. Pin
Eddy Vluggen17-Apr-18 0:08
professionalEddy Vluggen17-Apr-18 0:08 
GeneralRe: my program running on background makes my current open application in desktop to blink blink such excel , google, outlook etc. Pin
Member 1280941218-Apr-18 12:40
Member 1280941218-Apr-18 12:40 
QuestionHow to use multi user login with visual basic 6 and Microsoft access 2007 Pin
Member 136918614-Apr-18 4:20
Member 136918614-Apr-18 4:20 
AnswerRe: How to use multi user login with visual basic 6 and Microsoft access 2007 Pin
Gerry Schmitz4-Apr-18 4:49
mveGerry Schmitz4-Apr-18 4:49 
AnswerRe: How to use multi user login with visual basic 6 and Microsoft access 2007 Pin
Dave Kreskowiak4-Apr-18 4:57
mveDave Kreskowiak4-Apr-18 4:57 
AnswerRe: How to use multi user login with visual basic 6 and Microsoft access 2007 Pin
Richard Deeming4-Apr-18 5:04
mveRichard Deeming4-Apr-18 5:04 
GeneralRe: How to use multi user login with visual basic 6 and Microsoft access 2007 Pin
Mycroft Holmes4-Apr-18 13:16
professionalMycroft Holmes4-Apr-18 13:16 
AnswerRe: How to use multi user login with visual basic 6 and Microsoft access 2007 Pin
Richard MacCutchan4-Apr-18 7:05
mveRichard MacCutchan4-Apr-18 7:05 
AnswerRe: How to use multi user login with visual basic 6 and Microsoft access 2007 Pin
Eddy Vluggen4-Apr-18 23:54
professionalEddy Vluggen4-Apr-18 23:54 
GeneralRe: How to use multi user login with visual basic 6 and Microsoft access 2007 Pin
Member 136918615-Apr-18 3:12
Member 136918615-Apr-18 3:12 
GeneralRe: How to use multi user login with visual basic 6 and Microsoft access 2007 Pin
Eddy Vluggen5-Apr-18 6:34
professionalEddy Vluggen5-Apr-18 6:34 
QuestionHow to display on the form automatically the user that logins in a VB program Pin
Member 136918614-Apr-18 3:32
Member 136918614-Apr-18 3:32 
AnswerRe: How to display on the form automatically the user that logins in a VB program Pin
Dave Kreskowiak4-Apr-18 3:57
mveDave Kreskowiak4-Apr-18 3:57 
GeneralRe: How to display on the form automatically the user that logins in a VB program Pin
Member 136918614-Apr-18 4:26
Member 136918614-Apr-18 4:26 
GeneralRe: How to display on the form automatically the user that logins in a VB program Pin
Dave Kreskowiak4-Apr-18 4:55
mveDave Kreskowiak4-Apr-18 4:55 
QuestionVB code to disable save button after saving a form Pin
Member 136918614-Apr-18 2:05
Member 136918614-Apr-18 2:05 
Please I will like to know if this code written is okay. seems to be having error. The aim is to prevent user from making any changes on form after saving.

CUSTOMER RESERVATION BILLLING (cmdSave,  Command2)
If cmdSave.Caption = "Save" Then
   Adodc1.Recordset.AddNew
   txt.SetFocus
   'Disenablebuttons
   cmdsave.Enabled = True
   cmdAddNew.Caption = "Cancel"
   cboClassofRoom.Locked = False
   txtCustomer_Name.Locked = False
   txtRoomNo.Locked = False
   txtCustomer_Address.Locked = False
   txtPhone_number.Locked = False
   txtAmountPaid.Locked = False
   txtCheckin.Locked = False
   txtDuration.Locked = False
   txtDate.Locked = False
   txtReceptionist.Locked = False
Else
   Adodc1.Recordset.CancelUpdate
     cmdsave.Enabled = False
     cmdAdd.Caption = "Add"
   'enablebuttons
   cboClassofRoom.Locked = True
   txtCustomer_Name.Locked = True
   txtRoomNo.Locked = True
   txtCustomer_Address.Locked = True
   txtPhone_number.Locked = True
   txtAmountPaid.Locked = True
   txtCheckin.Locked = True
   txtDuration.Locked = True
   txtDate.Locked = True
   txtReceptionist.Locked = True
End IF
End Sub

AnswerRe: VB code to disable save button after saving a form Pin
Dave Kreskowiak4-Apr-18 2:17
mveDave Kreskowiak4-Apr-18 2:17 
GeneralRe: VB code to disable save button after saving a form Pin
Ronnie Jimenez16-Apr-18 17:19
Ronnie Jimenez16-Apr-18 17:19 
QuestionHow can I disable a Save button or Print Buttton after saving a form in Visualbasic 6.0 Pin
Member 136918613-Apr-18 22:56
Member 136918613-Apr-18 22:56 

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.