Recent content by arnelgp

  1. arnelgp

    How Sql Server can interact with Microsoft Access (or other application) ?

    from Copilot answer. you can add "trigger" to your sql server when a record is modified or added. like creating a record on the audit trail table on your sql server. on ms access part, again from CoPilot: MS SQL Server cannot directly “push” notifications into Access when a linked table...
  2. arnelgp

    Rotate an image

    vhung see the two new form.
  3. arnelgp

    Currency from US$ to GBP

    you can also Save the Current Exchange rate of US$ to GBP to your table. then using Query, you can Compute the Conversion of each field.
  4. arnelgp

    Rotate an image

    as suggested by Jason Hayes (no Timer Event).
  5. arnelgp

    Rotate an image

    here is a video of the db run on Windows 10 x32 and Ms Access 2016 x32 on Virtual Machine. i already modified the Registry keys.
  6. arnelgp

    Rotate an image

    Vhung, you need to Edit the Registry (Registry Editor)so that the Logo will Rotate and Zoom. If you have x32 bit Windows edit this registry setting: HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\Internet Explorer\Main\FeatureControl\FEATURE_BROWSER_EMULATION If your window is x64 bit...
  7. arnelgp

    Query with heading and row and listing

    see Query1. note that you can only have 255 columns on your table/query.
  8. arnelgp

    Rotate an image

    add Zoom In, Zoom Out effect.
  9. arnelgp

    Rotate an image

    what version of MS Access do you have? this is the result you will get:
  10. arnelgp

    Rotate an image

    is that legal? rotating your municipal logo. anyway, check first your lgu if that is legal. i am using webbrowser control to rotate your logo (only 1 logo is enough). open form2.
  11. arnelgp

    Solved VBA Database.Execute("CreateTable...") - Table created in CurrentDB, not the specified DB

    sample code: ' valid create table sql sql = "CREATE TABLE Employees (" & _ "EmployeeID AUTOINCREMENT PRIMARY KEY, " & _ "FirstName TEXT(50), " & _ "LastName TEXT(50), " & _ "HireDate DATETIME, " & _ "Salary CURRENCY)"...
  12. arnelgp

    Solved Interesting QUERY problem

    you said you already has a resulting query? you only want to group them? create an Expression on your original 90 days query: Expr1: Date() - InitialDate now create new query to add the Group: SELECT [90daysQ].ID, [90daysQ].InitialDate, [90daysQ].FN, [90daysQ].LN...
  13. arnelgp

    Solved Report Sent to Printer?

    the code came from Ai. first the printer must be set (default) to a real printer (not pdf). you open the Report in Report View and there is a "little" button that user can click if he want to Print or Save to PDF. Open ReportDemo1 in Report View.
  14. arnelgp

    Pat Hartman has left the building

    there is an old Chinese story: a Chinese man complains to the court: "me no come" "wife no come" "baby come, how come?"
Back
Top Bottom