Search the web
Sign In
New User? Sign Up
VisualBasic_Official · Visual Basic . VB.net . VBS . ASP.net
? Already a member? Sign in to Yahoo!

Yahoo! Groups Tips

Did you know...
Show off your group to the world. Share a photo of your group with us.

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 5516 - 5545 of 9531   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
5516
Hi Cynthia, What is your deadline? The reason I asked earlier for you to email the whole project to me is so I don't have to try to recreate your form, and ...
Michael Yard
m_yard
Offline Send Email
Mar 1, 2004
5:03 pm
5517
Hi all, I am writing a Movie autoplayer using VB, I use Timer control to check if the time is met the preset Time. If the time met the preset time, then play...
flexchan
Offline
Mar 2, 2004
5:56 pm
5518
Hi All, I am a little confused regarding the rules for method overloading during inheritance. From what I know overloading is done when two methods of the same...
Sweta Arora
sweta_arora_78
Offline Send Email
Mar 2, 2004
6:28 pm
5519
Hi Sweta, This one threw me at first. It seemed the behavior you are describing is what I would expect if you used the Shadows keyword in your subclass. So, I...
Michael Yard
m_yard
Offline Send Email
Mar 2, 2004
10:46 pm
5520
My application's main Window has just under 256 objects on it. The only reason I know this is because I recently tried to add another object and VB gave me an...
seecwriter
Offline
Mar 4, 2004
9:59 pm
5521
To put more than 256 objects on a form, use control arrays. To resize a form, custom controls are availble for purchase. Otherwise you can write a code...
V Karthick
cartque
Offline Send Email
Mar 5, 2004
3:43 am
5522
The approach to this depends on which version of VB you are using - VB6 or VB.NET. The approach is radically different depending on the answer to this...
Michael Yard
m_yard
Offline Send Email
Mar 5, 2004
10:53 am
5523
Hi Friends I want to put a link label control/command button in the Title bar of my vb.net windows application (right to the minimize button). How can I do...
concealed_friend
concealed_fr...
Offline Send Email
Mar 5, 2004
10:53 am
5524
iam use statement print # but i found difficulty when i want to use font,like a font size,font name,etc.please help me,if everyone know about my problem :(( ...
father_deevee
Offline Send Email
Mar 5, 2004
10:53 am
5525
Print # is usually used for writing to a text file, and therefore any fonts would not be preserved in any case. How/where are you using this? Mike ... From:...
Michael Yard
m_yard
Offline Send Email
Mar 5, 2004
9:15 pm
5526
thanks for ur attention,actually i want to print some data,coz i want to using for my cashier printer.coz when i use the "printer.print" statement i can't...
father_deevee
Offline Send Email
Mar 6, 2004
1:38 am
5527
I don't believe it is possible to use Print # to print fonts. This command comes from early basic days when there were no fonts, and I don't think it has been...
Michael Yard
m_yard
Offline Send Email
Mar 6, 2004
8:03 pm
5528
Hello, I am working on my first multiple forms program and have run into a problem. After searching through four different reference texts I still don't seem...
Joe Young
jwyoung40
Offline Send Email
Mar 7, 2004
7:36 am
5529
Hi All! I am working on a simple database application using VB 6.0 For some reasons I prefer using data control in VB. By using that, it is very simple to move...
Nasser F
nasser_simple
Offline Send Email
Mar 8, 2004
5:42 am
5530
If I understand your question, from the main menu form, you only need to call the .Show method of the other form. For instance, if your data form is called...
Michael Yard
m_yard
Offline Send Email
Mar 8, 2004
5:42 am
5531
After using bits and pieces of code found in four different reference books I managed to solve the problem. (See previous post on this subject). The final bit...
Joe Young
jwyoung40
Offline Send Email
Mar 8, 2004
5:43 am
5532
How do I merge two arrays: intX with 15 elements intY with 13 elements into Array intZ and sort it + display the array in a text box? My text book does not...
henrikonline
Offline Send Email
Mar 8, 2004
5:44 am
5533
hi Try this code. i had no problem. 1st you drag the mainmanu control to the mdi form and set the iSMdiContainer property of the mdiform to True in the...
ramesh white
ramesh_white
Offline Send Email
Mar 8, 2004
9:45 am
5534
Hi to all, I have a doubt in DataGrid control. My need is I want to hide some columns in the DataGrid. And also I want to change the Captions of the data grid ...
K.Srikanth
ksricanth
Offline Send Email
Mar 8, 2004
5:34 pm
5535
Hi I think u can't oprate on to multiple tables using Single record ser Object. Which is possible in .Net using DataSet Object. with rgds rams..... ... ...
Ramachandra.S.Ekbote
ramachandra_...
Offline Send Email
Mar 8, 2004
5:35 pm
5536
i want to import txt file to ms.access database or ms.access database to txt file,i want to use ado method,please give me solution,if u have a solution for me....
father_deevee
Offline Send Email
Mar 8, 2004
5:35 pm
5537
Thanks for all the help I received with this problem. I posted a message earlier saying that the problem was solved, but there was still a little left to do....
Joe Young
jwyoung40
Offline Send Email
Mar 8, 2004
5:36 pm
5538
Just use a SQL statement for the RecordSource of the data control. Mike ... From: Nasser F [mailto:nasser_simple@...] Sent: Sunday, March 07, 2004 6:18...
Michael Yard
m_yard
Offline Send Email
Mar 8, 2004
10:08 pm
5539
If you don't need the other columns, personally I would offload the work onto the Database server. In your select statement, just return the columns you need....
McBride, Ryan D.
divi2323
Offline Send Email
Mar 8, 2004
11:40 pm
5540
I'm using VB6. ... VB6 ... answer ... come ... requests ... <http://rd.yahoo.com/SIG=12c05ndr3/M=274551.4550177.5761904.1261774/D= eg ... ...
seecwriter
Offline
Mar 8, 2004
11:40 pm
5541
Thanks for your information. Ya we need to query those columns which we need actually, but some times what happens is we want a column which should not be...
K.Srikanth
ksricanth
Offline Send Email
Mar 9, 2004
3:27 pm
5542
Hi All! In inserting a new record in a recordset (data control in VB) it appends a record at the end of recordset. But i want to insert a record in a...
Nasser F
nasser_simple
Offline Send Email
Mar 9, 2004
3:28 pm
5543
Hey it is very simple when u create a Datagrid columns or when u set dataset as datasource for Datagrid then set the perticular column as Visible false. I...
Ramachandra.S.Ekbote
ramachandra_...
Offline Send Email
Mar 9, 2004
3:28 pm
5544
Hi How to get internet dial up name, and add it into listbox (ex : attach) thanks __________________________________ Do you Yahoo!? Yahoo! Search - Find what...
Wangsa Putra
wangsa_putra
Offline Send Email
Mar 9, 2004
3:29 pm
5545
Any suggestion how to transfer database design as well as data from XML to SQL Server?...
Bharat
chovbha
Offline Send Email
Mar 9, 2004
9:04 pm
Messages 5516 - 5545 of 9531   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