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...
Want to share photos of your group with the world? Add a group photo to Flickr.

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 19132 - 19161 of 22583   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
19132
Well here is the answer not elagant but it did cost me 66 pages of paper to get to the answer. This prints 6 patients per page with the results of 4 office...
choroid_45
Offline Send Email
Jan 2, 2007
12:28 am
19133
You might do a search for an old program I found called AlarmClock it demonstrates how to use the Timer function here is the idea in code fashion This only...
choroid_45
Offline Send Email
Jan 2, 2007
12:29 am
19134
Try setting the "Control Box" function to FALSE I do not use MDIForms so this novice may be leading you astray if so sorry dwight ... is ... accidentally ... ...
choroid_45
Offline Send Email
Jan 2, 2007
12:52 am
19135
Way-To-Go Dwight ! Any chance you can post the final code ? Not the entire project, but the final portion that handles the printing task ? I'm sure that would...
Steve Manser
tileguy2929
Offline Send Email
Jan 2, 2007
3:08 pm
19136
. The Microsoft Glossary Page ( A Very Handy Reference ) . URL: http://msdn.microsoft.com/library/default.asp?url=/library/en-us/ado270/htm/ mddefglossary.asp ...
Steve Manser
tileguy2929
Offline Send Email
Jan 2, 2007
5:18 pm
19137
I have a question about the ON ERROR handler. Suppose I have two routines. I have the on error handler in one of those. How can I stop the second routine...
Tim Lewis
tlewis_mcleo...
Offline Send Email
Jan 3, 2007
7:51 pm
19138
Well, R2 will only bubble up to Routine1's error handler, if : - R2 is called by R1 - R2 does not have its own error handler. If R2 doesot need to be called by...
Neiger, Bruce D
thezorch
Offline Send Email
Jan 3, 2007
8:18 pm
19139
Thank you, Bruce. My subroutine is being called by a previous, so it is following the logic as you said. I will give it its own error routine. Tim...
Tim Lewis
tlewis_mcleo...
Offline Send Email
Jan 3, 2007
8:41 pm
19140
Here's a puzzling (somewhat harmless, but confusing and annoying situation) I decided to write a couple of classes to implement filters for MS Access forms....
Neiger, Bruce D
thezorch
Offline Send Email
Jan 3, 2007
8:43 pm
19141
Hi folks At the risk of having people on the group who don't know, I just wanted to remind you that I have 4 Internet based classes starting on Monday, January...
John Smiley
johnsmiley22
Offline Send Email
Jan 3, 2007
10:08 pm
19142
Hi folks Sorry, in my previous message, I neglected to include the link for the classes http://www.johnsmiley.com/main/training.htm John Smiley...
John Smiley
johnsmiley22
Offline Send Email
Jan 4, 2007
10:42 am
19143
This code loads two arrays with data one has Patient information the other extracts the last four office visits and prints this data just below the patient...
choroid_45
Offline Send Email
Jan 5, 2007
4:47 am
19144
Hi folks One of our list members asked whether it is possible to see a Demo class before joining one of my courses. That sounds like a great idea, so I've set...
John Smiley
johnsmiley22
Offline Send Email
Jan 5, 2007
10:25 pm
19145
Don't you think it's already too late to learn VB6? Shouldn't we learn VB.NET if you really have to learn? ... From: John Smiley <johnsmiley@...> ...
Ken Yu
viosebay
Offline Send Email
Jan 6, 2007
4:48 pm
19146
Hi Ken Yes I do--VB.Net is definitely the way to go, but there's a definite demand for VB6 in my training program, and that's why I offer it. When I...
johnsmiley@...
johnsmiley22
Offline Send Email
Jan 6, 2007
5:00 pm
19147
Hi John...a couple of comments about the Demo. I went to the site and started to look through the pages with this result...the questions or quiz part was...
Bob
usewillow@...
Send Email
Jan 7, 2007
6:39 pm
19148
Do the following statements do the same thing (i.e., are they interchangeable, equivalent): dim s1, s2 as string s1 = "" s2 = Nothing Steve...
Steve Trigero
seecwriter
Offline Send Email
Jan 10, 2007
10:48 pm
19149
Hi Steve, First off, I will make the assumption that you are talking .NET here. (If you weren't, your s1 would be a string and s2 would be a variant data type ...
Timothy Rupp
timrupp804
Offline Send Email
Jan 11, 2007
12:05 am
19150
... From: helpwithvb@yahoogroups.com On Behalf Of Steve Trigero Subject: [helpwithvb] Nothing Do the following statements do the same thing (i.e., are they ...
Neiger, Bruce D
thezorch
Offline Send Email
Jan 11, 2007
12:09 am
19151
Hi Tim: You cut to the chase better than I did. Decided to run some test code, which showed me something: Sub Main() Dim s, t As String s = Nothing t = "" ...
Neiger, Bruce D
thezorch
Offline Send Email
Jan 11, 2007
12:54 am
19152
Yes, I am using VB.Net. What prompted my question was the following. In VB6 I can do this: Dim mystring as string ... mystring = "" ... If Len(mystring) > 0...
Steve Trigero
seecwriter
Offline Send Email
Jan 11, 2007
7:15 pm
19153
That didn;t sound right, Steve, so I ginned up the following in a console app: Sub Main() bar("") ' yields =0 bar("New")...
Neiger, Bruce D
thezorch
Offline Send Email
Jan 11, 2007
7:46 pm
19154
I haven't tried your test code but mine doesn't work. Dim mystring(512) as string for i = 0 to 512 mystring(i) = "" Next OpenMyTextFile() Put each line of the...
Steve Trigero
seecwriter
Offline Send Email
Jan 11, 2007
8:57 pm
19155
Ah... OK... I Got it. I see your problem. Dim mystring(512) as string or just Dim s as string Both create (either a single or an array of) reference[s] to...
Neiger, Bruce D
thezorch
Offline Send Email
Jan 11, 2007
9:56 pm
19156
Drat!!! I see what I did wrong. Here is actual initialization code pasted from my project: 'Clear string array For i = 0 To NumFileLines fileLine(i) = "" i =...
Steve Trigero
seecwriter
Offline Send Email
Jan 12, 2007
12:43 am
19157
Using VB.Net 2005. My main form has a tab control on it with about 12 tabs. On the various tabs, I use groups to group like controls together. I then make...
Steve Trigero
seecwriter
Offline Send Email
Jan 12, 2007
7:11 pm
19158
You're welcome. In enjoyed it, cuz I oliked the topic... Although it's funny how the focus morphed from the nuances of Nothing vs "", to having to have an...
Neiger, Bruce D
thezorch
Offline Send Email
Jan 12, 2007
8:23 pm
19159
Tabs are always weird. Haven't used visibility on unselected tabs, yet, so I can't tell if this is "normal" or not, but it sound like .NET considered all...
Neiger, Bruce D
thezorch
Offline Send Email
Jan 12, 2007
8:37 pm
19160
. Hi Steve, Rather than testing for Visible vs. Not Visible, maybe we could store the Index of the current Tab that is being displayed, in a Variable. When the...
Steve Manser
tileguy2929
Offline Send Email
Jan 12, 2007
9:08 pm
19161
Steve, I understand what you're saying, but I was interested in how VB.Net works regarding the visible property of controls. It just seems like a lot of work...
Steve Trigero
seecwriter
Offline Send Email
Jan 12, 2007
10:03 pm
Messages 19132 - 19161 of 22583   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