473,473 Members | 1,844 Online
Bytes | Software Development & Data Engineering Community
Create Post

Home Posts Topics Members FAQ

How to change focus to Excel from Access application

126 New Member
Hello everyone, I am trying to display a message box whenever a user selects a cell within the given following range using the following Access VBA code.

But, my problem is the MsgBox is displaying on access application i.e., whenever I click a cell within the given following range, I have to switch to access to see MsgBox.

Does anyone know how to change the focus to excel application so that I can see the MsgBox on excel application itself?

Thanks in advance!

Expand|Select|Wrap|Line Numbers
  1. Private Sub AppWS_SelectionChange(ByVal Target As Range)
  2. With AppExcel
  3. If Not .Intersect(Target, .Range("B:X")) Is Nothing Then
  4. .ScreenUpdating = False
  5. MsgBox "You cannot modify cell"
  6. .Range("A1").Select
  7. .ScreenUpdating = True
  8. End If
  9. End With
  10. End Sub
Jul 30 '08 #1
37 21872
puppydogbuddy
1,923 Recognized Expert Top Contributor
Hi JFKJr,
Try using >>>> .Visible = True

between lines 2 and 3. That should give Excel the focus.
Jul 30 '08 #2
JFKJr
126 New Member
Hi JFKJr,
Try using >>>> .Visible = True

between lines 2 and 3. That should give Excel the focus.
Hello puppydogbuddy, I inserted ".Visible = True", but the MSgBox is not displaying on excel. I need to switch to Access in order to see the MsgBox :-(
Jul 30 '08 #3
puppydogbuddy
1,923 Recognized Expert Top Contributor
Hello puppydogbuddy, I inserted ".Visible = True", but the MSgBox is not displaying on excel. I need to switch to Access in order to see the MsgBox :-(
That should have worked.....maybe it didn't because you set screen updating = False on line 4....so that would be my next thing to try. In addition to setting .Visible = True; change line 4 to: .ScreenUpdating = True; and comment out where you have the same statement on line 7.
Jul 30 '08 #4
puppydogbuddy
1,923 Recognized Expert Top Contributor
PS: I forgot to ask and don't remember if you mentioned this....How are you running the excel code from Access....are you running the code behind an Access form? If so, you need to set the form's visible property to False and then switch it back.
Jul 30 '08 #5
puppydogbuddy
1,923 Recognized Expert Top Contributor
PS: Also, make sure your workbook has been activated, not just the application, so you need :
xlWB.Activate (or worksheet) before your with and end with statements if the workbook itself has not been given focus before you call the message box.
Jul 31 '08 #6
JFKJr
126 New Member
PS: Also, make sure your workbook has been activated, not just the application, so you need :
xlWB.Activate (or worksheet) before your with and end with statements if the workbook itself has not been given focus before you call the message box.
Hello Puppydogbuddy, thank you for all your suggestions.

1. The following is the code with the changes you mentioned, but somehow the code is unable to set focus on excel application and I need to switch to access in order to see the MsgBox.

Expand|Select|Wrap|Line Numbers
  1. Private Sub AppWS_SelectionChange(ByVal Target As Range)
  2. AppWB.Activate
  3. AppWS.Activate
  4. With AppExcel
  5. .Visible = True 
  6. If Not .Intersect(Target, .Range("B:X")) Is Nothing Then
  7. .ScreenUpdating = True
  8. MsgBox "You cannot modify cell"
  9. .Range(LastCell).Select
  10. End If
  11. '.ScreenUpdating = True
  12. End With
  13. End Sub
2. And, the following are the steps I followed to run an excel application through Access VBA:

a) Created a macro, which opens an excel file.
b) Attached events to the excel file by using "WithEvents" keyword.
c) Created a new class module and defined the excel events (the above code is one of the event I defined in the module)

Please kindly let me know if any questions.

Thanks!
Jul 31 '08 #7
JFKJr
126 New Member
P.S:- The following is an article I found on the internet. Please have a look at it:
http://www.cpearson.com/excel/ActivateExcelMain.aspx

I have pasted the code of the article in an Access VBE module and when I try to run the code from outside VBE, it is not activating the excel application, which is already opened.

Please give me any suggestions on the problem above or any other alternatives to activate excel application through Access VBA.

