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...
Message search is now enhanced, find messages faster. Take it for a spin.

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 9423 - 9452 of 9531   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
9423
This is my contribution to the group... There is a free webinar happening next Monday (June 8th) at 1PM ET to register go to:...
cruz.debra@...
cruz.debra...
Offline Send Email
Jun 2, 2009
6:50 pm
9424
Hi All, I have an excel book,which contains 5 sheets as below: - One - two - three - four - five in the same book i have one form where i have placed one...
mrgreekgod
Offline Send Email
Jun 5, 2009
4:36 pm
9425
Dear any one send me the code for word macro to check the weather map drive is active or not. regards, sikhan [Non-text portions of this message have been...
SHAHID IQBAL
sikhan555
Offline Send Email
Jun 8, 2009
4:39 pm
9426
I have been using vb for years now. Im currently working a project to automate processes used but my company to track installations by our techs. We use a web...
jon_hare_su
Offline
Jun 8, 2009
4:40 pm
9427
I need some help with the following. I am taking a file from one system via FTP. The file is a delimited text file. I need to be able to take this file and...
guuuyyy
Online Now Send Email
Jun 10, 2009
8:38 pm
9428
Dear guuuyyy, I think you can simply change the .txt suffix to .csv and Excel will load it fine. Edgar ... [Non-text portions of this message have been...
Edgar Owen
edgarowen
Offline Send Email
Jun 11, 2009
4:14 pm
9429
... No formatting in a delimited text file. You can just open the file in excel and it will decide where the columns are if it is delimited by tab or comma....
gregorydosborne
Offline Send Email
Jun 11, 2009
4:14 pm
9430
Edgar True, it will but it will also change the value of some numeric values,  which is why i need to be able to format the columns. For example I have the...
guuuyyy
Online Now Send Email
Jun 12, 2009
2:56 pm
9431
Dear guuuyyy, I think you can simply change the .txt suffix to .csv and Excel will load it fine. Edgar ... Explore and discover exciting holidays and getaways...
kanakraj raj
kanak81
Offline Send Email
Jun 12, 2009
2:56 pm
9432
Guuuyyy, That's a matter of simply changing the formating of the Excel columns in Excel to currency. I don't know if there is a way to do this automatically...
Edgar Owen
edgarowen
Offline Send Email
Jun 12, 2009
8:42 pm
9433
Save the txt file in the system. Open the file through excel. Text Import Wizard will open and then you can convert the file to excel giving the way you like...
sheeja k
sheejak2000
Offline Send Email
Jun 15, 2009
5:24 am
9434
I'm using VB.net and trying to get images from a word document and save them to an access file. I can't seem to find many examples of this on the web, would...
allan_blackford
Offline Send Email
Jun 15, 2009
5:24 am
9435
I am using VB2008 and was wanting to know how to use a button to select/display a certian tab in the tabcontrol. I have 9 tabs and want to display one when the...
Brian
blue_eagle74
Offline Send Email
Jun 16, 2009
4:15 pm
9436
I think Guuy wants to do it programmatically. Needs to incorporate some Excel VBA. ... From: sheeja k To: VisualBasic_Official@yahoogroups.com Sent: Friday,...
Hal Gibson
yakshasa
Offline Send Email
Jun 17, 2009
3:18 pm
9437
Easiest way would be to start "Record Macro", follow steps Sheeja outlined, stop recording, switch to Visual Basic view, and copy the code the Excel macro...
Hal Gibson
yakshasa
Offline Send Email
Jun 17, 2009
3:24 pm
9438
I figured it out late last night. I used TabControl1.SelectTab(8) The tabs are also numbered 0 thru.. not 1 thru... This may be common sense but I'm learning. ...
Brian
blue_eagle74
Offline Send Email
Jun 17, 2009
4:08 pm
9439
I am using a combobox in VB2008 with a total of 8 items. Can I make an item not visible depending on if a channel is availble or do I have to rewrite the...
Brian
blue_eagle74
Offline Send Email
Jun 17, 2009
4:08 pm
9440
Hi Brian, Try the following code in the Button_Click event: TabControl1.SelectTab(1) or TabControl1.SelectedIndex = 1 where 1 is the second tab. Remember the...
Dennis Lackey
dlackey150
Offline Send Email
Jun 17, 2009
4:08 pm
9441
Hi Brian, You can use, for example: TabControl1.SelectTab(Index) or TabControl1.SelectedIndex = Index Search help for 'Tabcontrol Class' should give you more...
Dennis Lackey
dlackey150
Offline Send Email
Jun 17, 2009
4:09 pm
9442
Hello All.. I am beginner programmer... I have one problem... When I insert the date picked from the system into Sql Server 2005, it doesnt store the date...
Mufaddal Mansoor
mufaddalmansoor
Offline Send Email
Jun 17, 2009
4:10 pm
9443
another best book " Mastering Visual Basic 2008" by Evangelos Petroutsos ... -- ~SN~ [Non-text portions of this message have been removed]...
Somesh N
shekar_sn
Offline Send Email
Jun 18, 2009
5:11 pm
9444
Greetings I have to generate box, bundle and serial numbers as identifiers for a Store Room System. I tried using an arraylist but got an error that: "Index...
mary369_99
Offline Send Email
Jun 18, 2009
5:11 pm
9445
I think I found a way, it works so far. When I connect to my external target via the serial port the channels will update. Does anyone have a better way to...
Brian
blue_eagle74
Offline Send Email
Jun 18, 2009
5:11 pm
9446
Dim channels As Short = 3 'Will be updated with number of channels cbTemp.Items.Clear() For i As Integer = 1 To channels cbTemp.Items.Add(i.ToString) Next ...
Dave Cranidge
dcranidge
Offline Send Email
Jun 19, 2009
5:37 pm
9447
Hi I modified the code, but still getting the error: Dim box, bundle, serial, count As Integer Dim SerialNum As New ArrayList(4) count = CInt(TxtSerial.Text) ...
mary369_99
Offline Send Email
Jun 19, 2009
6:08 pm
9448
Hi I want to generate 4 sets of numbers with relationships. First set will have +- 1000, second set about 8000 and the third about 600 000. This will then be...
mary369_99
Offline Send Email
Jun 22, 2009
4:47 pm
9449
I'm using a tool that uses VB to insert data into an Access DB that it creates. I'm getting the following error msg when it's running. Syntax error in string...
Joe
joefonseca79
Offline Send Email
Jun 23, 2009
6:07 pm
9450
Dear all You are requested to provide the guidelines/reference material of excel macros. I would really appreciate if anyone can provide the sample macros as...
minhaz nayani
minnayani
Offline Send Email
Jun 23, 2009
6:07 pm
9451
Dear all You are requested to provide the guidelines/reference material of excel macros. I would really appreciate if anyone can provide the sample macros as...
minhaz nayani
minnayani
Offline Send Email
Jun 25, 2009
5:17 pm
9452
Hi, all. I have this MDI form as startup form and in which I have a menu that calls the other parts of the application. Also, in the blank area of the MDI form...
Pedro
pedrokarneiro
Offline Send Email
Jun 26, 2009
5:38 pm
Messages 9423 - 9452 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