Search results

  1. E

    Controlling built-in functions like Save & Delete

    Hi. forgive me, this might be a newbie question but I'm very new to MS Access still. I'm building a small application for myself and in order to give myself a small challenge I decided I'd create my own set of navigation and operation buttons that would be used in all my forms as a sub-form...
  2. E

    Making an Access application bilingual

    Hello there, I'm currently developing an MS Access 2002 application that I'd like to be bilingual. I'm used to making bilingual stuff but for websites and I find it quite different to do it efficiently when dealing with forms. Currently, I have tried to use a web technique and convert it for...
  3. E

    Problem opening a recordset ...

    Here's a part of the function I'm doing : (I'll explain prob after) Private Sub Load_Association_Labels() Dim objXML As MSXML2.DOMDocument40 Dim objStream As ADODB.Stream Dim objConn As ADODB.Connection Dim objRS As ADODB.Recordset Dim strSQL As String Set objConn = CurrentProject.Connection...
  4. E

    Hiding a form on startup

    Hello, first, I must apologize, I'm sure this topic has been covered in the past but wasn't able to find an answer using the search engine so I resorted to posting about it, forgive me if this topic already exist ... somewhere.... buried ... :rolleyes: I'm building a BE/FE system. one of...
  5. E

    Access can't find my code ???

    Here's an error i keep getting with my Access database (see screenshot) In the screenshot, it occurs for the onload event of the mainform but every single button in the footer triggers the same error. I can't understand why its doing that. I've tried putting a breakpoint in the code to see...
  6. E

    SQL window default font...

    Something that has been bugging me for a long time is the inability to modify the SQL window default look. I mean... its so small and difficult to build any good SQL with that window. is there *any* way to put my own font in there ?? Now, I ain't talking about datasheet, I know this one can...
  7. E

    I know RunSQL is for action query but is there....

    I know RunSQL is for action query but is there some kind of workaround to receive a value from a saved query ? Surely you guys get this question often, maybe its a sign that MS should give us that darn function :) I've made this query : SELECT IIf(IsNull(Max(ID)),0,Max(ID))+1 AS MaxID FROM...
Back
Top Bottom