473,799 Members | 3,001 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Save button using toolbar

143 New Member
Hello everyone,
I m using some button using toolbar such as Add,Save,View,. ... my save button is not working.... it doesnt give me any error but does not save to my database.... or showing in my gird... Plz Help
here is my code for save button
Expand|Select|Wrap|Line Numbers
  1. Private Sub Toolbar1_ButtonClick(ByVal Button As MSComctlLib.Button)
  2. On Error GoTo ChkErr
  3.     If Button.Index = 1 Then
  4.             Mode = "Add"
  5.             Call AddMode
  6.             Call ClearControl
  7.             Toolbar1.Buttons.Item(1).Enabled = False ' Add
  8.             Toolbar1.Buttons.Item(2).Enabled = False ' View
  9.             Toolbar1.Buttons.Item(3).Enabled = False ' Sort
  10.             Toolbar1.Buttons.Item(4).Enabled = False ' Edit
  11.             Toolbar1.Buttons.Item(5).Enabled = True ' save
  12.             Toolbar1.Buttons.Item(9).Enabled = True 'Exit
  13.  
  14.               End If
  15.  
  16.     If Button.Index = 4 Then
  17.         'If Val(MSHFlexGrid1.TextMatrix(MSHFlexGrid1.RowSel, 8)) = "0" Then
  18.             Mode = "Edit"
  19.             Toolbar1.Buttons.Item(5).Enabled = True ' save buton
  20.               Call Enable
  21.         Else
  22.             MsgBox " Cannot Edit "
  23.         End If
  24.  
  25.     If Button.Index = 5 Then
  26.  
  27.             Call SaveMode
  28.             Call ClearControl
  29.             Call Desable
  30.             MsgBox " Record Saved For Id '" & txtId.Text & "'"
  31.             Toolbar1.Buttons.Item(5).Enabled = False
  32.             Toolbar1.Buttons.Item(1).Enabled = True ' Add
  33.  
  34.             Call Address
  35.     End If
  36.  
  37.     'End If
  38.  
  39.     If Button.Index = 2 Then ' View
  40.         'Toolbar1.Buttons.Item(7).Enabled = False ' Final
  41.         Toolbar1.Buttons.Item(1).Enabled = False ' Add
  42.         Toolbar1.Buttons.Item(4).Enabled = True ' Edit
  43.  
  44.     End If
  45.  
  46.  
  47.  
  48.     If Button.Index = 7 Then ' Cancel
  49.             Db.Execute "Update Address"
  50.             Call Address
  51.  
  52.     End If
  53.  
  54.  
  55.     If Button.Index = 9 Then ' Exit
  56.             Unload Me
  57.     End If
  58.  
  59. Exit Sub
  60. ChkErr:
  61.     If Err.Number > 0 Then
  62.     MsgBox Err.Number & vbNewLine & Err.Description
  63.                Call ErrHand(Me.Caption, "cmdSave_Click")
  64.  
  65.     End If
  66. End Sub
  67.  
  68.  
  69. Public Function SaveMode()
  70. 'On Public Function SaveMode()
  71. If Mode = "Add" Then
  72.     ' To Get ReqNo from Mslastdoc
  73.     Dim Rs As New ADODB.Recordset
  74.         If Rs.State = adStateOpen Then Rs.Close
  75.          Rs.Open ("SELECT * FROM MsLastDoc where YY ='" & FinancialYear & "'"), Db, adOpenKeyset, adLockPessimistic
  76.                   txtId.Text = Rs("LastDocNo").Value + 1
  77.              Rs.Close
  78.          ' End
  79.  
  80.     ' Save LastDoc
  81.     Dim LastDoc As New ADODB.Recordset
  82.     Dim DocNo As Integer
  83.                 DocNo = Val(txtId.Text)
  84.                 If LastDoc.State = adStateOpen Then LastDoc.Close
  85.                 LastDoc.Open ("Select * From MsLastDoc where YY ='" & FinancialYear & "' "), Db, adOpenKeyset, adLockPessimistic
  86.                 Db.Execute "Update MsLastDoc set LastDocNo ='" & DocNo & "' where YY ='" & FinancialYear & "' "
  87.     ' End Save
  88. End If
  89.  
  90. Call SaveAddress
  91. Call ClearControl
  92.  
  93. End Function
  94. Public Function SaveAddress()
  95.     Db.Execute " Delete from Adress where Id = '" & txtId.Text & "' "
  96.  
  97.         Dim RsAddress As New ADODB.Recordset
  98.        'If RsReqHdr.State = adStateOpen Then RsReqHdr.Close
  99.         RsAddress.Open ("Address"), Db, adOpenKeyset, adLockPessimistic
  100.         With RsAddress
  101.         RsAddress.AddNew
  102.                 .Fields("Id") = Val(txtId.Text)
  103.                 .Fields("Addressof") = Val(cmbadrof.Text)
  104.                 .Fields("Address") = Val(txtAddress.Text)
  105.                 .Fields("city") = Val(txtCity.Text)
  106.                 .Fields("Pin") = Val(txtPin.Text)
  107.                 .Fields("entrydt") = Format(DTPentrydt, "DD-MMM-YYYY")
  108.                 .Fields("closedt") = Format(DTPClosedt, "DD-MMM-YYYY")
  109.  
  110.             .Update
  111.                 End With
  112.             RsAddress.Close
  113. End Function
  114.  