Thanks!
Jul 31 '08 #8
puppydogbuddy
1,923 Recognized Expert Top Contributor
I will look at the article later today as time permits. In the meantime, try changing MsgBox in line 8 to .MsgBox. My thinking is that you need the dot operator to designate that you want the Excel message box as a subordinate object to xlApp, otherwise you will get the Access message box function. Let me know.
Jul 31 '08 #9
JFKJr
126 New Member
I will look at the article later today as time permits. In the meantime, try changing MsgBox in line 8 to .MsgBox. My thinking is that you need the dot operator to designate that you want the Excel message box as a subordinate object to xlApp, otherwise you will get the Access message box function. Let me know.
Yes, you are absolutely right, to see the MsgBox on excel application I need Excel MsgBox. But how to designate Excel message box in Access VBA?

I changed the above line 8 to the following but it is giving me "Object doesn't support this property or method" error.

Expand|Select|Wrap|Line Numbers
  1. .MsgBox "You cannot modify cell"
Jul 31 '08 #10
puppydogbuddy
1,923 Recognized Expert Top Contributor
Yes, you are absolutely right, to see the MsgBox on excel application I need Excel MsgBox. But how to designate Excel message box in Access VBA?

I changed the above line 8 to the following but it is giving me "Object doesn't support this property or method" error.

Expand|Select|Wrap|Line Numbers
  1. [b]MsgBox "You cannot modify cell"
OK, forget the dot operator; try calling the msgBox function instead of using the native message box. The only difference is that the function is enclosed in parentheses (see below), and it should be accessible from both, Access snd Excel so that you don't have to switch.

Expand|Select|Wrap|Line Numbers
  1. MsgBox("You cannot modify cell")
Jul 31 '08 #11
JFKJr
126 New Member
OK, forget the dot operator; try calling the msgBox function instead of using the native message box. The only difference is that the function is enclosed in parentheses (see below), and it should be accessible from both, Access snd Excel so that you don't have to switch.

Expand|Select|Wrap|Line Numbers
  1. MsgBox("You cannot modify cell")
Hello puppydogbuddy, I figured out the problem, I used the following code to display the message on excel:

Expand|Select|Wrap|Line Numbers
  1. .ExecuteExcel4Macro "alert(""You cannot modify the cell values!"")"
Thanks anyway though!
Jul 31 '08 #12
puppydogbuddy
1,923 Recognized Expert Top Contributor
Hello puppydogbuddy, I figured out the problem, I used the following code to display the message on excel:

Expand|Select|Wrap|Line Numbers
  1. .ExecuteExcel4Macro "alert(""You cannot modify the cell values!"")"
Thanks anyway though!
Did you also try the function approach I suggested above? Does it work??
Jul 31 '08 #13
JFKJr
126 New Member
Did you also try the function approach I suggested above? Does it work??
Yes puppydogbuddy, I tried your code by using parentheses, but somehow the MsgBox is displaying on Access application!

I found the following code is the only way to display message on Excel using Access VBA:

Expand|Select|Wrap|Line Numbers
  1. .ExecuteExcel4Macro "alert(""You cannot modify the cell values!"")"
Although my purpose is solved now, if I want to include OK/Cancel or Yes/No buttons, I cannot do this using alert dialog box.

Let me know if you find any other alternatives to do so, I will be very much interested. Thank You!
Jul 31 '08 #14
puppydogbuddy
1,923 Recognized Expert Top Contributor
Yes puppydogbuddy, I tried your code by using parentheses, but somehow the MsgBox is displaying on Access application!

I found the following code is the only way to display message on Excel using Access VBA:

Expand|Select|Wrap|Line Numbers
  1. .ExecuteExcel4Macro "alert(""You cannot modify the cell values!"")"
Although my purpose is solved now, if I want to include OK/Cancel or Yes/No buttons, I cannot do this using alert dialog box.

Let me know if you find any other alternatives to do so, I will be very much interested. Thank You!
You can always run a message box macro as shown at the following link:
http://www.xlpert.com/toc.htm

After the web page comes up, scroll down to the bottom and click on the hyperlink>>> Learn Excel VBA By Index

then select the letter M from the index and scroll down to the Message Box macro code example.
Jul 31 '08 #15
JFKJr
126 New Member
You can always run a message box macro as shown at the following link:
http://www.xlpert.com/toc.htm

After the web page comes up, scroll down to the bottom and click on the hyperlink>>> Learn Excel VBA By Index

then select the letter M from the index and scroll down to the Message Box macro code example.
Hello puppydogbuddy, thanks for the article, but the "Message Box macro code example" displays the MsgBox on access application if I run the macro through Access VBA.

