Search the web
Sign In
New User? Sign Up
vbhelp · Visual Basic Help Center Forum
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Real people. Real stories. See how Yahoo! Groups impacts members worldwide.

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 13943 - 13972 of 15862   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
13943
... printed. How can ... printed ... immediately. First of all, I got to tell you that I have never really used the printer dialog box. I always use...
HouseDad
cwcummins
Offline Send Email
Mar 1, 2005
10:57 pm
13944
Try this: With commondialog1 .DialogTitle = "Print" .CancelError = True .Flags = cdlPDReturnDC + cdlPDNoPageNums If RichTextBox1.SelLength= 0 Then .Flags =...
HouseDad
cwcummins
Offline Send Email
Mar 2, 2005
3:34 am
13945
ok i see my example has a little problem! apparently this line RichTextBox1.SelLength.hDC should really be... RichTextBox1.SelPrint .hDC which would make it...
HouseDad
cwcummins
Offline Send Email
Mar 2, 2005
3:51 am
13946
... sub in a code module which is called from a form? Obviously, I am not the expert here, but I think I remember being told that the way to do it was to...
HouseDad
cwcummins
Offline Send Email
Mar 3, 2005
12:20 pm
13947
... From: "HouseDad" <cwcummins@...> To: <vbhelp@yahoogroups.com> Sent: Thursday, March 03, 2005 10:50 PM Subject: [vbhelp] Re: Ending an Application ...
Unicorn.PC.Support
unicornssecond
Offline Send Email
Mar 3, 2005
12:50 pm
13948
Have you looked into MSDE for your Database? http://www.microsoft.com/sql/msde/default.asp ... __________________________________ Celebrate Yahoo!'s 10th...
Darrell Adams
captain_51
Offline Send Email
Mar 3, 2005
3:37 pm
13949
... Unfortunately, the company I work for won't buy any additional software. [C]...
HouseDad
cwcummins
Offline Send Email
Mar 3, 2005
9:25 pm
13950
... removed] Thanks, I did find it informative. I guess, in a way, it also answered my "real" question (as I was too ignorant to know the difference), which...
HouseDad
cwcummins
Offline Send Email
Mar 3, 2005
9:47 pm
13951
... Oh never mind I see it's free!? I didn't know I could do that for business use. THanks!...
HouseDad
cwcummins
Offline Send Email
Mar 3, 2005
9:49 pm
13952
Is it posible to change the coulor from the toolbar and the sstab in VB 6.0, and how can I do this? Thanks Erik...
egodijns
Offline Send Email
Mar 3, 2005
10:30 pm
13953
I don't believe size is a major problem in Access, however - How many concurrent users are you anticipating ? If you go down the MSDE path, watch out for this...
crombierob
Offline Send Email
Mar 4, 2005
12:38 am
13954
<<SNIP>> Any ... Chris, There are benefits both ways. Small forms with few control and objects load faster. I would suggest that the best rule of thumb is to...
Unicorn.PC.Support
unicornssecond
Offline Send Email
Mar 4, 2005
1:10 am
13955
Hi Colleagues, I design a form at one computer and the size just fit the monitor. When the form is shown at other computers the size becomes smaller. Could...
kimyeungwk
Offline Send Email
Mar 4, 2005
1:46 pm
13956
The easiest way would be to purchase a form re-size control such as vbgold's other wise you have to create a procedure that resizes the form and controls such...
Darrell Adams
captain_51
Offline Send Email
Mar 4, 2005
8:25 pm
13957
Hi, Some developers (Me and even MS sometimes), just advise users that the optimal resolution is say 800 * 600 I am working on an app at the moment that needs...
Rob Crombie
crombierob
Offline Send Email
Mar 5, 2005
5:41 am
13958
LMAO Rob, I thought that I had just such an agreement from a customer. Then I was told, after delivery, that they had a staff member who had visual ...
Unicorn.PC.Support
unicornssecond
Offline Send Email
Mar 5, 2005
6:37 am
13959
Hello everybody, I have a very simple question. I am trying to create an application that asks the user for his login credentials and after he enters his ...
umairata
Offline Send Email
Mar 5, 2005
9:34 am
13960
Hi First call the next form to be loaded and then close login form Ritesh FCR-Librarian. 91 22 56762153 ... From: umairata [mailto:umairata@...] Sent: 05...
ritesh.sharma@...
ritesh19us
Offline Send Email
Mar 5, 2005
10:10 am
13961
Can you show us how you coded this already? ... -- ... Don Roberts - don@... http://www.drscripting.com http://www.freakingidiot.com...
Don Roberts
droberts_00
Offline Send Email
Mar 5, 2005
7:19 pm
13962
Hi Kim, ... Darrell and Rob pretty much sum up the two camps on this topic: * Resize the form dynamically to fill the screen * Make the form one size and don't...
Shawn K. Hall
vb_shawn
Online Now Send Email
Mar 6, 2005
8:06 am
13963
Hi What is the name of the "form" of an OCX control? I'm writing a control and need to access its width, and cannot access it. Thanks -- No virus found in this...
.rEs
resres3
Offline Send Email
Mar 8, 2005
7:02 am
13964
Hi rEs, ... Do you need the width of the form the activex is sitting on, or the actual hDC width of the activex control itself? For the first, "parent.width"...
Shawn K. Hall
vb_shawn
Online Now Send Email
Mar 9, 2005
10:35 pm
13965
... I'm trying to set a fixed with for the control using code during development. Can't seem to get it working. Also, how does one overcome the problem of...
.rEs
resres3
Offline Send Email
Mar 10, 2005
6:42 am
13966
Hi When I develop controls, using the arrow keys to navigate in the editors causes selection of the "next" object on the "form"...but I'm in the editor! Is...
.rEs
resres3
Offline Send Email
Mar 10, 2005
6:45 am
13967
Dear all I use following code in a command button to open a notepad Shell "notepad.exe", vbNormalFocus it opens in a sperate window, i want to open the notepad...
anand
anand_mca_in
Offline Send Email
Mar 10, 2005
11:29 am
13968
Notepad is just a plain text editor. Place a multiline TextBox on your form and you have a simple text editor. You just have to add the save/load text file...
Waqas Hussain
waqas_hussain
Offline Send Email
Mar 10, 2005
12:31 pm
13969
Dear all, Thanks waqas for your reply, actually i'm not concern about notepad, i want to open any executable file in same application where i call it. insted...
anand pandiyan
anand_mca_in
Offline Send Email
Mar 11, 2005
9:34 am
13970
Hi Anand, ... Yes. You can use the SetParent API to shove any window into any other. Finding out the handle of the new applications primary form (like the...
Shawn K. Hall
vb_shawn
Online Now Send Email
Mar 11, 2005
11:00 am
13971
Hello all, Some of you may already be aware of this, for the rest of you I'm forwarding it on for your convenience. Yes, it is true. MS is planning to kill off...
Shawn K. Hall
vb_shawn
Online Now Send Email
Mar 11, 2005
10:56 pm
13972
Everything I've seen in .NET still supports earlier versions of everything including ASP. Dave ... From: Shawn K. Hall To: vbhelp@yahoogroups.com Sent: Friday,...
lewis580@...
four_blades
Offline Send Email
Mar 12, 2005
12:38 am
Messages 13943 - 13972 of 15862   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