No announcements
Found 3324353 threads
-
5 Votes
Is there a way to find all Forms and Reports - Has module Yes?
Apparently, if you have code behind a form or report (the Has Module property is set to True) and you manually or with VBA code, set the Has ...Answered | 12 Replies | 1069 Views | Created by ForssPeterNova - Friday, August 28, 2020 6:40 PM | Last reply by Daniel Pineault (MVP) - Sunday, August 30, 2020 5:42 PM -
5 Votes
Missing Forms, Reports and Modules
Have you made sure that the selection on the Navigation Pane has ALL ACCESS OBJECTS selected as well as the OBJECT TYPE option.Answered | 8 Replies | 8803 Views | Created by AnandBhatta - Monday, July 11, 2011 12:28 PM | Last reply by David-W-Fenton - Saturday, July 16, 2011 1:07 AM -
1 Votes
Any way to find all the table adapters on a form?
You can iterate the controls collection and me.components.components to find certain objects, but nowhere can I find where a form keeps a collection of its ...Answered | 1 Replies | 3154 Views | Created by JasenGibson - Friday, August 14, 2009 2:56 PM | Last reply by DeborahK - Friday, August 14, 2009 3:46 PM -
1 Votes
Addressing and reading a control on a form from a module
So when you run your main form from your Sub Main, you do it this way: Application.Run(frmMain) This is not what I would ...Answered | 13 Replies | 3149 Views | Created by Sansevieria - Monday, May 7, 2012 9:10 PM | Last reply by F0r3v3r-A-N00b - Wednesday, May 9, 2012 2:17 AM -
0 Votes
checkbox/module How to react in a function in a module to a checkbox on the main form?
Everyone has a style.Answered | 11 Replies | 1222 Views | Created by Princy558 - Thursday, June 25, 2015 4:47 PM | Last reply by tommytwotrain - Friday, June 26, 2015 1:37 PM -
3 Votes
can’t figure out how to make values of one class module available to all forms in project.
When a form's "Has Module" is Yes, the module is actually a "Microsoft Access Class Object", so it's possible to ...Answered | 11 Replies | 805 Views | Created by PuzzledByWord - Friday, December 11, 2015 9:46 AM | Last reply by Peter N Roth, Author of Ten Commandments of VBA - Thursday, January 21, 2016 3:33 PM -
1 Votes
Cannot find type System.MarshalByRefObject in module mscorlib.dll
Here is the Connect bug for reference: ...Answered | 12 Replies | 14011 Views | Created by Paul G Mariotti - Monday, March 5, 2012 1:20 PM | Last reply by Jughead Jones - Wednesday, March 27, 2013 4:28 PM -
0 Votes
Moving vba code from form module to general module
Yes, that is right.Answered | 3 Replies | 789 Views | Created by Verbalist - Monday, May 2, 2016 5:11 AM | Last reply by Imb-hb - Tuesday, May 3, 2016 7:46 AM -
1 Votes
Crystal Reports for Visual Studio.NET 2008 Merge Modules
Because this module is just make the client machine could see the report.Answered | 13 Replies | 35893 Views | Created by Wakh - Saturday, July 5, 2008 6:03 PM | Last reply by ivanchain - Wednesday, July 15, 2009 2:39 PM -
2 Votes
Is there a way to create a pointer to a Form?
The code is that I posted was not the ".NET way" at all.Answered | 52 Replies | 5090 Views | Created by Morgan Haueisen - Wednesday, February 10, 2010 8:42 PM | Last reply by Rudedog2 - Thursday, February 11, 2010 8:52 PM -
0 Votes
A way to find out all the textbox
End If Next But are you sure you want to find controls with names starting with "txt", or do you ...Answered | 1 Replies | 1486 Views | Created by fsze88ATmeDOTcom - Wednesday, June 27, 2012 8:03 AM | Last reply by Acamar - Wednesday, June 27, 2012 8:15 AM -
1 Votes
Yes/No field string value returns True/False, want it to be Yes/No ... is there a way to fix this?
I don't think there is straight way to make the field return Yes/No.Answered | 4 Replies | 12823 Views | Created by Alan-Seattle - Tuesday, May 10, 2016 4:22 PM | Last reply by Wendy DZ - Thursday, May 12, 2016 6:43 AM -
0 Votes
Access 2013: To run a standard module by clicking a button that is on a form that has a macro to call the module.
Hi all, I am very new in doing Microsoft Macros and Modules in Access 2013.Answered | 1 Replies | 1335 Views | Created by Scott H Chang - Thursday, October 29, 2015 3:01 PM | Last reply by Dziubek Michał - Thursday, October 29, 2015 3:48 PM -
1 Votes
How to access variable in a different form using a module ?
hi NK9 declare your module like Public Module DataModule Public x As Integer End ...Answered | 11 Replies | 1918 Views | Created by NKN95 - Thursday, December 15, 2011 3:44 PM | Last reply by NKN95 - Thursday, December 15, 2011 6:31 PM -
2 Votes
How can I print source code of all forms modules classes of all DOTs?
I often need to find an occurence of a function call or a variable and have not found a way to search all templates without opening each individually ...Answered | 12 Replies | 4731 Views | Created by kbax - Tuesday, March 8, 2011 10:10 PM | Last reply by Derek Smyth - Thursday, March 10, 2011 8:10 AM -
0 Votes
Forms, Modules and Class Modules in VB 6
What is a Form, Module and a Class Module in Visual Basic 6.0?Answered | 1 Replies | 2262 Views | Created by Arun987 - Wednesday, January 9, 2013 9:28 AM | Last reply by .paul. _ - Wednesday, January 9, 2013 11:03 AM -
1 Votes
License for Reporting Module
BUSINESS INTElLIGENCE / components in additional servers The Business Intelligence components for SQL Server 2008 include Analysis Services, Reporting ...Answered | 1 Replies | 3533 Views | Created by quanongsql - Wednesday, October 12, 2011 4:25 AM | Last reply by moort - Wednesday, October 12, 2011 5:12 AM -
2 Votes
Where are Crystal Reports merge modules for VS2005?
by the way , what's means of the _mm_mlb?Answered | 15 Replies | 23420 Views | Created by Rob Roberts - Tuesday, January 17, 2006 2:00 AM | Last reply by Robert Werner - Wednesday, September 16, 2009 5:19 PM -
0 Votes
Is there a way to ensure that the form that a timer is on has focus?
The simplest one is to compare the current form hwnd against the _screen.ActiveForm.HWnd: IF TYPE('_screen.ActiveForm') = 'O' AND _screen.ActiveForm.HWnd = ...Answered | 1 Replies | 2191 Views | Created by Dwntrdr - Wednesday, March 21, 2012 5:02 PM | Last reply by Pavel Celba - Wednesday, March 21, 2012 8:19 PM -
0 Votes
Report Form
REPORT FORM <Report Name> TO PRINTER PROMPT NOCONSOLE That's why I wanted to avoid prompting print dialog box again and again.Answered | 4 Replies | 4094 Views | Created by DevNC - Wednesday, July 14, 2010 3:51 AM | Last reply by Naomi N - Wednesday, July 14, 2010 12:21 PM - Items 1 to 20 of 3324353 Next ›
No announcements