Search results

  1. M

    Report to rtf- Right to left formatting

    :banghead: Thanx nayway;)
  2. M

    Report to rtf- Right to left formatting

    Tried uploading again. Did it work this time? No, Won't upload a RTF. I'll convert to Doc. OK, maybe now? Seems fine. TIA!
  3. M

    Print Report, disable restore button. Inconsistencies.

    Hi, I think you now have no close button either. Try changing the From's Control box property to 'Yes'
  4. M

    IIf with two true values

    Hi, Use a nested IIF function: IIF(IsNull (Date),Null, IIF(date=...,X,Y)). BTW, Date is a saved word, better practice to give your Variables/fields/Controls other names.
  5. M

    Report to rtf- Right to left formatting

    Hi all you experts! A client wants to convert a report I designed for him, to a word document so he can edit it. The report's Report.Orientation Property is set to 1 - Right-to-Left Relevant TextBox.ReadingOrder Properties set to 2 - Right-to-Left, and relevant TextBox.TextAlign Properties...
  6. M

    Copy and paste. The final piece of the jigsaw!

    Hi, Pardon my question: e-mail subject is a string value. Are you asking how to to set values to a string? Please focus on the complications: how do you send the e-mail, witch object do you use? where is it declared? where is subject located? where in the form do you take the ID value from...
  7. M

    Creating an ID with text and autonumber

    That should have bin: RO Number: "RO" & Cstr(30000 + my_RO)
  8. M

    Creating an ID with text and autonumber

    Hi, As far as I know, Access table doesn't support having a string in auto-increment field, nor starting it from a seed other than Zero (or 1). What I would do is expose to the external system a query on the table: the table will have a regular auto-increment field (call it 'my_RO'), the...
  9. M

    Import PDF into table

    Hi, Don't know much of these file formats, but my short experience tells me getting data from a pdf never gave me good results. XBRL is an XML type (you should read about before start using), sounds like a good place to start with. Good luck!
  10. M

    How to check positioning of text in VBA?

    Thank-you, I saw your method is better and deleted my post...
  11. M

    Save unbound fields to table

    Hi, You could also link the field to the table field, and have the After_Update event in the last field to be updated that is used by your calculation update the value of the TextBox using Macro or simple VBA. But, as Gina above has said, Why Save a calculated field? in similar cases I have...
  12. M

    Is it possible to create simple web service with vb6/vba access 2003

    Hi, Create a WS? I would like to learn how to consume a WS in ACC2003... Thanks!
  13. M

    Can I overwrite tables in with a new one

    Glad I could help!
  14. M

    Open file dialog/control needed

    Here is code I found on the web, no ActiveX, no link. Pure Win API. Put it in separate module (known around the web by the name 'basBrowseFiles'), and use according to terms. Option Compare Database Option Explicit '.=========================================================================...
  15. M

    Import multiple Excel Sheets to one new table

    Hi, You can maybe link to the excel instead of Importing it to a temp table. You avoid the 'Import Errors' tables, and can cast the data to your needs (Cint(), Cdate(), Cstr() etc...)
  16. M

    Can I overwrite tables in with a new one

    Hi, I hope I understand your question, you can delete a table using the 'delete' button (or other ways), and import other tables to you DB. Did I get you right?
  17. M

    NOW() & DATE() functions in web tables

    I too have have just moved from Acc2003 to 2010, but still run mdb files in this environment. I really mean a bit!... what I saw in Acc2010 is that these tables offer calculated fields in the table level, you don't have to create a view (Query) for calculating data. I've seen this ability...
  18. M

    export by date

    Hi, It seems to me that [Receive_Date] is assumed to be a field in the report. If it isn't, you should put there a name of a field from the report. 'Month' too, is from the function 'Len(Month & '')', and assumed to be a field in the report. (BTW, why concatenate an empty string to a string?)...
  19. M

    NOW() & DATE() functions in web tables

    Hi again, I too have never seen web tables before... so I looked into them a bit: 1. Your condition is really IIf. 2. As you have stated, DATE() and NOW() functions are not compatible with web tables, neither is datediff. As RainLover has stated, you can use these functions in a query. If the...
  20. M

    NOW() & DATE() functions in web tables

    Oh, and I think your function should be IIF(), not if().
Back
Top Bottom