Unsire
  Home FAQ Contact Sign in
 
Advanced search
MATCHING GROUPS



more...
POPULAR GROUPS

more...

found 5 articles for 0.304 sec
On 2007-11-01, Mark South <mark.south@null.invalid> wrote: > On Thu, 01 Nov 2007 10:30:12 +0000, andrew wrote: > >> Running Slackware 12 I am trying to access a generic usb >> multi card-reader. This device appears to be detected during boot as >> seen in the section of dmesg that I quote below. However I cannot >> access this from xfce, it is not mounted automatically, and I am >> unsure     

Group: alt.os.linux.slackware · Group Profile · Search for Unsire in alt.os.linux.slackware
Author: andrew
Date: Nov 1, 2007 04:10

You must be using either Access 2000 or Access 2002. In Access 97 and earlier, the only method of communicating with the database was through DAO (Data Access Objects). Around the time of Access 2000, Microsoft introduced a new method call ADO (ActiveX Data Objects). While DAO was designed specifically to work with Jet databases (i.e. MDB or MDE files), for some reason they decided not to
Show full article (1.70Kb) · Show article thread
Can you explain what > Dim dbCurr As DAO.Database and > Dim qdfCurr As DAO.QueryDef mean? These two arguments are creating compile errors. If I comment them out, the script runs without a hitch, but I am afraid that this will nullify the solution to the problem. Other than that, I believe this is exactly what I was looking for. Thank You. "Douglas J. Steele" wrote:     

Group: microsoft.public.access · Group Profile · Search for Unsire in microsoft.public.access
Author: Douglas J. Steele
Date: Oct 11, 2007 09:44

You can't just use an End If. End If is the conclusion of an If statement. One option would be to use the Execute method of the QueryDef object, and then check how many records got appended by the query. Private Sub RunReport_Click() On Error GoTo Err_RunReport_Click Dim dbCurr As DAO.Database Dim qdfCurr As DAO.QueryDef Dim stDocName As String Set dbCurr = CurrentDb() Set qdfCurr
Show full article (4.75Kb) · Show article thread
I have never used "End If" before, but I think I need it in the following code: --------------------------------------------------------------------------------------- Private Sub RunReport_Click() On Error GoTo Err_RunReport_Click Dim stDocName As String DoCmd.OpenQuery "AppendConsumerTable" DoCmd.SendObject acSendReport, "ReplacementReport", acFormatSNP, "mfort@blitzusa.com"     

Group: microsoft.public.access · Group Profile · Search for Unsire in microsoft.public.access
Author: Jody
Date: Oct 11, 2007 09:08

Show full article (3.59Kb) · Show article thread
    

Group: microsoft.public.access · Group Profile · Search for Unsire in microsoft.public.access
Author: Douglas J. Steele
Date: Oct 11, 2007 06:55

Show full article (3.01Kb) · Show article thread
    

Group: microsoft.public.access · Group Profile · Search for Unsire in microsoft.public.access
Author: Jody
Date: Oct 11, 2007 06:22

Show full article (1.47Kb)