Jun 16 '08
14 3692
squrel
143 New Member
Hi Veena..

That Code is not working in my project... my add function is this

Private Sub FormUpdateSQL1_ AddClick()

cmbadrfor.Enabl ed = True
'txtId.Text = GetNextCode("Ad dress", "AdrID")
cmbadrfor.Enabl ed = True
txtId.Enabled = False
ChkInd.Value = 1
End Sub

tht part of the code is not working in my function... wht else i can do..
thanks a lot
Jun 21 '08 #11
QVeen72
1,445 Recognized Expert Top Contributor
Hi,

you are using VB6 or VBA....?

My code is for VB6

Regards
Veena
Jun 21 '08 #12
squrel
143 New Member
I m using VB6 with SQLserver 2000
Jun 21 '08 #13
QVeen72
1,445 Recognized Expert Top Contributor
Hi,

Did you add the Function what I said in My previous post..?
Jun 22 '08 #14
squrel
143 New Member
Yes i added tht function the same way u told me but it is not working and still getting error
Jun 23 '08 #15

Sign in to post your reply or Sign up for a free account.

Similar topics

2
9719
by: PK | last post by:
Hello, I am looking for help on the following. I'm trying to create a custom browser toolbar button that will do a few things. One that I'm trying to do at the moment is just simply return the URL of whatever page the user is visiting. I wanted to create a Win32 application using VB.NET. If there is a better way of doing this please let me know. I assume there needs to be some sort of client side code. I was originally leaning...
0
1613
by: jbbs | last post by:
I have a question regarding on the button and label. i don't know why when the mouse cursor points on the button, i see the button is flirking. is there anyway to make it not behave like that? because i want to highlight the text above the button when i click on it. can anyone help me out . Thank You the code is following: ############################################ # File: toolbar1.py
0
1815
by: Lauren Quantrell | last post by:
I use the following code to create text edit fields and command buttons in my toolbars: Function CreateToolbarObject(myObjectType as integer) Dim newObject Select Case myObjectType Case 1 'text Set newObject =
7
2826
by: IntraRELY | last post by:
I am using the following command to launch and .NET VB Executable, which is a simple Windows Form (printCheckClient.exe). I am using a HyperLink Control and works perfect. hlPrintChecks.NavigateUrl = "javascript:var newWindow =window.open('printCheckClient.exe', 1,'height=350,width=350,menubar=no,status=no,toolbar=no')" I want to use a standard ASP.NET Button, but not sure what method to use. Is there a way to accomplish this. I may not...
6
1796
by: jake | last post by:
How do you get or save a file from/to a client (button on web page) once they are authenticated? The client could be Mac, Linux or Windows. Can I do it all with IIS and ASP.NET?
8
1286
by: Mark Goldin | last post by:
I have a toolbar on my form. How do I know what button was clicked?
1
20163
by: reidarT | last post by:
I have entered a BindingNavigator toolbar in a bound form and can manage to browse records and I am able to enter data in a new record. I am ot able to save the data and therefore I have entered the save-button. How do I code this button to save a new record? reidarT
3
3688
by: Angus | last post by:
I have a web page with a toolbar containing a Save button. The Save button can change contextually to be a Search button in some cases. Hence the button name searchsavechanges. The snippet of html is: <a class="searchsavechanges btn btn3d tbbtn" href="javascript:" style="position:static"> <div id="TBsearchsavechanges">Search</div> </a>
4
2461
by: manjesh | last post by:
hi , kindly help to create a toolbar with that new , save , edit, cancel button , if i open each form to operate this buttons ,instead of placing in each form . regards manjesh
0
9688
marktang
by: marktang | last post by:
ONU (Optical Network Unit) is one of the key components for providing high-speed Internet services. Its primary function is to act as an endpoint device located at the user's premises. However, people are often confused as to whether an ONU can Work As a Router. In this blog post, we’ll explore What is ONU, What Is Router, ONU & Router’s main usage, and What is the difference between ONU and Router. Let’s take a closer look ! Part I. Meaning of...
0
9546
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
10491
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
1
10247
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows Update option using the Control Panel or Settings app; it automatically checks for updates and installs any it finds, whether you like it or not. For most users, this new feature is actually very convenient. If you want to control the update process,...
1
7571
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
6809
by: conductexam | last post by:
I have .net C# application in which I am extracting data from word file and save it in database particularly. To store word all data as it is I am converting the whole word file firstly in HTML and then checking html paragraph one by one. At the time of converting from word file to html my equations which are in the word document file was convert into image. Globals.ThisAddIn.Application.ActiveDocument.Select();...
0
5467
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
1
4146
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
3
2941
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.