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 16039 - 16068 of 22568   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
16039
Thanks! I got the error number from the customer and it is part of the msbind.dll which must not have registered on some accounts. What he has is XP pro and...
mindserve
Offline Send Email
May 1, 2005
11:03 am
16040
If any one is thirsting for some additional reading material, but they just wish to gain an overview of this, and other, topics, then here are a few specific...
Steve Manser
tileguy2929
Offline Send Email
May 1, 2005
12:37 pm
16041
I know this is way off any vb subject but I am being harassed by email by someone in the UK. He tried to purchase a script (PHP) from me, but since I just had...
mindserve
Offline Send Email
May 2, 2005
2:24 pm
16042
Hi Jamie...I use Outlook Express so I am not sure if this works in Outlook. The mail in your folders is stored in files (you created) within the mail program....
RL Taylor
usewillow@...
Send Email
May 2, 2005
3:45 pm
16043
Thanks Rob, I will see what the extension is for Outlook and try to do this. Probably right about the authorities not helping...I did notify Paypal though as I...
mindserve
Offline Send Email
May 2, 2005
4:08 pm
16044
Jamie, You can also export the e-mails using the inport/export option on the file menu. This will allow you to save the information in a number of formats....
Brian Clark
clarkb003
Online Now Send Email
May 2, 2005
4:24 pm
16045
Thanks Brian! Brian Clark <clarkb003@...> wrote:Jamie, You can also export the e-mails using the inport/export option on the file menu. This will allow...
mindserve
Offline Send Email
May 2, 2005
4:54 pm
16046
Brian is right...Outlook is *.pst file format. You can save that as a file on the floppy. There are some programs out there that you can use to export/save...
Chris W
fuzzduckie
Online Now Send Email
May 2, 2005
8:41 pm
16047
Jamie, Even if the individual is using a free mail client such as Yahoo, most if not all of them have an abuse e-mail address where you can forward the e-mails...
Brian Clark
clarkb003
Online Now Send Email
May 2, 2005
9:27 pm
16048
Hi Chris and Brian, Thanks for your input on this. The guy is really an oddball with probably too much time on his hands. What is so weird is that he could...
mindserve
Offline Send Email
May 2, 2005
11:15 pm
16049
Hey Jamie... below is a place to go find out who the real providers are. In Express I can open an email and then click on file, properties, message source and...
RL Taylor
usewillow@...
Send Email
May 3, 2005
1:37 am
16050
Hi Rob, Thanks for this info, going to check this out today and report him to his ISP. Jamie RL Taylor <usewillow@...> wrote: Hey Jamie... below is a...
mindserve
Offline Send Email
May 3, 2005
8:23 am
16051
Dear Friends, At Design time we can attach picture to a form through picture properties.If we let it blank (set to none) at design time, and when the form is...
taufik mansur
taufikmansur
Offline Send Email
May 3, 2005
1:17 pm
16052
Hi, ... This is air code since I don't have VB in front of me, but try this: Private Sub Form_Load() Set Picture = LoadPicture("C:\MyPicture.jpg") End Sub ...
Adelle Hartley
adellehartley
Offline Send Email
May 3, 2005
1:23 pm
16053
Hi Try Private Sub Form_Load() Picture1.picture = LoadPicture("C:\MyPicture.jpg") End Sub The same can be done with image Ed Myerson Ed Myerson Chief Engineer ...
Edward Myerson
emyerson@...
Send Email
May 3, 2005
1:48 pm
16054
Hi Use the LoadPicture Function---like this Image1.LoadPicture("c:\mypicture.jpg") By the way, this is covered in my Intro VB6 book. John Smiley ... From:...
johnsmiley@...
johnsmiley22
Offline Send Email
May 3, 2005
2:16 pm
16055
It works.Thanks a lot Adelle. Adelle Hartley <adelle@...> wrote:Hi, ... This is air code since I don't have VB in front of me, but try this: Private...
taufik mansur
taufikmansur
Offline Send Email
May 3, 2005
2:29 pm
16056
Hi Adelle...I can follow what you have here but it does bring a question...is there code that would allow a user to pick a picture to insert from their own...
RL Taylor
usewillow@...
Send Email
May 3, 2005
4:00 pm
16057
Hi Ed...your answer is a lot like Adelle's so I will pose the same question to you (or anyone that may have an idea about it)...is there code that would allow...
RL Taylor
usewillow@...
Send Email
May 3, 2005
4:06 pm
16058
Bob The only things I know of are 1. if it is in the same directory as the application you can use this Picture1.picture = LoadPicture( App.Path &...
Edward Myerson
emyerson@...
Send Email
May 3, 2005
4:18 pm
16059
We are in process of our existing application from VB6 to VB.NET. In our old application we used Sheridian Data grid control lot. What are the impacts will...
Venkatesh Ramaiyan
venkatsri@...
Send Email
May 3, 2005
5:02 pm
16060
Hi, To piggyback with what Ed thought, don't hard code the file.jpg. Load a list box with the file names in some directory and use the name chosen in the...
Bryan Schulz
bryan4772002
Offline Send Email
May 3, 2005
5:46 pm
16061
I was referring to a program I am writing for others and thought it would be nice for them to be able to enter their own photo into a page of the program other...
RL Taylor
usewillow@...
Send Email
May 3, 2005
5:54 pm
16062
Good Afternoon Bob, Any picture, photo, image, is just another file as far as your code is concerned. We just have to handle the various file-types a little...
Steve Manser
tileguy2929
Offline Send Email
May 3, 2005
6:18 pm
16063
Hi, If you want to do this full blown, you probably want to use the common dialog control and limit/filter the file extentions to .bmp, .pcx, .jpg. Bryan ... ...
Bryan Schulz
bryan4772002
Offline Send Email
May 3, 2005
6:19 pm
16064
Steve... You bet I want it. I have seen programs that allow the user to select things like logos and colors but have not experimented with them so thought I...
RL Taylor
usewillow@...
Send Email
May 3, 2005
6:38 pm
16065
Bryan thanks I believe that is also what Steve has in mind Bob ... From: "Bryan Schulz" <b.schulz@...> To: <helpwithvb@yahoogroups.com> Sent:...
RL Taylor
usewillow@...
Send Email
May 3, 2005
6:40 pm
16066
To all the group I just wanted to give you a heads up. With all the help I received during my "first creation" project I am happy to announce that I have...
RL Taylor
usewillow@...
Send Email
May 3, 2005
6:42 pm
16067
Three cheers.I think I'll have a drink and celebrate your success! Like I needed a reason to celebrate! :-) Tim _____ From: helpwithvb@yahoogroups.com...
Tim Rupp
timrupp804
Offline Send Email
May 3, 2005
6:48 pm
16068
You Got It Bob, It will be on the way in a few minutes, and then I'm going to go celebrate with Tim :-) Ooops....., you had better send me your e-mail...
Steve Manser
tileguy2929
Offline Send Email
May 3, 2005
6:56 pm
Messages 16039 - 16068 of 22568   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