Search results

  1. E

    Thin Client solution helppp!!!!????

    G'd afternoon, I'm still waiting your feedback here Thin client solution
  2. E

    Help with revision control

    G'd afternoon, You may be looking for something like this Project Management Software
  3. E

    Slow searches after update to 2010 data

    G'd afternoon, I have to ask this: did you compact & repair your db? Did you notice the difference in size? Copy your db locally and verify that in fact the problem is your db and not the server/Lan
  4. E

    Question Importing txt into access

    G'd Afternoon, You don't need to do that. MS Access already have a wizard to do that. Ribbon-->External Data-->Import & Link-->text file. G'd luck
  5. E

    Where is my shortcut menu?

    G'd afternoon, As far as i know, you can't disable just the "half". When you do disable "Full menus" you should supply your own context menus.
  6. E

    ADP - Maximum Users

    G'd Afternoon, I supposed that the idea to split a database is to gain several benefits, such as Improved performance , greater availability, enhanced security etc.. Why not a FE for each one? What do you gain with a shared file?
  7. E

    Sporadic 3734 error and You do not have exclusive access Error

    G'd morning Ions, I don't know if this will help but, try to convert your project to accdb, check for external resources such as images, files, dlls and activex controls. Try to identify if it always happens with the same object (form/report/module) Try in another PC and see what happens. G'd...
  8. E

    Question How to use Northwind 2010

    G'd morning! Sorry to disapoint you, but absolutely no. Almost all MS Access Templates and demos are the worst place to start learning. About the manual... well, i think you're on your own. There used to be an online manual for Northwind 2k created by MS, but was removed long time ago. But the...
  9. E

    Navigation Pane hides new queries & reports

    G'd morning Martha, I won't answer your question, instead i'll ask you to give us more info. It is happening with all your dbs or just that one? What access version you have? If you have Access 2k7 or 2k10 go to: File-->Options-->Current Database and look for the navigation options button. There...
  10. E

    Embedding Icons instead of paths

    G'd morning Steven, The easy way is to distribute your db with your icon. Another way is to store your icon in a table extract it to any given dir and the set it as your app. icon. To set the app icon from code something like this will do it: Private sub SetAppIcon() Dim db As Database Set db...
  11. E

    Attachment Icon Picture

    G'd morning Ray, I guess that you're out of luck. It seems like the attachment properties just has three options and none of them let you do what you need. Being say that, i think that you can mimic that behavior with a text box and an image control. G'd luck Estuardo
  12. E

    Question Problem using MS Access with Windows server 2003

    G'd Morning! That's kind of weird... the obvious steps to take is to verify that you, in fact are connected to your remote db and not adding rows to local tables. If you set up the Server as a domain controller you should check your permissions. G'd luck Estuardo
  13. E

    ToolTip Demo

    About this Demo Some time ago i had the need to display information with the access controltip but no matter what kind of information i wanted to show the format was always the same. I start to look for a tool to improve this behavior... and i found it. It was developed by S. Lebans. The...
  14. E

    INSERT INTO msaccessTable from a SQL Server

    G'd Evening Darbid, In your query i see no WHERE criteria, so it seems like there is a batch insert not a row by row process. am i missing something?
  15. E

    equivalent to a continous form

    G'd evening! You also may want to try a datagridview. G'd luck
  16. E

    Please help me Connect Access 2007

    G'd evening! I see that this is an old post with no reply. I guess this happens because the project was built with 3rd party controls, and may be people willing to help could't even open the project. For the eventual readers, the problem in fact was the connection string: "Provider...
  17. E

    connect to access 2003

    G'd evening Sunshine, I'm not aware that the read only mode can be set at connection level. You may use the workgroup security, the windows explorer security, a protected form, etc. To avoid the "open exclusively" issue split your db (FE and BE) so you redistribute localy the FE. G'd luck
  18. E

    binding a combobox to a dataset and value changes appropriately for current record

    G'd Evening! Joe: When you bind your txtboxes you can bind your combobox as well. You just have to be sure that it is populated before binding. Then you can do something like this: Me.cboYourCombobox.Value = CInt(YourObject("YourTableField")). YourObject is anything that supports the IEnumerable...
  19. E

    help

    ppoole16 I pass the parameters to the query, and remove it from the filter. it seems to be working... --- I'd try to upload the file but it's said i have no authorization. any ways. I just remove the report's filter in the form. Now the code behind your button is: DoCmd.OpenReport...
  20. E

    Need help designing a SURVEY results-only database

    Fizzio: I see your point, and you're right. What would you suggest? This duplication, and denormalization, is somethng that i just dind't saw. What about adding a tblStudent and stablish the relation with the tblQuestions? What do you think? how woud you do it? create new structure? Regards...
Back
Top Bottom