Bill-
Thanks.
Best Regards,
Kevin
Life has an uncanny way of responding to your need.
在 "wrmosca@comcast.net [MS_Access_Professionals]" <MS_Access_Professionals@yahoogroups.com>,2016年4月12日 上午5:19写道:
Kevin
So your code is doing what could be done with a bound form from what I can see. It seems like a long way around, but if it works for you and you are happy with it then go for it.-Bill
---In MS_Access_Professionals@yahoogroups.com, <zhaoliqingoffice@163.com> wrote :Bill-Here's the code on the command button:Public Sub Command64_Click()
On Error GoTo ErrHandle
Dim strSQLONE As String
strSQLONE = "UPDATE tblPartItineraryCityTour " & _
"SET [HotelDistanceToCityCenter] = " & Me.Parent.HotelDistanceToCityCenter & ", " & _
"[HotelCategoryID] = " & Me.Parent.HotelCategoryID & ", " & _
"[HotelStarID] = " & Me.Parent.HotelStarID & _
" WHERE PartItineraryCityTourID = " & Me.PartItineraryCityTourID
CurrentDb.Execute strSQLONE, dbFailOnError
Dim db As DAO.Database
Dim rs As DAO.Recordset
Dim strSQLTWO As String
Set db = CurrentDb
strSQLTWO = "DELETE * FROM tblPartItineraryCityTourRoom " & _
"WHERE PartItineraryCityTourID = " & Me.PartItineraryCityTourID
db.Execute strSQLTWO
Me.Refresh
strSQL = "INSERT INTO tblPartItineraryCityTourRoom ( RoomTypeID, NumberOfRooms, PartItineraryCityTourID ) " & _
"SELECT tblGroupBookingRoom.RoomTypeID, tblGroupBookingRoom.NumberOfRooms, " & _
Me.PartItineraryCityTourID & " AS PartItineraryCityTourID " & _
"FROM tblGroupBookingRoom " & _
"WHERE tblGroupBookingRoom.GroupBookingID = " & Me.Parent.GroupBookingID
CurrentDb.Execute strSQL, dbFailOnError
Me.Refresh
ErrExit:
Exit Sub
ErrHandle:
Resume ErrExit
End SubBest Regards,KevinDate: 2016-04-08 23:08Subject: [MS_AccessPros] Re: After running this code, the form keeps blinking without stop.Kevin
I'm curious. That code seems like overkill. Can you explain what clicking the command button does?Regards,Bill Mosca, Founder - MS_Access_Professionalshttp://www.thatlldoit.comMicrosoft Office Access MVPhttps://mvp.microsoft.com/en-us/PublicProfile/35852?fullName=Bill%20%20MoscaMy nothing-to-do-with-Access bloghttp://wrmosca.wordpress.com
---In MS_Access_Professionals@yahoogroups.com, <zhaoliqingoffice@163.com> wrote :Dear All,My problem is solved. Thanks.I changed the "Me.Requery" into "Me.Refresh" in the Public command button.Best Regards,KevinDate: 2016-04-08 14:30Subject: [MS_AccessPros] After running this code, the form keeps blinking without stop.Dear All,After running this code, the form keeps blinking without stop. Please help.On Error GoTo ErrHandle
Dim rst As DAO.Recordset
Set rst = Me.subRoomUpdate.Form.Recordset
rst.MoveFirst
Do Until rst.EOF
Call Me.subRoomUpdate.Form.Command64_Click
rst.MoveNext
Loop
Set rst = Nothing
ErrExit:
Exit Sub
ErrHandle:
Resume ErrExitBest Regards,Kevin
__._,_.___
Posted by: zhaoliqingoffice <zhaoliqingoffice@163.com>
Reply via web post | • | Reply to sender | • | Reply to group | • | Start a New Topic | • | Messages in this topic (7) |
.
__,_._,___
Tidak ada komentar:
Posting Komentar