Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Recent content by patriciaxxx

  1. patriciaxxx

    ms access 2003 disable / enable greyed out menu options in mde database window

    Hi Duane It was something I was pursuing but having further researched it I believe your comments to be spot on. Sorry for any inconvenience and thank you for taking the time to answer.
  2. patriciaxxx

    ms access 2003 disable / enable greyed out menu options in mde database window

    Hi Duane When you convert an MDB to an MDE several changes are made, among them are Form and Report menu options are greyed-out and the wizards for creating new Forms and Reports are removed. It is indeed possible to reverse this behavior making those MDE Form and Report menu options NOT...
  3. patriciaxxx

    ms access 2003 disable / enable greyed out menu options in mde database window

    How can I use vba code and presumable some api to disable / enable all greyed out menu options in ms access 2003 mde database window? So that I can make and save changes in design view to forms and reports and create new forms and reports. I know vba code will not be accessible but that isn’t...
  4. patriciaxxx

    SW_HIDE and Access popup modal form resize event image flicker

    Hello strongm, thankyou for replying and thank you for all your help and advice both now and in the past. As always it’s much appreciated.
  5. patriciaxxx

    SW_HIDE and Access popup modal form resize event image flicker

    Hello strongm > why do you need to hide the application window I trying to develop a db which opens a popup modal form that places its own button in the taskbar and hides the Access window in the process, which is the look that’s requested for this project. The only stumbling point has been...
  6. patriciaxxx

    SW_HIDE and Access popup modal form resize event image flicker

    > The point is that you are still hiding the button. My question is why do you feel you need to do that? I did answer that and also tried to explain what I was doing here: So the main thing is I’m really trying to make the app window hidden, the button thing came about because it didn’t look...
  7. patriciaxxx

    SW_HIDE and Access popup modal form resize event image flicker

    Hello strongm, thanks for replying > why do you need to hide the Access application button whilst the form is showing To be honest and especially having read your explanation, the button approach is no good. It was a poorly thought out alternative to the invisible application window. If I...
  8. patriciaxxx

    SW_HIDE and Access popup modal form resize event image flicker

    Hello strongm and thank you for your reply I have been struggling to solve this flickering for days without success. If some extended windows style for the form won’t solve it and there’s no other way to show the app window invisible that won’t cause flicker then I have only one idea left but I...
  9. patriciaxxx

    SW_HIDE and Access popup modal form resize event image flicker

    With Access 2003 / WinXP I can resize the form / image without flicker (see Form2 in example). But when I hide the Access application window and try the same thing the image flickers (see Form1 in example). Trying to understand and solve the problem I notice the same flicker problem was...
  10. patriciaxxx

    Show Access app window but hide its taskbar button

    I have an Access 2003 db on win XP. I’m trying to write code that will allow the Access application window to remain visible whilst hiding its taskbar button. To clarify, if necessary, the Access application window visible is its natural state and I don’t want to change that. I just want to...
  11. patriciaxxx

    VBA three dimensional array of unknown size

    hank you Andrzejek I will take a look and try to work it out.
  12. patriciaxxx

    VBA three dimensional array of unknown size

    I currently have three single arrays working but I would like to replace them with one 3 dimensional array. I have been trying without success for hours. Here is the working code for the three arrays: I need the code to achieve the same thing but using one 3 dimensional array instead of the...
  13. patriciaxxx

    On click navigate to url using webbrowser control

    I’m using MS Access 2003 with the WebBrowser control on my Form. When I click command button ‘cmdGo’ the code is supposed to navigate to the ‘URL’ replacing the variables with the values from the appropriate controls on the form. When the page has loaded it should return the ‘result_box’ inner...
  14. patriciaxxx

    Using Dllregisterserver Entry Point in function with success failure returned

    >the CallWindowProc is the important hack that allows you to run a function in a DLL - so if LoadLibrary (and GetProcAddress) both succeed, then you need CallWindwoProc (or CreateThread, but that's a more complex call) to run the function Thank you for taking the time to reply to my question...
  15. patriciaxxx

    Using Dllregisterserver Entry Point in function with success failure returned

    >Check the value of lb. If it is 0, then LoadLibrary failed. Spot on. Thank you. Am I correct in thinking then that the following and all related code is not needed in my example? Private Declare Function CallWindowProc Lib "user32" Alias "CallWindowProcA" (ByVal lpPrevWndFunc As Long, ByVal...

Part and Inventory Search

Back
Top