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...
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 6267 - 6296 of 9531   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6267
Hello everyone, I'm wondering what would be the BEST way to parse a file. I've come up with 3 ideas. 1) Read File Line by line and parse each line...
pogowolf@...
pogowolf
Offline Send Email
Nov 1, 2004
9:50 pm
6268
I would read the file line by line, and load the data into a structure (ummm...Class) in VB. I would avoid reading and writing to the file except when i had...
Nickolaos Fotopoulos
ooweaseloo
Offline Send Email
Nov 1, 2004
9:55 pm
6269
Depends on the complexity of the syntax you must parse, AND the sizes of text files. ... From: pogowolf@... To: visualbasic_official@yahoogroups.com ...
;-) jim
jimhollandjr
Offline Send Email
Nov 1, 2004
11:14 pm
6270
Dear Friends, I have spent three years developing a software in Visual Basic called Banerjeepad. The software is available for download at the following...
banerjee_saikat
Offline
Nov 2, 2004
10:07 am
6271
Option Explicit Dim msngPrices(0 To 100, 0 To 2) As Variant Private Sub AddItem_Click() Dim psngExtPrce As Single If cboProducts.ListIndex > -1 Then If...
yogi_37311
Offline
Nov 2, 2004
10:12 pm
6272
Hi If u r using a control to detect the call then it will have a field to get the Incoming call Id. Or else U can use the MSCOM control in Vb which will give u...
Ramachandra.S.Ekbote
ramachandra_...
Offline Send Email
Nov 3, 2004
5:57 pm
6273
Hi Its useless to avoid such error, instead you have to resolve such errors specially related to CR. See, this error mostly occured when parameters are not...
VB2TheMAX
livingforvb
Offline Send Email
Nov 3, 2004
5:57 pm
6274
Im wanting to Connect to a MDB Msaccess database, and be able to select items from that database from a DB-grid thru Checkboxes, Then Once everything Is...
Brian E Boothe
castertroy67
Offline Send Email
Nov 8, 2004
6:29 pm
6275
If I use the wizard in VB.Net to create a data grid based on a database, I get the db column names as the column names for the data grid as well. How do I go...
Charles Parks
cpbgark
Offline Send Email
Nov 9, 2004
4:54 pm
6276
Is there a place to download a basic version of a vb script that does Search and Replace within a file without opening the file?...
Charles Parks
cpbgark
Offline Send Email
Nov 9, 2004
11:01 pm
6277
Right click on the grid, select property builder, then select columns. All the columns would be displayed. you can modify the "Header Text" as you wish to be...
V Karthick
cartque
Offline Send Email
Nov 10, 2004
4:00 am
6278
dear programmers, I got a problem with database i created a event for cboname_change() so that i can determine if the name and the data have been added in. ...
ByteSurfer
burnerbyte
Online Now Send Email
Nov 10, 2004
5:50 pm
6279
I don't see anything about columns or "header text" listed under the properties. ... From: V Karthick [mailto:karthickv@...] Sent: Tuesday, November 09,...
Charles Parks
cpbgark
Offline Send Email
Nov 10, 2004
5:51 pm
6280
there's no way to do a search and replace in code without opening the file to at least read it. _____ From: Charles Parks [mailto:cp@...] Sent: Tuesday,...
pogowolf
Offline Send Email
Nov 10, 2004
5:51 pm
6281
By open I mean with a text editor, not a command in the VBScript file. ... From: PogoWolf [mailto:pogowolf@...] Sent: Wednesday, November 10, 2004 7:38...
Charles Parks
cpbgark
Offline Send Email
Nov 10, 2004
6:30 pm
6282
I'm sorry, I guess I'm not understanding the question. =) what are you trying to understand? like HOW a search a replace works? _____ From: Charles Parks...
pogowolf
Offline Send Email
Nov 10, 2004
11:41 pm
6283
Hey all, I have this code: Dim options As RegexOptions = RegexOptions.None Dim regex As Regex = new Regex(BlackList(0), options) Dim input As string =...
pogowolf
Offline Send Email
Nov 10, 2004
11:41 pm
6284
hehehe.. never mind, I was able to figure it out. =) _____ From: PogoWolf [mailto:pogowolf@...] Sent: Wednesday, November 10, 2004 1:40 PM To:...
pogowolf
Offline Send Email
Nov 11, 2004
7:23 pm
6285
I haven't any experience VB script but I'm trying to create a vb script that will 1) Will take in four variables: Originial FileName Bad Phrase Replace Phrase...
Charles Parks
cpbgark
Offline Send Email
Nov 11, 2004
7:23 pm
6286
Well the easiest way would be to use the FileSystem Object to read/write the file, And the then regual expressions to do the search and replace. FileSystem...
pogowolf
Offline Send Email
Nov 12, 2004
11:58 am
6287
Hi I am trying to make a mdi database application. I would like to know if there is a way to dynamically connect to the sql database with vb.net. I was able...
elnthn
Offline Send Email
Nov 12, 2004
11:58 am
6288
Well another way would be to just grab the needed data via a Function. Then you can display it anyway you wish. I have a function that I tend to use that goes...
pogowolf
Offline Send Email
Nov 12, 2004
5:09 pm
6289
Dear Friends, I have trouble accessing MS Access 2002 database using DAO data control even with VB 6.0(SP6). If the database is NOT password protected, data...
rocunaman
Offline Send Email
Nov 12, 2004
10:09 pm
6290
Thanks, for the information. I am using R:base 7.1. ... From: PogoWolf [mailto:pogowolf@...] Sent: Thursday, November 11, 2004 1:42 PM To:...
Charles Parks
cpbgark
Offline Send Email
Nov 12, 2004
10:09 pm
6291
Well I quit using DAO a long time ago. I also never use data controls unless the app is very very simple. ... From: rocunaman To:...
;-) jim
jimhollandjr
Offline Send Email
Nov 12, 2004
10:16 pm
6292
Thanks for the info James holland. However, I need to use DAO data control for SQL queries with "LIKE" clause. For example, if I would like to search all...
rocunaman
Offline Send Email
Nov 15, 2004
5:58 pm
6293
Hi, I'm using VB for Excel 97 and would like to have a routine where I can look up a file before opening it to make sure the file's there. If the file doesn't...
Adam E.
ameyring
Offline Send Email
Nov 15, 2004
9:36 pm
6294
Use "LIKE 'S%'". ... From: rocunaman [mailto:vicgan@...] Sent: Monday, November 15, 2004 01:28 To: visualbasic_official@yahoogroups.com Subject: Re:...
Richard Rogers
rrogersatwork
Offline Send Email
Nov 15, 2004
9:36 pm
6295
*I am building a webbrowser with the common browser control in VB6 and I need to allow or not : Java,ActivX,JavaScript *Also I want to disable right mouse...
bunnyfacebunnyface
bunnyfacebun...
Online Now
Nov 16, 2004
7:35 pm
6296
hii, This is my first mail to this group ,i want to know two things 1. can anyone tell me how can we increase/decrease the volume of computer through vb.net 2....
abhishek joshi
ak_joshi4u
Offline Send Email
Nov 16, 2004
7:35 pm
Messages 6267 - 6296 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