But, I would like to know is there any way to display the Message Box on excel application through Access VBA.

As I said in my earlier post, my problem is solved using alert box, but I will be very much interested to know if there is any ways to display Message Box on excel through Access VBA.

Thank You!
Aug 1 '08 #16
puppydogbuddy
1,923 Recognized Expert Top Contributor
Hello puppydogbuddy, thanks for the article, but the "Message Box macro code example" displays the MsgBox on access application if I run the macro through Access VBA.

But, I would like to know is there any way to display the Message Box on excel application through Access VBA.

As I said in my earlier post, my problem is solved using alert box, but I will be very much interested to know if there is any ways to display Message Box on excel through Access VBA.

Thank You!
The following lin is entitled ..How to create a message box in excel vba.

http://www.ehow.com/how_2101966_mess...excel-vba.html

see if that helps. If this does not work, I think that the problem is that you are using excel as the automation object under control of access when you need to be using Access as the automation object under control of Excel.
Aug 1 '08 #17
JFKJr
126 New Member
The following lin is entitled ..How to create a message box in excel vba.

http://www.ehow.com/how_2101966_mess...excel-vba.html

see if that helps. If this does not work, I think that the problem is that you are using excel as the automation object under control of access when you need to be using Access as the automation object under control of Excel.
The code in the article creates message box in excel vba, it doesn't display the message box on excel using Access VBA.

Looks like there is no way to display a message box on excel using Access VBA, anyway thanks for your help.
Aug 1 '08 #18
puppydogbuddy
1,923 Recognized Expert Top Contributor
The following link comes with a downloadable example. It indicates you can do what you want if you create a User Defined function (UDF) like the one shown below. Scroll down to the end to see message box example.

http://www.help-info.de/en/Visual_Ba...ng_example.htm


Excel's Visual Basic for Application can optionally display a Help button on a message box or input box function.

The following code snippet shows an example:

'----------------------------------------------------------------' Display a message box with a help button linked to a help topic'---------------------------------------------------------------- MsgBox "The 'Hello World' message for testing this function!.", _ Buttons:=vbOKOnly + vbMsgBoxHelpButton, _ HelpFile:=ThisWorkbook.Path & "\CHM-example.chm", _ Context:=20010
Aug 1 '08 #19
JFKJr
126 New Member
The following link comes with a downloadable example. It indicates you can do what you want if you create a User Defined function (UDF) like the one shown below. Scroll down to the end to see message box example.

http://www.help-info.de/en/Visual_Ba...ng_example.htm


Excel's Visual Basic for Application can optionally display a Help button on a message box or input box function.

The following code snippet shows an example:

'----------------------------------------------------------------' Display a message box with a help button linked to a help topic'---------------------------------------------------------------- MsgBox "The 'Hello World' message for testing this function!.", _ Buttons:=vbOKOnly + vbMsgBoxHelpButton, _ HelpFile:=ThisWorkbook.Path & "\CHM-example.chm", _ Context:=20010
Hello Puppydogbuddy, thank you very much for the article. But unfortunately the following message box is also displaying on access application. And I have to switch to access in order to see the Message Box.

Expand|Select|Wrap|Line Numbers
  1. MsgBox "The 'Hello World' message for testing this function!.", _
  2.     Buttons:=vbOKOnly + vbMsgBoxHelpButton, _
  3.     HelpFile:="C\CHM-example.chm", _
  4.     Context:=20010
Aug 1 '08 #20
puppydogbuddy
1,923 Recognized Expert Top Contributor
Hello Puppydogbuddy, thank you very much for the article. But unfortunately the following message box is also displaying on access application. And I have to switch to access in order to see the Message Box.

Expand|Select|Wrap|Line Numbers
  1. MsgBox "The 'Hello World' message for testing this function!.", _
  2.     Buttons:=vbOKOnly + vbMsgBoxHelpButton, _
  3.     HelpFile:="C\CHM-example.chm", _
  4.     Context:=20010
We are missing something because the message box shown in the picture is an excel message box. Did you download the sample file??
Aug 1 '08 #21
JFKJr
126 New Member
We are missing something because the message box shown in the picture is an excel message box. Did you download the sample file??
Yes, I downloaded the sample file and copied the "CHM-example.chm" file in C folder.

