-
1 Attachment(s)
Help VB6 + Access
Help sir. About my program. db1 is my DB's name. Then Computerparts is my computer parts word that I want to spell check and I have another field named Classification. Now what I want is when I typed in textbox. I will input a word from Computerpart field (It's working) and space or other linking verb like. "is classified as" . Then after that a word from Classification field ( I dont know how to do it). So my sentence will like this "Disk drive is classified as Computer Component" or "Disk drive Computer Component" Then if i clicked the button. It will check if the Disk drive is really a Computer Component. And if it's not In listbox it will post what is its classification.
This is my spellchecker program
-
Re: Help VB6 + Access
You mean like
Code:
text1.text=RS(1).Value & " is classified as " & rs(2).Value
I normally do not download projects, post some of the code here where you are having an issue.
Be sure to use [code][/code] tags around your code when posting so the indentations are preserved and easier to read.
-
Re: Help VB6 + Access
I'll try that sir. Thanks. And sorry for posting my program. Thanks a lot sir
I can't get it
-
Re: Help VB6 + Access