Jump to content
Search In
  • More options...
Find results that contain...
Find results in...

VB6 IDE errors on open / debug / compile


Kazako
 Share

Recommended Posts

Hey, so I took an older engine, did some stuff on another computer, moved stuff to a usb, wiped this computer and then installed vb6 again.

Here are my issues in order that they appear.

**ON PROJECT LOAD**

![](http://puu.sh/llPa8/57ab8b69d9.jpg)

I had this error before when I was programming in vb6, pressing okay on this didn't stop me from being able to load the project/change code/debug or compile, so I just worked with it as it was a minor inconvenience on opening the IDE.

![](http://puu.sh/llPfS/8e72df1a92.jpg)

This error is brand new. I did a few of the cmd "solutions" as mentioned on Google and nothing.

![](http://puu.sh/llPln/9b24bbb911.jpg)

This error goes back to and is probably caused by the OLE automation error, just a minor inconvenience really.

![](http://puu.sh/llPpo/ec422883a8.png)

After clicking ok, this pops up, again this is new, contents of the frmmain.log are below, however the contents of this file seems to vary between 1-6 different lines of errors, this is the one that appeared at the time of writing this.

```
Line 1254: Class RichTextLib.RichTextBox of control txtChat was not a loaded control class.
```

**DEBUG AND COMPILE ERRORS**

![](http://puu.sh/llPGq/5d11667ede.jpg)

This pops up when I click the debug button.

![](http://puu.sh/llPLS/b5db14a5ef.jpg)
The game opens to frmmenu and I can click login/register/credits/exit - when I login or create a character and proceed to log in I'm greeted by an issue with my text box (which I believe is related to the above txtChat.)

Upon clicking ok to the above error, I am taken to the code that's now causing trouble (whereas it didn't before.)
![](http://puu.sh/llPP2/3d1872afb7.png)

Any help with this would greatly be appreciated. I have a busy work schedule and real world responsibilities, so I lack the free time to devote more than a few hours per week on this (it's the first time I've had time since July to work on this project.) I'm now one hour in to a whole 8 hours I've managed to steal away for programming only to be greeted with this.
Link to comment
Share on other sites

  • 1 month later...
as it said on the error log

```
Line 1254: Class RichTextLib.RichTextBox of control txtChat was not a loaded control class.
```
RichTextbox component isn't added

First
![](http://i.imgur.com/Z0hLWhB.png)

Next:
![](http://i.imgur.com/WPXEKYh.png)
Check the RichTextBox, and press Ok

next:
delete your current txtChat and add a RichTextBox and name it txtChat

that should fix this problem
Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
 Share

×
×
  • Create New...