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 6054 - 6083 of 9530   Oldest  |  < Older  |  Newer >  |  Newest
Messages: Simplify | Expand   (Group by Topic) Author Sort by Date ^
6054
Hi you can find some FAQ at the below link : http://www.vbcity.com/forums/faq.asp ... __________________________________ Do you Yahoo!? New and Improved Yahoo!...
Uğur Ekinci
ekugur
Offline Send Email
Aug 2, 2004
8:19 am
6055
I want to design a databse in SQL 2000, consist of the following. Can anybody help me what data type I should assign each. 1. EmpID (Numeric Value Only) 2....
ajwazaib
Offline Send Email
Aug 2, 2004
2:18 pm
6056
Dear Asif, Pretty elementary. Pls try this. EmpID as bigint(8) EmpName as varchar(50) EmpDesig as char(20) EmpSection as char(20) BasicSalary as decimal(9)...
Pradeep S
pradeepthegreat
Offline Send Email
Aug 3, 2004
5:17 am
6057
Dear Viswanathan Sundaresan, Thanks for prompt reply. Could you explain me why you recommend char, verchar etc. Best regards, Asif Pradeep S...
Asif
ajwazaib
Offline Send Email
Aug 3, 2004
2:38 pm
6058
Pls help in doing the above subject thankz viju __________________________________ Do you Yahoo!? Yahoo! Mail - 50x more storage than other providers! ...
Viju Kothanath
vijukothanath
Offline Send Email
Aug 3, 2004
2:39 pm
6059
hi vijay, you can use system stored procedre sp_password <oldpassword>,<new password> and execute it...prior to this u have to estb connection to ...
tejeshwer
Offline Send Email
Aug 3, 2004
4:36 pm
6060
use sp_password stored procedure Viju Kothanath <vijukothanath@...> wrote: Pls help in doing the above subject thankz viju ...
Bharat Chovatiya
chovbha
Offline Send Email
Aug 3, 2004
6:49 pm
6061
Hi all, I need a component (or dll or function) to separate a .txt document word by word (and puts into an array for example) for full-text document indexing...
MustafaÖZÇETİN
mustafaozcet...
Offline Send Email
Aug 4, 2004
12:05 am
6062
Can u tell me clearly what u want Arul. ... From: Mustafa VZGET]N [mailto:mustafaozcetin76@...] Sent: Wednesday, August 04, 2004 4:23 AM To:...
Arul Nayagam
arul@...
Send Email
Aug 4, 2004
5:59 am
6063
sounds like homework. ... From: Mustafa ÖZÇETİN To: visualbasic_official@yahoogroups.com Sent: Tuesday, August 03, 2004 5:53 PM Subject: [Visual Basic]...
;-) jim
jimhollandjr
Offline Send Email
Aug 4, 2004
6:09 am
6064
My main purpose is to achieve a full-text document indexing. After the documents are scanned and get OCR process (as .txt files), I will insert the document...
MustafaÖZÇETİN
mustafaozcet...
Offline Send Email
Aug 4, 2004
4:22 pm
6065
I've run into an odd issue. I've been building this application and it seems that some change i've made has altered its behaviour. Right now the application...
jamessamson
Offline Send Email
Aug 4, 2004
4:22 pm
6066
Hi To get the words use RegEx to split the string by word boundaries. In the event that VB6 RegEx doesn't support splitting (sorry can't remember off hand)...
Brett Errington
brett@...
Send Email
Aug 4, 2004
4:22 pm
6067
<>I know you were looking for a VB 6 example, but below is a VB.NET snippet that does something similar: ...
John
sam8812_n6@...
Send Email
Aug 4, 2004
6:57 pm
6068
Hi, I need help with a query. I am trying to add an asterix: "*" sign in a column where PendingMember.value = "yes". PendingMember is check box. How would I...
Amit Rami
amitrami3
Offline Send Email
Aug 4, 2004
9:44 pm
6069
Try "IIf(PendingMember.value = "Yes","*","") ... __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - 100MB free storage! ...
Darrell Adams
captain_51
Offline Send Email
Aug 5, 2004
3:55 pm
6070
hi, can u be more iilustrative abt the query bye tejeshwer [Un Employed] ... Hi, I need help with a query. I am trying to add an asterix: "*" sign in a column...
tejeshwer
Offline Send Email
Aug 5, 2004
3:55 pm
6071
I am trying to add a numbers column in front my report in MS Access. How do I add a column in the query that gives me the row count or the row number for the...
Amit Rami
amitrami3
Offline Send Email
Aug 5, 2004
3:56 pm
6072
I need to write a pdf upload function for a clients web application where the client can browse for and upload a pdf file and it is converted into a jpg and...
Mike Hoy
mikehoy
Offline Send Email
Aug 6, 2004
12:48 am
6073
Why? You have a free PDF reader. You also have pdf.ocx on any system that can read a PDF inside of IE. If you have to, you can do a screen capture of the PDF...
;-) jim
jimhollandjr
Offline Send Email
Aug 6, 2004
6:41 am
6074
The pdf upload function I need to write is for a clients admin tool where my client can take a advertisement ad circular that is already created in pdf format...
Mike Hoy
mikehoy
Offline Send Email
Aug 6, 2004
2:57 pm
6075
Well you can do all the screen capture, BMP -> JPG conversions in VB. Have you looked at the tools on the Adobe site? They may have what you need without...
;-) jim
jimhollandjr
Offline Send Email
Aug 6, 2004
3:28 pm
6076
i have done something like a marquee that scrolls across the desktop of your pc like news scroller in different tv channels. but there is a problem that when...
razher2000
Offline Send Email
Aug 9, 2004
2:28 am
6077
Hi all, I need a function to achieve this task: It will take a string that contains more than 1 spaces and will convert these multiple spaces into only 1...
MustafaÖZÇETİN
mustafaozcet...
Offline Send Email
Aug 9, 2004
1:43 pm
6078
In VB.NET s = System.Text.RegularExpressions.Regex.Replace(s, "\s+", " ") or if you don't want to use regular expressions While s.IndexOf(" ") > -1 s =...
Brett Errington
brett@...
Send Email
Aug 9, 2004
2:55 pm
6079
VB.NET solution: I think there is a better way to do this but.... Dim MyStr as String = "word1 word2 word3" Dim StringData() as String Dim...
John
sam8812_n6@...
Send Email
Aug 9, 2004
2:56 pm
6080
Hi, I think the we can use string builder class to solve the problem with one of it replace over loads methods...it is faster than normal string...
tejeshwer
Offline Send Email
Aug 9, 2004
3:47 pm
6081
Replace will only replace specific strings, with another string. The original poster needed to replace a variable length of spaces through out a string with a...
Nickolaos Fotopoulos
ooweaseloo
Offline Send Email
Aug 9, 2004
5:32 pm
6082
I have my front end application in VB 6. Back end is Access. I am trying to set security in access. I need the user to be allowed to write queries and...
Amit Rami
amitrami3
Offline Send Email
Aug 10, 2004
4:25 am
6083
possible solutions 1. set the query properties as readonly 2. create a view/snapshot and user would query the view and not the table bye...
tnp559
Offline
Aug 10, 2004
11:00 am
Messages 6054 - 6083 of 9530   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