And when I run the code, I am able to see the message box with help button on access application and when I click the help button, it is opening the help file on access application itself.
Aug 1 '08 #22
puppydogbuddy
1,923 Recognized Expert Top Contributor
Here is a reference from Microsoft that confirms that you can call Excel functions from MS Access. I don't understand why it is not working for you.

http://support.microsoft.com/kb/198571
Aug 2 '08 #23
puppydogbuddy
1,923 Recognized Expert Top Contributor
Hi JFKJr,
One of the things we were missing....the Excel function has to be made "public" in order to be available to Access class modules. See this link:

http://bytes.com/forum/thread824120.html


I am confident that we are on the right track now. Let me know.
Aug 3 '08 #24
JFKJr
126 New Member
Hi JFKJr,
One of the things we were missing....the Excel function has to be made "public" in order to be available to Access class modules. See this link:

http://bytes.com/forum/thread824120.html


I am confident that we are on the right track now. Let me know.
Hello puppydogbuddy, I am not sure whether the above link is right for the problem we are having. The thread (link) is on "Date queries" and did not mentioned anywhere about public excel functions. Please kindly check the thread once again.

And, regarding making excel functions public, do you want me to define "MsgBox" as public excel function? if so could you please tell me how to do it?

Thanks,
JFKjr
Aug 3 '08 #25
puppydogbuddy
1,923 Recognized Expert Top Contributor
Hi JFKJr,
I could not find the link again.....fortunately, I made a copy of the pdf document and will try to enclose it here as an attachment. Note the use of public functions and worksheet functions in the examples.
Attached Files
File Type: zip hack61.zip (170.3 KB, 215 views)
Aug 4 '08 #26
JFKJr
126 New Member
Hi JFKJr,
I could not find the link again.....fortunately, I made a copy of the pdf document and will try to enclose it here as an attachment. Note the use of public functions and worksheet functions in the examples.
Hello Puppydogbuddy, thanks for the wonderful article!

The article shows how to use excel functions through Access VBA and the article demonstrates the display of MsgBox on "Access form" (i.e., the MsgBox is displayed on access application itself).

But in my case, I am opening an excel file through Access VBA and trying to display a MsgBox on "Excel Application".

Hope I did not confused you!

Please kindly let me know if I misunderstood anything.

Thanks.
Aug 4 '08 #27
puppydogbuddy
1,923 Recognized Expert Top Contributor
Hello Puppydogbuddy, thanks for the wonderful article!

The article shows how to use excel functions through Access VBA and the article demonstrates the display of MsgBox on "Access form" (i.e., the MsgBox is displayed on access application itself).

But in my case, I am opening an excel file through Access VBA and trying to display a MsgBox on "Excel Application".

Hope I did not confused you!

Please kindly let me know if I misunderstood anything.

Thanks.
I think you misunderstood. If you set up the Excel message box (which is an excel function) as a public function in access, you should be able to call it just like the excel IRR function and other excel functions, but accesswill still be the controlling application.

As previously stated, if you want excel to be in ccontrol of the message box (or other excel functions), then you need to boot the application up in excel and code access as the automation object, so that excell is the controlling application that calls on access, rather then access calling excel. Follow me?
Aug 4 '08 #28
JFKJr
126 New Member
I think you misunderstood. If you set up the Excel message box (which is an excel function) as a public function in access, you should be able to call it just like the excel IRR function and other excel functions, but accesswill still be the controlling application.

As previously stated, if you want excel to be in ccontrol of the message box (or other excel functions), then you need to boot the application up in excel and code access as the automation object, so that excell is the controlling application that calls on access, rather then access calling excel. Follow me?
Hello Puppydogbuddy, this is what I understood from the above post :

a) The only way to display MsgBox on excel application is, by booting the application up in excel and coding access as automation object.

b) And, I cannot be able to display MsgBox on excel application by making MsgBox as public function in Access VBA.

Please confirm the above statements and correct me if I am wrong. Thanks!
Aug 4 '08 #29
puppydogbuddy
1,923 Recognized Expert Top Contributor
Hello Puppydogbuddy, this is what I understood from the above post :

a) The only way to display MsgBox on excel application is, by booting the application up in excel and coding access as automation object.

b) And, I cannot be able to display MsgBox on excel application by making MsgBox as public function in Access VBA.

