CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com
Results 1 to 4 of 4
  1. #1
    Join Date
    Aug 2011
    Posts
    2

    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
    Attached Files Attached Files

  2. #2
    Join Date
    Jul 2008
    Location
    WV
    Posts
    5,362

    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.
    Last edited by DataMiser; August 14th, 2011 at 12:23 AM.
    Always use [code][/code] tags when posting code.

  3. #3
    Join Date
    Aug 2011
    Posts
    2

    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
    Last edited by advocate13; August 14th, 2011 at 01:50 AM.

  4. #4
    Join Date
    Jul 2008
    Location
    WV
    Posts
    5,362

    Re: Help VB6 + Access

    Can't get what?
    Always use [code][/code] tags when posting code.

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  





Click Here to Expand Forum to Full Width

Featured