Tagged Questions
VBA in Microsoft Access
11
votes
7answers
492 views
Access sometimes jumps to existing record on save new record - Access2k FE/SQL2005 BE
this is my first question on SO, am really posting this out of desperation after searching around a lot for an answer and trying a few different things with no success.
I have an Access database ...
7
votes
2answers
289 views
Download file with progress meter in VBA
I've found numerous examples for doing this in several languages, but none that are VBA specific. This question, How to download multiple files in VB6 with progress bar?, addresses three different ...
6
votes
3answers
114 views
MS Access VBA Substitution Cipher Encrypt/Decrypt
Could anyone suggest please how I can achieve a substitution cipher style; encrypt and decrypt function in VBA. I appreciate hashing is considered the better way but I need reversible encryption. ...
6
votes
1answer
190 views
Form.Dirty problem
I notice that in one of my form(bounded to a query), when I do this code:
Private Sub Form_Dirty(Cancel As Integer)
MsgBox Me.Form.Dirty
End Sub
It should pop up the value 'true', because this ...
6
votes
2answers
207 views
Execute .NET 3.0 code from Office 2003
I've created a DLL in C# using the .NET 3.0 framework.
Below is the code of my DLL
namespace CompanyName.Net
{
[Guid("F7075E8D-A6BD-4590-A3B5-7728C94E372F")]
...
5
votes
3answers
323 views
Using a centralized VBA module in multiple Access databases
I've been put in charge of 50+ Access databases (.mdb's and .accdb's of varied versions) spread around an intranet, and I need to add a few VBA functions (the exact same code) to almost all of them. ...
5
votes
1answer
1k views
Connection string syntax for Classic ADO / ODBC / Oracle 10g EZConnect
I'm trying to connect various VBA projects to an Oracle 10g back end using ADO (2.8) and no TNS. After various attempts, we've decided that the simplest series of steps for a clean installation ...
5
votes
2answers
1k views
VBA: Difference in two ways of declaring a new object? (Trying to understand why my solution works)
I was creating a new object within a loop, and adding that object to a collection; but when I read back the collection after, it was always filled entirely with the last object I had added. I've come ...
5
votes
10answers
488 views
wanting to move up from ms access, thinking .net? visual studio?
So I wrote a project-management program for a small business using Microsoft Access 2007.
Now they've requested lots of additional features (timekeeping, privileged data tiers ...)
I personally use ...
5
votes
1answer
692 views
Drilldown using unbound comboboxes with Access “Continuous Form”
There has got to be a simple(r) way to do this.
I have a situation where I am listing parts using continuous forms. The parts listing has things like the part type, manufacturer, part number and the ...
4
votes
2answers
400 views
Excel-Access ADO Update Values
I am trying to update a table in Access from the values in excel, however every time i run the code it creates new rows instead of updating the already existing ones, any ideas why? I am new to ADO, ...
4
votes
1answer
533 views
Excel - VBA - Save Data to Access Database
I'm working on excel with VBA and access and i need my system to save its data to an Access database and whenever any new records added, deleted or modified the database should update.
I would like ...
4
votes
1answer
275 views
Access VBA equivalent to a C# List<T>
I have a COM-visible object written in C# that accepts a list of string arrays. Could I send a Collection of string arrays from Access 2000 to this object and it work? If not, then what is the best ...
4
votes
0answers
369 views
Access 2007 upgrade DAO references conflict
I am updating an Access 97 DB w/ VBA code to Access 2007. The VBA code uses DAO objects that Access 2007 references when I converted the db files (first from 97 to 2002, then to 2007). My problem ...
4
votes
2answers
2k views
Hiding columns in a Microsoft Access 2007 datasheet with VBA
I am trying to hide specific columns in an Access 2007 split form through code. I need the form to check certain conditions to see whether it needs to display a column or not. I have code in the ...
4
votes
3answers
963 views
Access VBA - relative file references
In have built a couple of mda library files which I am then referencing from my main Access application (i.e. using Tools -> References from within the IDE).
Is there a way that these references can ...
3
votes
2answers
101 views
How to directly update a record in a database from a form number (Access 2007)
I have a job-tracking system, and there is a query that returns results of all jobs that are overdue.
I have a form that displays each of these jobs one-by-one, and has two buttons (Job has been ...
3
votes
1answer
216 views
Access Database Form ActiveX control error
I'm using a form that has date picker controls on it. When the form is opened and the datepicker control (MSCOMCT2.OCX) is clicked, I get the following unhelpful error:
The expression Change you ...
3
votes
4answers
309 views
Form load and filter question
I'm doing a search form. On top, there are several comboboxes for users to choose a combination of criterias. Then I construct a Where string to filter a sub form displaying the results.
...
3
votes
1answer
151 views
changing connection to sql server in microsoft access 2003 ade file
I develop an access 2003 application that is connected to SQL-Server.
my problem is that I develop the software on my server, and the application runs on the client newtwork on a different (identical) ...
3
votes
1answer
214 views
Copy/paste between Access and Excel
in one of my form in Access, i want to put together some texts in a string, then my user can copy this string into Excel, in different columns.
For example, there are 5 letters in my form: A B C D E, ...
3
votes
2answers
821 views
Return values from a pass-through query via VBA
I have VBA code to run a query in SQL-Server 2008. It runs fine and displays the table that I need. The code that does this is here:
Set db = CurrentDb
Set qdf = db.QueryDefs("MyStoredProcedure")
...
3
votes
7answers
348 views
Disadvantages of bigger project in VBA
i am new in project for company that have bigger enterprise/accounting system based on Visual Basic for Applications (VBA) in Ms Access 97. This application is still alive, they make updates and ...
3
votes
3answers
9k views
Access 2010 VBA query a table and iterate through results
I have a query that I want to execute against a table. With the results I want to do something. In my head the pseudo code is:
var q = "select * from table where some condition";
var results = ...
3
votes
5answers
5k views
Is there an Open File dialog for Access 2010 64bit?
How do I get an Open File dialog for Access 2010 64bit? Normally I would use the common dialog control but that is 32bit and cannot be used with Access 2010 64 bit.
3
votes
2answers
398 views
MS Access DB on network with multiple users
I have an MS Access database on a network drive with a userform which has multiple users (All using at the same time)
The form runs an update-query which will add data into a raw data table.
Does ...
3
votes
4answers
463 views
How to simulate an ODBC time-out error?
I am testing the error-handling of an Access-VBA controlled process:
A script in an Access 'controller' DB starts.
The script starts a macro in a 2nd Access file (the 'database').
The macro in the ...
3
votes
2answers
113 views
How to wait for execution control to return from dropping a table?
I have the following code:
CurrentDb.Execute "DROP TABLE [" & DatabaseName & "].[" & TableName & "];"
Which will drop a table from an MS Access database. Typically this is being ...
3
votes
3answers
114 views
MS Access group development
We are planning to redesign quite a huge MS Access application. Is there any way to work concurently on the same application or is it possible to merge two seperate instance of the same file (not the ...
3
votes
1answer
744 views
MS Access 2003 : VBA for INSERT INTO statement, new record: how to grab autoid number created?
I have a button click event that takes information from controls and enters it into a table via INSERT INTO SQL statement in VBA.
I was wondering if there is anything I could add to this, or some ...
3
votes
2answers
809 views
MS Access : Determine Object Type
Is there a way to determine the Object type, when passing a reference to a function?
I'm using a security permissions function, which determines if the user has permission to view/edit the Form ...
3
votes
5answers
14k views
In C#, how do you convert the TimeSpan datatype to DateTime?
I'm converting a small MSAccess application to a web-based ASP.NET app, using C# 3.5. I was wondering what's the best way to work with dates in C#, when converting some of this VBA code over to C#.
...
3
votes
2answers
2k views
Access VBA save Report as PDF/Binary
I am using Access 2007 (VBA - adp) front end with a SQL Server 2005 Backend. I have a report that i want to save a copy as a PDF as a binary file in the SQL Server.
1, Report Opened .
2, Report ...
3
votes
6answers
480 views
How to use VBA to automate several Office applications?
Although I've done VBA projects within a single application for both MS Access 2007 and Excel 2007, I haven't automated multiple applications at the same time. The generalized project is to open ...
2
votes
2answers
44 views
How to hide button control in VBA
Is there anybody out here still programming VBA?
I'm trying to get this code to work
Private Sub button3_click()
'hide main buttons
button1.Visible = False
button2.Visible = False
...
2
votes
1answer
73 views
How to add default signature in Outlook
I am writing a VBA script in Access that creates and auto-populates a few dozen emails. It's been smooth coding so far, but I'm new to Outlook. After creating the mailitem object, how do I add the ...
2
votes
2answers
39 views
VBA creating/updating arbitrary number of access tables
I'm currently interning at a company, and my employer has asked me to create a database of transmissions, charges, credits, etc. for a new market that they're in. I created a little java program that ...
2
votes
2answers
66 views
Is it possible to invoke a function in VBA from java?
I have two programs running on my computer, one designed and implemented in Java, the other one implemented as an .mdb-file. Can i invoke an simple function in my Access-program from the Java-program?
...
2
votes
2answers
64 views
Write large amounts of data at one time with VBA in Access
I have quite a bit of experience with VBA in Excel and have learned that the interaction between VBA and Excel is slow. Thus, you should read and write large chunks of data at one time instead of one ...
2
votes
1answer
57 views
Can you change the default color for selected text in MS Access?
I haven't found an existing post about this so I'll give it a shot.
I'd like to know if there is a way to change the default highlight color for selected text? Right now, whenever I invoke .SetFocus ...
2
votes
2answers
150 views
Access report “Can Grow” property needs to effect neighboring controls
I have a report with a bunch of controls in the Detail section.
I am working off a word document that was given to me as a sample and I recreated it in access almost perfectly. What I need now is a ...
2
votes
2answers
187 views
Alter Table doesn't work under MS Access 64 bit. Why?
I am trying to write a simple function to resize a text field in MS Access 64 bit version under Windows 7. It fails with the error 3420, object invalid or no longer set. Why is this? Can't you ...
2
votes
1answer
79 views
Autofill parts description via parts number text box
Sorry i don't have any code written because i have never written vba in access before. what i need to do is have a combobox autofill on my form to save a bit of time i have a database that has all our ...
2
votes
1answer
97 views
How to launch one other program with VBA code?
I'm trying to launch another program install in my system from my Access application. Or to open another file from Access, how can I do it?
EX: There's a file barcode_12mm.lbl, I want to use VBA code ...
2
votes
1answer
156 views
MS Access / VBA, check for desktop lock
Basically, what I'm trying to find is a way for MS Access (2003) to detect if the user has done a Ctrl+Alt+Del and locked their workstation. If that happens, I want the open database to shut down. ...
2
votes
3answers
618 views
Get Process Path and Name by ProcessID - Inconsistent Results (VB6, VBA)
I'm using the code below to get the file path and name for a given process. I simply pass in a ProcessID to the function ExePathFromProcID and it is supposed to return the full path. It enumerates the ...
2
votes
2answers
485 views
Access Report: Page header on second page on per detail
I want to display a header only on the second page and beyond but PER record. The first page of the new detail should not have the page header visible.
Originally I had the following code
Private ...
2
votes
4answers
212 views
VBA: DateDiff Year off
I have the following code in VBA to return the year between two dates: DateDiff("yyyy", "10/10/1930","06/07/2008 8:30:00 AM")
It returns 78, but it should really be 77.
What is going on here?
2
votes
4answers
342 views
On Error GoTo not working; Code breaks
I am writing a VBA function to import data from one table to another in Access. The table I'm importing into has more strict data constraints (i.e. types, size etc.), so I'm expecting a lot of errors. ...
2
votes
1answer
212 views
Using Alias keyword to declare a function in VBA
I have VBA MS Access form code, where I type the following function declaration:
Public Declare Function GetUserName Lib "advapi32.dll" () Alias "GetUserNameA" (ByVal lpBuffer As String, nSize As ...