Please confirm the above statements and correct me if I am wrong. Thanks!
AFAIK, yes with this caveat.....you've unsuccessfully tried the public function route (with and without using Application.WorksheetFunction in Excel as shown in the examples) and you are still displaying the Excel message box in Access.
Aug 4 '08 #30
Stewart Ross
2,545 Recognized Expert Moderator Specialist
Hi JFKjr. In following the various threads you've posted with us, one of the themes that has emerged is launching Excel from Access under VBA automation, but trying then to make Excel and Access respond individually to different events - command buttons in Excel responded to in Access, Access functions called from Excel, and so on.

The code running in VBA automation is running in the application that launched it. If Access is using Excel as an automation server it can call Excel functions, as the links in the posts above show, but the code responsibility remains that of Access, not Excel.

When you launch Excel from Access under automation control and then expect user interaction with Excel you are into difficult territory, as the Excel application was instantiated by VBA code responsible to Access, but with Excel visible to users the Excel application is also asynchronously responding to user events outside of the Access application's control. For example, while Excel is visible the user may simply close the workbook altogether, leading to an object error in the Access code when it next tries to Access the Excel instance.

Although Excel was launched by Access the two applications don't directly communicate outside of the properties exposed by the Excel object model to the automation code - with one exception: through asynchronous event handling when the Excel application is declared WithEvents.

It is possible to declare custom events for the Excel workbook, raised in response to other events you may wish to signal between the two applications, which can then be responded to by the Access automation code accordingly. Otherwise, just as PDog has advised, to the best of my knowledge too there is no mechanism for Access code to be called from Excel when Excel is running as an automation server originated from Access.

Sorry to be less positive than usual here, but I think you may well find that the interactivity you require is not feasible using normal automation coding techniques which are really intended for tasks with a definable beginning, middle and end - opening Excel to do stuff, doing whatever stuff it is that needs done, then closing Excel after its done. It's a lot harder to do all this if you expect user interaction to take place as if Excel was running independently.

In my own Access/Excel applications I run ALL code from the Access VBA. I do not request or expect user interaction unless it is essential - e.g. if the Save As dialogue is needed. Otherwise I have Excel running in non-visible mode throughout.

If Excel is to be the primary application then using it to run Access as an automation server may well be a better way forward, but it runs the risk then of creating the mirror image problem - launching Access from Excel then expecting user interaction with Access outside of the Excel VBA environment.

-Stewart
Aug 4 '08 #31
puppydogbuddy
1,923 Recognized Expert Top Contributor
Hi Stewart,
That was an excellent and very well stated response.

pDog
Aug 4 '08 #32
JFKJr
126 New Member
Hi Stewart,
That was an excellent and very well stated response.

pDog
First of all, thanks to Puppydogbuddy and Stewart for all your valuable inputs.

But it is very sad to know that Microsoft doesn't have any feature to display a MsgBox on excel application using Access VBA unless I develop my whole tool in excel VBA and use Access as an automation server.

Well, I don't want to start from scratch again just to make a MsgBox display on excel application.

As I stated in my earlier posts, I am able to display an alert box (not MsgBox) on excel application using Access VBA with the following code:

Expand|Select|Wrap|Line Numbers
  1. .ExecuteExcel4Macro "alert(""You cannot modify the cell values!"")"
The above code solves my purpose, but it would have been much better if I have used MsgBox (With OK/ Cancel or Yes/No buttons).

Anyway, thank you very much, especially puppydogbuddy for spending your valuable time on trying to solve my problems.

Stewart and puppydogbuddy, you guys made a big contribution on developing my tool in Access VBA. I really appreciate your help. Thanks!
Aug 5 '08 #33
PianoMan64
374 Recognized Expert Contributor
First of all, thanks to Puppydogbuddy and Stewart for all your valuable inputs.

But it is very sad to know that Microsoft doesn't have any feature to display a MsgBox on excel application using Access VBA unless I develop my whole tool in excel VBA and use Access as an automation server.

Well, I don't want to start from scratch again just to make a MsgBox display on excel application.

As I stated in my earlier posts, I am able to display an alert box (not MsgBox) on excel application using Access VBA with the following code:

Expand|Select|Wrap|Line Numbers
  1. .ExecuteExcel4Macro "alert(""You cannot modify the cell values!"")"

The above code solves my purpose, but it would have been much better if I have used MsgBox (With OK/ Cancel or Yes/No buttons).

Anyway, thank you very much, especially puppydogbuddy for spending your valuable time on trying to solve my problems.

