Search results

  1. M

    Subforms freezepanes

    Hi there, I have searched on multiple forums and found it is not as easy as you expect it would be. I tried making this work with forms and subforms in the 'normal' way, but this does not allow me to make a 'sort of' freezepane effect as is possible in Excel. Attached is an example that i've...
  2. M

    A better "shell and wait"

    I hope you will find this information usefull. I use Outlook to receive reports and then automatically open the right access-database (with shell and command parameters) to process them. In my search for a way to stop my Outlook-code with processing untill the access-database has closed, and...
  3. M

    SendObject Help please!

    It looks like a Bound-Column thingie. Try looking at the "Bound Column" at the List-Box properties on the form. This should be bound to the column in which you have the text you want. If this is not possible you can always query for the text. m0use
  4. M

    outputto challenge

    Re: outputto challenge closed Right on Gemma!!! Great, this works. Usually i just overwrite the snapshot but now i kill it and then do as you suggested with the while-loop. Still strange that I have to do it this way, but it does not seem to slow the processing down. Hardly notice it. Thank...
  5. M

    outputto challenge

    Tinh, Thanks for your suggestion, but this also does not seem to work. Still searching...
  6. M

    outputto challenge

    John, Thank you for your suggestions and support, it is much appreciated. I will keep on searching for a neat solution. As soon as I find it I will update this post for others who experience the same. So, the challenge is still open... and I still don't get it... Thx, m0use Edit: Tried...
  7. M

    outputto challenge

    Putting the code into a module is how this started. (I usually put all my custom code in modules.) So I'm sorry to say that is not working either. FYI, i'm using Access 2003 on WinXP Pro. With the workaround I mentioned it runs ok for now, but I really do not like this way of programming...
  8. M

    outputto challenge

    My code is in the form_open event. But that is not the problem because it works when i manually open the form. Strange... As a workaround I now made a new form in which i put the second outputto and i open it as hidden after the first outputto. This seems to work, but it not the way it should...
  9. M

    outputto challenge

    Thank you for your reply. There is always data in the reports. And the funny thing is that when I open the dbase with "shift" and I open the form in which i have the outputto code it will also work. So, it does work when the i put it in a button script and it does work when i "shift"-open the...
  10. M

    outputto challenge

    Hello, In VBA I'm trying to export 2 reports of my dbase as snapshots to a folder where users have access to. The code I use: DoCmd.OutputTo acOutputReport, "whatever", acFormatSNP, "T:\whatever.snp" DoCmd.OutputTo acOutputReport, "whatever_1", acFormatSNP, "T:\whatever_1.snp" The...
  11. M

    Refreshlink to multilingual Excell-sheet

    Case solved: I've been overlooking .SourceTableName = "Sheet1$" or whatever you want it to be... The following is the case: At our office we have users which use English and Dutch systems and office software. They pull data out of another system and export it as an Excel-sheet which gets...
  12. M

    SubReport HasData Problem

    Have you tried: =IIf([Reports]![NewStockMonthTotal].[HasData]=False,1,0)...? This seems to work for me! m0use
  13. M

    SubReport HasData Problem

    Jv2 try the following: =IIf([Reports].[....].[HasData] etc... Greetz, m0use
  14. M

    Another Regional Options/Settings 'problem'

    Hello readers, How it (my dbase) works: I have build a routine that automatically updates the starting database when another database with a name starting with: "UpdateV" + (text-field value) is found in the same folder. (Or you can browse to it through a interface...) It then checks a table...
  15. M

    Comboboxes and regional settings

    Thank you Chris, this solves my problem.
  16. M

    Comboboxes and regional settings

    I want my database to recognize which regional settings are set on the machine it runs on. That way I can programmatically change from Inches to Centimeteres or the other way around. Otherwise every user of the database has to have the same regional settings.
  17. M

    Comboboxes and regional settings

    Hi, I have a problem with regional settings and programming the ColumnWidths of a Combo Box. I already posted this thread at the Forms forum however no-one there seems to know the solution to this challenge: My challenge: The company I work for is located in Europe and normally set the regional...
  18. M

    Combo boxes and regional settings

    Hi, I have a problem with regional settings and programming the ColumnWidths of a Combo Box. The company I work for is located in Europe and normally set the regional settings of Windows to the Metric system. However, users in the UK use Inches instead of Centimeters. In my database i program...
  19. M

    Password Question

    Hello asnyder, Try using OpenArgs while opening the next form with DoCmd.OpenForm. m0use
  20. M

    Creating relations between tables in VBA

    Thanks SpacePro. This will help me get on with my dbase. (Build bridges, not walls!!!)
Back
Top Bottom