Hi all,
[Update: The query works if I hardcode in the parameters - so it has to do with the way I am adding parameters to the query]
For the life of me, I cannot figure out what the problem is here.
Here is the query being passed to the datareader:
SELECT * FROM (SELECT TOP ? StartDate, [ID] FROM
(SELECT TOP ? StartDate, [ID]...
As the title says, I would like to use Vault for source control of an MS Access application that contains forms, queries and modules with vb code. I want to avoid the tedious process of exporting and importing modules to and from text files for the purpose of diffing with previous code.
Thanks.
...
Using VB 6 and Access Database
My query.
Creating a table
sql4 = "CREATE TABLE tmp_MOI (RECORDNO varchar(20), PERSONID varchar(20), EmpName varchar(50), TitleName varchar(50), Titlecode varchar(50), Department varchar(50), Nation varchar(50), CardEventDate varchar(50), Intime varchar(20), Outtime varchar(20), PrevDate varchar(50), Pre...
Example Data:
Col1 Col2 Col3
a 1 x
a 5 y
c 8 w
d 9 v
Result must be
Col1 Col2 Col3 Slno
a 1 x 1
a 5 y 2
c 8 w 3
d 9 v 4
...
I have two validation for date and time as below in text boxes:
00/00\ 00:00;0;0;_
It will take (dd/mm hh:mm) and works fine
But sometimes i put
34/34 56:78 it will take , But it shouldn't
Date sholdnot go beyond 31, month 12 time 24 and minute 59
Please help
...
I want to validate a text box
where the user enters the date in format dd/mm
and time hh/mm
in the same text box
how to do this?
...
I get the following error:
The 'Miccrosoft.Jet.OLEDB.4.0' provider is not registered on the local machine
When I run this code:
string dbConn = @"Provider=Miccrosoft.Jet.OLEDB.4.0;Data Source=C:\structuredfunds.mdb";
string cmdText = "select * from StructuredFundPosition";
DataTable dt = new DataTable();
using (OleDbDataAdapter da = n...
I need to send a series of email notifications from an MS Access Database.
No third party dll's like Redemption
Cannot trip the outlook security warnings
The email will have a pdf attachment
I know to do this I need to use MAPI, but I can't seem to find a way to do this with VBA.
Any help would be appreciated
Thanks,
Scott
...
We are using C#.net & use access database code for import of text file specification into access table
is there any access database limit for this action, as we may have records > 5 lac (500,000) ,will this process work for huge records??
If No then how can we handle huge records insertion in access database for same ?
Thanks
...
I have programmed an Access Database program using Access 2007. I have a button that points to the event: DoCmd.SendObject acSendReport to have it email a PDF report (acFormatPDF). Everything works fine in the normal Access 2007 program, but when a user opens the program with Access 2007 Runtime, when clicking on this button it goes thro...
I am attempting to build a database for inventory control using a large number of tables and enforced relationships, and I just ran into the 32-relationship (index) limit for an Access table (using Access 2007).
Just to clarify: the problem isn't that the Employees table has 32 explicit indexes. Rather, the problem is the limitation on...
Can some please look at the below for me and advice what i am doing wrong. I am trying to run a sql query based on data selected from comboboxes on a form, results of which are generated in a subform attached to the main form
Private Sub Form_AfterUpdate()
Dim LSQL As String
Dim cmb As ComboBox
Dim txt As TextBox
Dim chk As CheckBox
Fo...
Is there any option to close the currently opened MsgBox using any code in VBA access form application ?
\
...
I'm making some significant changes to some VBA code, and some variables are being deleted and/or renamed. It would be a lot easier to find all the locations I need to update if the compiler would complain to me that the variables don't exist instead of creating it on the fly.
...
Hello,
I have a keyUp event in button1 and EnterEvent in button2
When i press button1 and use my up arrow automatically control is navigating to Enter Event of button2 after entering into the KeyUp event of button1
Feels something fishy; Please help !!
...
Is there a way to reference a form's combo/text box within the query like a select query?
I usually use something like this in a select query's criteria:
like forms!frmMain.qTitleofSomething&* (access adds the brackets for me)
but this does not work in a crosstab query?? which i just found out. is there a way to accomplish the same ...
I am debugging a Microsoft Access program that occasionally hangs when users click on the quit button after been using the program for a long time. This program is just a lean Access front end with a SQL database back end.
One thing that puzzles me is that the quit button does nothing except for the following command:
DoCmd.Quit
Righ...
Hi all
I'm working on a VB2008 project that references two Access databases using Provider=Microsoft.Jet.OLEDB.4.0;
It would seem if the user does not have MSOffice on their machine, the program crashes with a "XXX stopped working" on startup on Vista and Win7.
I thought that Windows had XP and above had Jet functionality built in? Do...
I have some VB that copies OLEobjects into powerpoint automatically for me. The purpose of this is that my database runs queries, and then forms turn them into charts. As it runs through the various queires/form on open/close events the charts are added to a powerpoint presentation.
I also have parallel queries that show the resulting d...
Is this another MS Access 2000(2007)-ism?
If I type the following:
foo = blah + blah - bar
the editor automatically reformats it as
foo = blah + blah - bar
But I type:
Dim foobar as long
the editor doesn't reformat it at all. Some how I expect it to reformat it to
Dim foobar as long
Did it always work this way (I ha...