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 14561 - 14590 of 15862   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
14561
I'm having some problems reading a string from a binary file in vb.net. If I declare my string in the following way: Dim strFolderName As String then I use the...
alternate_dph
Offline Send Email
Jan 3, 2006
9:53 pm
14562
Here's a few notes from the help file: If the variable being read into is a string, by default FileGet reads a two-byte descriptor containing the string length...
Don Roberts
droberts_00
Offline Send Email
Jan 4, 2006
4:53 pm
14563
In the first example, you never initialize the string... in the second example you initialize it to the 50-character string...When did you initialize (set the...
Richard
alienwebmaster
Offline Send Email
Jan 4, 2006
5:52 pm
14564
... How can I properly initialize a string in vb.net when I do not know how long to make it in the 1st place? Remember, I am reading data from a file. * * * ...
alternate_dph
Offline Send Email
Jan 4, 2006
8:04 pm
14565
Dear all; I have been using visual basic .NET 2003. I want to that I have connected to SQL database table and than I have been using "select SQL query" and I...
Murat
hedef_2000
Offline Send Email
Jan 5, 2006
12:06 pm
14566
try this code: Function MyQueryMethod() As System.Data.IDataReader Dim connectionString As String = "Provider=Microsoft.Jet.OLEDB.4.0; Ole DB Services=-4; Data...
jovoh
Offline Send Email
Jan 6, 2006
12:00 am
14567
hi every body i want to read some vb applications source code but i just have exe file . so i want to convert this vb exe file to source code throught vb...
M.b
gogo2003_57
Offline Send Email
Jan 6, 2006
6:39 pm
14568
How do I compile a program in vb.net so that it runs across multiple versions of windows and carries all the files it would need to run so that user will not...
alternate_dph
Offline Send Email
Jan 7, 2006
8:18 am
14569
You can't. VB can be COMPILED, but not DE-Compiled. You need to get the original source code from whoever wrote the application. Hope this helps! ...
Richard
alienwebmaster
Offline Send Email
Jan 8, 2006
1:49 am
14570
In Visual BASIC 6, there is a part called the Package and Deployment Wizard. It has had several names over the various version of VB. I don't know what they...
Richard
alienwebmaster
Offline Send Email
Jan 8, 2006
1:52 am
14571
This is only partially true. VB Code compiled to P-Code CAN be decompiled with a fair level of success into the original source code. There are a number of...
Matt
unicornssecond
Offline Send Email
Jan 8, 2006
4:25 am
14572
My school officially teaches Java, but one of my required courses was a "logic" class which used Visual Basic.NET. After taking a semester of both I have...
Chris
cochris4
Offline Send Email
Jan 8, 2006
11:54 pm
14573
Chris: May I suggest a completely different series? The "Learn to Program with Visual BASIC" series by John Smiley is written in plain English, non-technical,...
Richard
alienwebmaster
Offline Send Email
Jan 9, 2006
6:34 pm
14574
Dear ALL, My Boss asks me to change the color of one Cell in Excel regaring some special conditions. Please let me know how I could do this thruogh a macro?...
sanmils
Offline Send Email
Jan 11, 2006
9:53 am
14575
... You could just use the "conditions" feature in Excel. * Format > Conditional Formatting Regards, Shawn K. Hall http://12PointDesign.com/...
Shawn K. Hall
vb_shawn
Online Now Send Email
Jan 11, 2006
10:12 am
14576
Chris: Unfortunately, the best language isn't the one that has the most job openings. This is because the guy who does the hiring is partial to a language...
Jesus Is the Answer
halfof4is2
Offline Send Email
Jan 11, 2006
6:49 pm
14577
Hi, I have to use a VB.NET function in a C++ application. In this function, I have to pass a C++ struct like this : C++ ================= ... struct Sproprio_...
Francis Grignon
grignonf
Offline Send Email
Jan 13, 2006
11:47 pm
14578
My Dear Friends, I need print particular area (eg: A1:G20) and need to print with A4 paper. How can I do this by using Excel VBA Macros? Please Help me. ...
veranga_samintha@...
veranga_sami...
Offline Send Email
Jan 13, 2006
11:48 pm
14579
Hello Dears Is there any way vb can help us control external devices such as Motors? I have seen programms in C++ which turn on and off such machines. How can...
sami andom
saminor2002
Offline Send Email
Jan 15, 2006
9:14 am
14580
... One solution would be to use the parallel port. If you don't want to write your own, there are free/commercial DLL's/Drivers that encapsulate the ...
Chad
cmegenis
Offline Send Email
Jan 15, 2006
10:54 am
14581
I'm trying to get vb.net to display tga files in a picturebox, but everytime I try, I get an "out of memory error". This is the line of code that is triggers...
alternate_dph
Offline Send Email
Jan 16, 2006
9:04 pm
14582
hello, anyone know how to get all the fonts available in our computer? how to show the color template as in the paint program? i need the visual basic codes :(...
setlan83
Offline Send Email
Jan 18, 2006
2:14 am
14583
I know in vb6 we can't say that an image = a certain file. We have to use the loadfile method. Example: Image1 = loadfile(app.path & "\beautifulPic.jpg") ......
Jesus Is the Answer
halfof4is2
Offline Send Email
Jan 18, 2006
8:13 am
14584
Hi, ... http://vbnet.mvps.org/index.html?code/enums/enumfonts.htm ... http://vbnet.mvps.org/index.html?code/comdlg/choosecolor.htm http://ccrp.mvps.org/ ...
Shawn K. Hall
vb_shawn
Online Now Send Email
Jan 18, 2006
8:17 am
14585
I know, so that's why I used this code: Me.picTileGraphic.Image = Image.FromFile(Me.fdlgOpen.FileName) But it keeps giving me a "System.OutOfMemoryException"...
alternate_dph
Offline Send Email
Jan 19, 2006
3:41 pm
14586
Here is a C# example in a learning program I'm using. Should be similar. pbMain is a Picture box and I'm opening a *.bmp file. private void...
Darrell Adams
captain_51
Offline Send Email
Jan 19, 2006
6:35 pm
14587
hello, does anyone know how to display a picture or an image beside the text in a list box? thanks for helping :p...
setlan83
Offline Send Email
Jan 20, 2006
7:40 am
14588
Record the process as a macro, and edit the resulting macro :)...
Matt
unicornssecond
Offline Send Email
Jan 20, 2006
8:46 am
14589
You are using a binary read routine. This is only for reading a data file into memory. Don't do that. Use my code and it will work. Supposing that your...
Jesus Is the Answer
halfof4is2
Offline Send Email
Jan 20, 2006
6:43 pm
14590
Hey does any1 kno how 2 add an image in a MDI Form ? I want 2 insert the company logo. Thx :-)...
zoaiks
Offline Send Email
Jan 22, 2006
8:11 am
Messages 14561 - 14590 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