... Good Morning, Here is a copy of one of the first postings, I believe that there is a link that Tomas provided so that you can read about his efforts in...
Steve Manser
smanser@...
Jan 1, 2003 2:34 pm
7763
Happy New Year Everybody, It's too early for footballs games so I gegan messing with my program again. I have added the following code to my main form at load...
FrnkChrstphr1@...
Jan 1, 2003 3:05 pm
7764
Put the routine in the form activate. At load time, the controls may not have been completely instantiated. ... From: FrnkChrstphr1@......
Hi everyone, As an abosulte beinner, I need help with a very simple problem. I can't find the print method listed as a Member of the 'Form class in the VB...
Thanks Tim. But I'm still a little confused. John Smiley uses the following code in his book: Private Sub Command1_Click() Form1.Print "Eat at Joe's" End Sub ...
Shoucair
shoucair@...
Jan 1, 2003 6:11 pm
7768
It is not strictly a method of the form.it will print output "Eat at Joe's" to the form. It is like Debug.Print "Eat at Joe's" which prints the output to the ...
Thanks. That clears it up. I guess some of this knowledge will just come with experience. Chris ... From: Tim Rupp To: helpwithvb@yahoogroups.com Sent:...
Shoucair
shoucair@...
Jan 1, 2003 6:48 pm
7770
Hi Chris, ... You might find these few small tips useful: In the VB IDE, if you have installed Help, or MSDN, you can place your Mouse Cursor inside a KeyWord,...
Steve Manser
smanser@...
Jan 1, 2003 8:27 pm
7771
Happy New Year Frank, ... As do we all......<g> There may be other small things such as this that VB does not want you/me to do in the Form Load Event, but ...
Steve Manser
smanser@...
Jan 1, 2003 8:55 pm
7772
salaams, I want to know the syntax for getting a hard copy of all the contents of a form. Can anyone help me out with this? thanx Hafsa...
Hafsa/Asmat
aahh@...
Jan 2, 2003 5:31 am
7773
call printform method of Form for this... 'Example: Private Sub cmdPrint_Click() Call Me.PrintForm End Sub Waqas... Hafsa/Asmat <aahh@...> ...
Waqas Hussain
WHussain@...
Jan 2, 2003 5:35 am
7774
I'd like to get in on this. Please send me the tool too. Thanks Roger m7412@... ... From: <jburton@...> To: <helpwithvb@yahoogroups.com> ...
Roger
m7412@...
Jan 2, 2003 1:08 pm
7775
... This is probably not what you are looking for, as Waqas... has pointed out the Form Object's PrintForm Method, but to obtain a "hard copy" of the Form...
Steve Manser
smanser@...
Jan 2, 2003 1:11 pm
7776
Since there has been a large number of requests for the printing tool, can someone please report back how they like it? ... From: m7412@... (Roger)...
Chris: What Tim told you is true, however, Form's and Pictureboxes do have Print methods in VB5 and VB6 -- and yes, they don't show up in the autocomplete. ...
Hi all, Bruce mentioned that a certain method doesn't show up in the auto-complete list. I have come across this before with other methods that are not in the ...
Would someone pls send me the tool also.. TIA, Mary Frye ... From: Victor Bravo [mailto:victorbravo6@...] Sent: Thursday, January 02, 2003 9:03 AM To:...
Mary Frye
mfrye@...
Jan 2, 2003 8:22 pm
7781
The following code is from a project lesson: Case cmdAddNew '-- Add a new record With Data1.Recordset If (.EditMode = dbEditNone) Then If...
Where do you have the variable dbEditNone defined, and what is its value? ... From: Ed Jones To: helpwithvb@yahoogroups.com Sent: Thursday, January 02, 2003...
That seems to be the problem. The book I am working out of doesn't call for it to be defined. It states that EditMode is a property of RecordSet and that...
The built in constant for ADO is adEditNone (ADODB.EditModeEnum.adEditNone), try it. ... De: Ed Jones [mailto:etjones@...] Enviado el: Thursday,...
Jose Ramon Casal
jcasal@...
Jan 2, 2003 10:25 pm
7785
I get the same error message. This project is DAO. The author thinks it is better with .mdb files. Will get into ADO later in the book. That is if I ever get...
Ok Ed, for DAO the built in constant is DAO.dbEditNone, just check the box for MIcrosoft DAO 3.6 object library at your project references (from the main menu...
Jose Ramon Casal
jcasal@...
Jan 2, 2003 11:12 pm
7788
That did it Jose. You da man! Can't thank you enough. Ed ... From: Jose Ramon Casal To: 'helpwithvb@yahoogroups.com' Sent: Thursday, January 02, 2003 4:11 PM ...
Luis, I missed your reply to my post. Sorry. ... Thank you. That is certainly nice-to-know information. So if I just create my BackGround App only in Sub...
Steve Manser
smanser@...
Jan 3, 2003 2:45 am
7790
Many thanks guys! ... From: Bruce D Neiger To: 'helpwithvb@yahoogroups.com' Sent: Thursday, January 02, 2003 8:27 AM Subject: RE: [helpwithvb] Print Method ...