Recent content by tkepongo

  1. T

    Convert Access 2010 to an EXE File

    Doesn't Access 2010 have a way to publish the forms onto a web browser?
  2. T

    Schedule Appointments in Outlook using Access?

    Is it possible to schedule meetings/appointments with outlook contacts in Access 2007? I've tried Google but a lot of the results are about using Outlook instead of Access 2007. I don't need it to schedule resources (such as a conference room) or a specific meeting time. I just need it to send...
  3. T

    Access 2007 to Mobile/Tablet App?

    Interesting...so maybe something like Asus MyCloud? That sounds really tempting but IT will probably stomp on that idea.
  4. T

    Access 2007 to Mobile/Tablet App?

    So what are the disadvantages of building a web app? Would there be a significant constraint using HTML5 as opposed to using Windows Forms?
  5. T

    Access 2007 to Mobile/Tablet App?

    So this would essentially be a web app using HTML 5, C#, and whatever right? Which means that Android and other devices can display it in the web browser? Or would it actually be an app installed on the device?
  6. T

    Question Need to build a database ?

    Before jumping into the forms, you really need to figure out what tables you need and how they're going to relate to each other. From the pictures that you' posted, it looks like Attachment 1 can relate to Attachment 2 and Attachment 3 by the Artikel-Nr or Auftrags-Nr or the Kundenaugrags-Nr (it...
  7. T

    Access 2007 to Mobile/Tablet App?

    I don't know where else to post this question so forgive me if I placed it in the wrong topic. I have an Access 2007 application with some pretty complex VBA code, subforms, forms, SQL Server back-end, etc. If I was to recreate this Access 2007 application to a mobile/tablet app (Android or...
  8. T

    Enter Key acts like a Tab Key

    I have a subform that is a data entry form and I read on some other forums that when you press Enter, it will act like a Tab key and move to the next field. I want to program a textbox so that when you do press the Enter key, it will fire some code. I can't get it to work because Access sees it...
  9. T

    Yes/No Format where Table Data Shows '1' or '2'

    Yes and it works now. Thanks!
  10. T

    Yes/No Format where Table Data Shows '1' or '2'

    So how do I subtract 2 from the field? Subtract it in the table or by some kind of Event Procedure?
  11. T

    Yes/No Format where Table Data Shows '1' or '2'

    Hi there, A linked table is showing a field with either a '1' or a '2' for Yes/No. In my report, I set the format to Yes/No. When I run the report, all the records displays a 'Yes' regardless if the data is a '1' or a '2'. Does anyone have a quick solution to properly format it to display a...
  12. T

    Calculated Field Not Correct

    I used the Format event and it works. Thank you everyone!
  13. T

    Calculated Field Not Correct

    In my report, there is a textbox that displays the Buyer's name for a purchase order. The Buyer's name is determined by the first two digits of the purchase order number. Dim Buyer As String Buyer = Left(Me.PurchaseOrder, 2) If Buyer = 23 Then Me.txtBuyer = "Buyer1 Name" End If If Buyer =...
  14. T

    Continuous Form: Hide/Unhide and Arrange Columns

    Does anyone know if it is possible to have a button that will hide/unhide columns in a continuous form and rearrange them? For example Current Continuous Form |Column1||Column2||Column3||Column4||Column5||Column6| Then when you click a checkbox or something, it looks like...
  15. T

    Netflix-like Queue for Form?

    Sorry it took awhile to get back, but I found a solution! So I decided to use a continuous form and add a SortOrder column instead of creating another table. My continuous form displays the questions associated with the Audit_ID and has an UP and a Down button for each record. The buttons...
Back
Top Bottom