Stewart and puppydogbuddy, you guys made a big contribution on developing my tool in Access VBA. I really appreciate your help. Thanks!
Have you ever thought just to simply locking those cells programaticly?

That I think would be a much easier solution..

Hope that helps,

Joe P.
Aug 5 '08 #34
JFKJr
126 New Member
Have you ever thought just to simply locking those cells programaticly?

That I think would be a much easier solution..

Hope that helps,

Joe P.
Hello Joe, what do you mean by locking cells programmatically?

Could you please elaborate your solution?

I will really appreciate you help. Thanks!
Aug 5 '08 #35
PianoMan64
374 Recognized Expert Contributor
Hello Joe, what do you mean by locking cells programmatically?

Could you please elaborate your solution?

I will really appreciate you help. Thanks!
Where you simply specify in your worksheet which cells are protected and what cells can be edited. this way you do have to re-invent the wheel in order to keep people from modifying cells that you don't need to modify.

If you go into Excel and select Protect Workbook and then protect sheet, you can also specify a range of what is going to be protected and what is editable.

This should solve your problem and you don't have to have access display your messages for you because this will simply be an excel responding to an area of your workbook that is protected from editing.

Hope that helps,

Joe P.
Aug 9 '08 #36
DavidSl
1 New Member
I had a similar problem and found the best way to do this - if you don't want to, or it isn't appropriate to, use an input box (xl.inputbox) - is simply to shift the focus back and forth between excel and access to get your full access functionality from your msgbox.

It doesn't make your msgbox appear 'in' excel, but it does give you a msgbox that isn't 'hidden' in access with excel as the active window. If you need the msgbox functionality and the excel window open then this is probably the easiest way.

Expand|Select|Wrap|Line Numbers
  1. xl.Visible = False
  2. If MsgBox("I have a question for you", vbOKCancel) = vbOK Then
  3.  x
  4. Else
  5.  y
  6. End If
  7. xl.Visible = True
  8.  
Sep 17 '08 #37
Steven Kogan
107 Recognized Expert New Member
I ran into this problem as well. I automated Excel and the msgbox in Access would not show up. Instead it would be in the background and I had to click MS Access to see it.

To solve this I used AppActivate before the message box:

Expand|Select|Wrap|Line Numbers
  1.  
  2. AppActivate "Microsoft Access"
  3. MsgBox "Done"
  4.  
The message box comes up in Microsoft Access instead of Excel, but at least you can see it.
Dec 8 '10 #38

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

Similar topics

3
by: Pete | last post by:
Is there any possiblity of writing an Access or Visual Basic application that provides a method of sharing the window focus between Access and the Shell application? i.e....
5
by: Jason | last post by:
I am having some trouble manipulating Excel files. Currently I am trying to create and then close an Excel file/application with the following code. It works fine, except it leaves an EXCEL...
2
by: Gil | last post by:
can you set focus to the current access application through vba? lets say i tell access to open another application and that new application gains the focus and causes access to loose the focus....
0
by: Rico | last post by:
Hello, I have an Access application that requires Excel if the user wants to export information into Excel. Right now the code just traps an error if excel isn't installed on the target...
3
by: SAL | last post by:
Hi, I have Microsoft Enterprise Library 2005 installed on my local system. I'm developing in C# using Visual Studio 2003 IDE with framework 1.1. I am automating a process that will use a DLL...
1
by: Russ5102 | last post by:
Microsoft Access I need to change the focus from a "New Record" button back to the beginning field in a form. How can this be done. Currently the tab order ends on the "New Record" button and...
4
by: Jon Slaughter | last post by:
I've created some custom controls and forms that allow the feature to temporarily transfer focus to a control that has been entered by the mouse. Everything seems to work fine but the problem I...
7
by: farhaaad | last post by:
Hi everybody, I just wanted to know if i can make a form in excel (the same as access forms), so when i enter data in excel form it goes to a table in access ? I mean when i enter a value in a...
1
by: WackoZacho | last post by:
I've tried searching on Google and for other questions similar to mine, but all I get are results on how to use the LostFocus event or Deactivate, etc., but I'm under the impression each of these...
0
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,...
0
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,...
1
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...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...
0
agi2029
by: agi2029 | last post by:
Let's talk about the concept of autonomous AI software engineers and no-code agents. These AIs are designed to manage the entire lifecycle of a software development project—planning, coding, testing,...
1
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...
0
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...
0
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 ...
0
muto222
php
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.

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.