No announcements
Found 4042594 threads
-
0 Votes
BC30387_Class 'default_aspx' must declare a 'Sub New' because its base class '_Default' does not have an accessible 'Sub New' that can be called with no arguments.
User288213138 posted Hi E.RU, "BC30387 Class 'default_aspx' must declare a 'Sub ...Unanswered | 3 Replies | 107 Views | Created by Anonymous - Wednesday, February 5, 2020 11:30 AM | Last reply by Anonymous - Friday, February 7, 2020 8:13 AM -
8 Votes
The opposite of public sub new()
The dispose signature does not have a boolean argument...Answered | 18 Replies | 3679 Views | Created by FletcherJ - Thursday, July 30, 2009 7:55 PM | Last reply by FletcherJ - Tuesday, August 4, 2009 7:11 PM -
0 Votes
Calling a sub within another class
One option is to pass whatever the object is being added to as an argument to the sub, so that the sub can add the object to that thing.Answered | 5 Replies | 2111 Views | Created by E_Jef - Monday, March 21, 2016 1:14 PM | Last reply by Acamar - Monday, March 21, 2016 9:34 PM -
3 Votes
Access: Error 91 when calling Sub with Recordset object as argument
GetPrices is now successfully being entered and doing its thing, however I now have a new problem: mobjIE_DocumentComplete is never being called.Answered | 7 Replies | 5603 Views | Created by gwfyarm - Friday, September 25, 2009 5:31 PM | Last reply by Cinzia Pagani (former MVP) - Wednesday, September 30, 2009 11:09 AM -
1 Votes
Can I set a Class to nothing while in the Sub New of the class
Something like this: Public Class Product Private Sub New() End Sub Public Shared ...Answered | 8 Replies | 3338 Views | Created by Joshua.Modglin - Monday, February 22, 2010 10:21 PM | Last reply by DeborahK - Tuesday, February 23, 2010 10:36 PM -
1 Votes
call sub with parameters
When you use standard object access techniques, you must recompile and redistribute the client application before it could use the new operators.Answered | 6 Replies | 5906 Views | Created by fredpox - Wednesday, March 9, 2011 9:18 PM | Last reply by fredpox - Saturday, March 19, 2011 6:25 PM -
1 Votes
"too many arguments to public sub new()"
hard to decide based on the descriptions on were to place them.Answered | 9 Replies | 7478 Views | Created by dgrest - Thursday, March 4, 2010 1:52 AM | Last reply by dgrest - Monday, March 8, 2010 10:17 PM -
3 Votes
Interfaces and Sub New
I mean, if I have a lot of assembly that are IZone implementation, at the start of the program I read from a DB (or a config file) which kind of zone I must manage, then I ...Answered | 7 Replies | 3186 Views | Created by elware - Tuesday, November 11, 2008 10:57 AM | Last reply by konikula - Thursday, November 13, 2008 9:21 PM -
0 Votes
calling a sub
I have 3000 data values in a table and must call one of 50 sub routines to process a set of data from this table.Answered | 4 Replies | 2803 Views | Created by jim learning vb10 - Friday, September 2, 2011 6:21 AM | Last reply by John Anthony Oliver - Saturday, September 3, 2011 1:40 PM -
2 Votes
Creating a class library of sub-classed base controls?
For the most part, you never HAVE to subclass a control to change its appearance.Answered | 5 Replies | 4257 Views | Created by Matt Slay - Wednesday, July 2, 2008 5:41 PM | Last reply by Brownie Points - Wednesday, July 2, 2008 10:31 PM -
0 Votes
Calling Sub from other classes - no value
All you need to run that sub is oTestA.mysub If you really did want it to return a value, it should be declared as a ...Answered | 3 Replies | 2677 Views | Created by jaany - Wednesday, October 28, 2009 3:47 PM | Last reply by Rudedog2 - Wednesday, October 28, 2009 5:16 PM -
0 Votes
must declare a 'Sub New' because its base class
...convert those projects to VS.NET 2010 before adding to your new solution (if it did not already ask you to do it upon adding the ...Answered | 10 Replies | 181 Views | Created by Anonymous - Saturday, July 17, 2010 6:44 AM | Last reply by Anonymous - Tuesday, August 10, 2010 2:08 AM -
0 Votes
How can i allow sub-class inheritance from base-class(use interface) but i do not allow it override a method from base-class
I mean: i want my sub-class can be multiple inheritance( use interface) but i want it also mustn't be override some method from ...Answered | 23 Replies | 1089 Views | Created by Phatpx - Monday, July 11, 2016 7:33 AM | Last reply by Phatpx - Wednesday, July 13, 2016 3:14 AM -
0 Votes
Access 2010 Calling Sub gives Error
BeforeUpdate has a required argument of type Integer, so you must provide that: Private Sub cmdNew_Click() Dim c As Integer ...Answered | 2 Replies | 966 Views | Created by sahm - Sunday, January 12, 2014 8:49 AM | Last reply by sahm - Tuesday, January 14, 2014 6:23 PM -
0 Votes
How can to sent "Exit sub" to exit sub of another class
Just because you want to call "Exit Sub" because you believe that is the way to do something doesn't mean anything.Answered | 7 Replies | 1291 Views | Created by Hemkoe - Thursday, July 28, 2016 3:24 PM | Last reply by Cor Ligthert - Thursday, July 28, 2016 10:30 PM -
1 Votes
Is it possible to avoid execution of the sub based on the other sub the call was made from?
Thanks. :) Some people succeed because they were destined to, but most people succeed because they were determined to.Answered | 12 Replies | 765 Views | Created by Alex20122012 - Sunday, August 7, 2016 12:56 AM | Last reply by Acamar - Monday, August 8, 2016 9:59 PM -
0 Votes
Why does "Sharing" Public Subs in .NET Built Class Com-visible DLL cause the same subs to be not available to Excel VBA?
You can't call a Shared sub or function from an instance of a class.Answered | 10 Replies | 4598 Views | Created by DennisCPA - Wednesday, July 8, 2009 12:57 AM | Last reply by Joe Sweeney - Friday, April 13, 2012 3:11 AM -
2 Votes
How to declare "public" to all subs in a Form ?
If you use the Public declaration statement to declare a variable in a form's class module's declarations area the variable ...Answered | 15 Replies | 1395 Views | Created by Mel_3 - Friday, May 22, 2015 3:38 PM | Last reply by AccessVandal - Tuesday, May 26, 2015 3:33 AM -
3 Votes
Not returning to a calling sub
Only because you have coded it to do that - the code that occurs immediately after the call to the Sub to start recording ...Answered | 14 Replies | 787 Views | Created by vetralph - Monday, December 1, 2014 1:38 PM | Last reply by Paul P Clement IV - Saturday, December 6, 2014 5:49 AM -
2 Votes
passing a varible from sub to sub
A string is perhaps the one to be most cautious of for declaring at the class-level because a string is immutable.Answered | 9 Replies | 1397 Views | Created by Markus_Lacey - Friday, November 23, 2012 7:03 PM | Last reply by Frank L. Smith - Saturday, November 24, 2012 12:25 AM - Items 1 to 20 of 4042594 Next ›
No announcements