Hi you can find some FAQ at the below link : http://www.vbcity.com/forums/faq.asp ... __________________________________ Do you Yahoo!? New and Improved Yahoo!...
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....
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)...
Pls help in doing the above subject thankz viju __________________________________ Do you Yahoo!? Yahoo! Mail - 50x more storage than other providers! ...
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...
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@...
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]...
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...
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...
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@...
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@...
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...
Try "IIf(PendingMember.value = "Yes","*","") ... __________________________________ Do you Yahoo!? New and Improved Yahoo! Mail - 100MB free storage! ...
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...
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...
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...
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...
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...
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...
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...
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...
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@...
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@...
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...
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...
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...