Search the web
Sign In
New User? Sign Up
helpwithvb · A group for those who need help with Visual Basic
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Hear how Yahoo! Groups has changed the lives of others. Take me there.

Best of Y! Groups

   Check them out and nominate your group.
Having problems with message search? Fill out this form to ensure your group is one of the first to be migrated to the new message search system.

Messages

  Messages Help
Advanced
Messages 18288 - 18317 of 22573   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
18288
Hi, ... In effect, the Initialize and Terminate events are the constructor and destructor, and the VB runtime will fire the Terminate event for any variable...
Adelle Hartley
adellehartley
Offline Send Email
Apr 1, 2006
8:42 am
18289
Fair enough, i think i understood just about all of that except for the following part ... What do you mean by disabling creation of new object instances...
Bidski
bidskii
Offline Send Email
Apr 1, 2006
12:30 pm
18290
Public Function MakeThing(ByVal strName As String) As clsThing Dim objNewThing As clsThing Set objNewThing = New clsThing objNewThing.Name = strName Set...
Bidski
bidskii
Offline Send Email
Apr 1, 2006
1:14 pm
18291
Hi, ... I only meant that it would be useful to restrict creation of new objects to the factory method, so that only properly initialized instances can be ...
Adelle Hartley
adellehartley
Offline Send Email
Apr 1, 2006
9:25 pm
18292
Hi, ... Sorry, my fault for saying something not-quite-correct. VB *dereferences* the object when a reference to it goes out of scope. VB fires the terminate...
Adelle Hartley
adellehartley
Offline Send Email
Apr 1, 2006
9:25 pm
18293
Oh, so you mean kind of like C++ constructors where you have pretty much full flexibility in how the constructor is defined. BidSki Adelle Hartley...
Bidski
bidskii
Offline Send Email
Apr 1, 2006
9:57 pm
18294
Good, good. BidSki Adelle Hartley <adelle@...> wrote: Hi, ... Sorry, my fault for saying something not-quite-correct. VB *dereferences* the object...
Bidski
bidskii
Offline Send Email
Apr 1, 2006
9:59 pm
18295
... Exactly. VB classes defined in a DLL can be made to require use of a factory method by setting their "Instancing" property to "PublicNotCreatable". ...
Adelle Hartley
adellehartley
Offline Send Email
Apr 1, 2006
10:52 pm
18296
Sure thing, Andrew. Here you go. The first code displays an error code in a dialog box. Note the use of the EXIT SUB after the main sub block. You need to...
Richard
alienwebmaster
Offline Send Email
Apr 1, 2006
11:18 pm
18297
As usual, your post is insightful, Adelle. The strength of my position comes from the (dubious) approach implemented in .NET, whereby there is an inderitable...
Neiger, Bruce D
thezorch
Offline Send Email
Apr 3, 2006
1:16 pm
18298
Oh, and I should probably add to the list: Middleby: (NASD: MIDD): This oven maker, whose stock has about doubled each of the past 3 years, is down about 11%...
Neiger, Bruce D
thezorch
Offline Send Email
Apr 3, 2006
3:41 pm
18299
All: Apparently I got my groups crossed in my last post. My apologies to the vb'ers who really could not care less about Middleby. -BN...
Neiger, Bruce D
thezorch
Offline Send Email
Apr 3, 2006
5:31 pm
18300
To all, Thanks everyone who replied to my posting. I need to sit down and read them and contemplate them before I can post any questions. Again, Thanks. ...
Brian Clark
clarkb003
Offline Send Email
Apr 3, 2006
8:50 pm
18301
All, My newest task is to provide my control (Which includes a Keyboard screen) for use and distribution in multiple languages. Can anyone provide a link or...
Joe Wasko
jpwswbug
Offline Send Email
Apr 4, 2006
2:37 pm
18302
I have a question that I was hoping someone could help me answer. I have a main form (frmMain) that I use to display fields from a database (db1.mdb). I...
brianmcjedi
Offline Send Email
Apr 4, 2006
2:40 pm
18303
To all, I have a problem and I am not sure how to solve it. I have a series of test boxes on a form, call them txt(0)-txt(9), and I am using boolean values...
Brian Clark
clarkb003
Offline Send Email
Apr 4, 2006
5:52 pm
18304
Brian, Off the top of my head Select case index Case 9 'Do something mbNoteUpdate = True Case 0 to 8 'Do Something Else If mbAddNew = True then mbRecSelect =...
Joe Wasko
jpwswbug
Offline Send Email
Apr 4, 2006
6:14 pm
18305
Hi Brian, There is a VB-6 example that uses ADO in this Group's Files Section, and it is available for downloading as a Zip file. The mechanism is the same. ...
Steve Manser
tileguy2929
Offline Send Email
Apr 4, 2006
7:53 pm
18306
Joe, Thank you. That was sort of along the lines I was thinking but I couldn't find any examples. Brian...
Brian Clark
clarkb003
Offline Send Email
Apr 4, 2006
11:37 pm
18307
Hi, ... I think my posts on this subject came across as being more prescriptive than I intended. My approach works for me because it fits in with the rest of...
Adelle Hartley
adellehartley
Offline Send Email
Apr 5, 2006
1:10 am
18308
Not at all, Adelle. Your ideas, and thoughts/practices are simply based on a longer context than are most of ours... Exploring them with you is a pleasure:)...
Neiger, Bruce D
thezorch
Offline Send Email
Apr 5, 2006
4:03 pm
18309
All, I have a question about Windows XP and ADO. I have code that works fine on a Windows 2000 box, and returns err = 0 on XP. I have tracked down the error to...
Joe Wasko
jpwswbug
Offline Send Email
Apr 6, 2006
12:46 pm
18310
All, A short time ago, we were talking about Brian's 'Time Machine'. Everyone appeared to be downloading it as well as the OCX's that it used. Has anyone tried...
Joe Wasko
jpwswbug
Offline Send Email
Apr 6, 2006
1:15 pm
18311
Hi, I am able to upload a .txt file to a FTP server but not .jpg files using the Internet Transfer Control. I am using VB6. For the Text file I am using for...
johnstubbe
Offline Send Email
Apr 6, 2006
4:58 pm
18312
All, in regards to errorhandling, My error handler basically reports the issue and logs it to a file in the application directory. The error rporting...
Joe Wasko
jpwswbug
Offline Send Email
Apr 6, 2006
7:55 pm
18313
All, Also as promised, here is a copy of my error handler for undefined errors. 'Normal procedure with the error trap in it... Private Sub Form_Unload(Cancel...
Joe Wasko
jpwswbug
Offline Send Email
Apr 6, 2006
8:10 pm
18314
Joe, Thanks for posting your error handling technique. Now comes the fun part of trying to decode it. :P I will probably get a headache trying to figure out...
Brian Clark
clarkb003
Offline Send Email
Apr 6, 2006
8:24 pm
18315
To All, Is it possible to build a query with an index? On one of my forms I am using combo boxes to display information from a related table when users are...
Brian Clark
clarkb003
Offline Send Email
Apr 6, 2006
10:28 pm
18316
hi, Do you have any clue how to switch to binary mode. when i use ftp-le, etc you can choose ascii or binary mode. you have to send pictures in binary mode. ...
Bryan Schulz
bryan4772002
Offline Send Email
Apr 7, 2006
12:28 am
18317
Hi, Based on what I have been able to determine, you can only specify binary when downloading a file. At first, I thought the problem was that I had to upload ...
John Stubbe
johnstubbe
Offline Send Email
Apr 7, 2006
1:13 am
Messages 18288 - 18317 of 22573   Oldest  |  < Older  |  Newer >  |  Newest
Advanced
Add to My Yahoo!      XML What's This?

Copyright © 2009 Yahoo! Inc. All rights reserved.
Privacy Policy - Terms of Service - Guidelines - Help