Abandoned [RELEASE] Trade Computer Extension

Status
Thread Closed: Not open for further replies.
Updated (V1.33b TEST2). Please try again.

tested and its odd, the main panel position is set at say 450 and its where i want it, restart the program and its remembering the setting in the main panel options but, its set to the right of my screen, now when i then set the number to say 500 the main panel is shifted to the left of the middle of the screen.

The reason its odd is if it was set to 450 and i set it to then 500 it should have moved right not left?

The trade screen etc is not remembering where i set it too and i think its related to the main panel problem, its almost like its taking the main panel number and adding what i put into the trade panel position and making the panel off to the right at a setting of around 1076.

Hope this makes some sense .....
 
tested and its odd, the main panel position is set at say 450 and its where i want it, restart the program and its remembering the setting in the main panel options but, its set to the right of my screen, now when i then set the number to say 500 the main panel is shifted to the left of the middle of the screen.

The reason its odd is if it was set to 450 and i set it to then 500 it should have moved right not left?

The trade screen etc is not remembering where i set it too and i think its related to the main panel problem, its almost like its taking the main panel number and adding what i put into the trade panel position and making the panel off to the right at a setting of around 1076.

Hope this makes some sense .....

Ehh, that sounds wired. Okay, will release another Test-Version soon.

Updated (V1.33b TEST3). Please try again.
 
Last edited:
Ehh, that sounds wired. Okay, will release another Test-Version soon.

Updated (V1.33b TEST3). Please try again.

from what i can see this works much better and all the panel align to the centre of the screen much better.
Changing the settings now seems to be remembered.

The only issue i have is the trade scout window has gone way off my screen and i cant get to it to change its position, caused by my own error oops, how to fix please :)
 
from what i can see this works much better and all the panel align to the centre of the screen much better.
Changing the settings now seems to be remembered.

The only issue i have is the trade scout window has gone way off my screen and i cant get to it to change its position, caused by my own error oops, how to fix please :)

Please change the position for the Trade Scout panel at the panel.mdb database at your DB folder (Scout_X or Scout_Y) to fix off-screen panels.

Thanks for your help fixing this issue.

Update (V1.34) released:
- Final panel positioning fix
- Language database added. First step in translating TCE to german and frensh: All commodities and categories are translated into the OCR language selected at Pre-Start or Options panel.
 
Last edited:
Please exchange this
Code:
        Worksheets("DB_StPrices").Activate
        With ActiveWorkbook.Worksheets("DB_StPrices")
        lLZeile = .Cells(Rows.Count, 1).End(xlUp).row
        iLSpalte = .Cells(1, Columns.Count).End(xlToLeft).Column
        .Range(Cells(1, 1), Cells(lLZeile, iLSpalte)).Sort Key1:=.Range("B1"), Order1:=xlAscending, Key2:=.Range("C1"), Order2:=xlAscending, Header:=xlYes, OrderCustom:=1, MatchCase:=False, Orientation:=xlTopToBottom
        End With
with that
Code:
    Worksheets("DB_StPrices").Activate
    ActiveWorkbook.Worksheets("DB_StPrices").Sort.SortFields.Clear
    ActiveWorkbook.Worksheets("DB_StPrices").Sort.SortFields.Add Key:=Range( _
        "B2:B100001"), SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:= _
        xlSortNormal
    ActiveWorkbook.Worksheets("DB_StPrices").Sort.SortFields.Add Key:=Range( _
        "C2:C100001"), SortOn:=xlSortOnValues, Order:=xlAscending, DataOption:= _
        xlSortNormal
    With ActiveWorkbook.Worksheets("DB_StPrices").Sort
        .SetRange Range("A1:F100001")
        .Header = xlYes
        .MatchCase = False
        .Orientation = xlTopToBottom
        .SortMethod = xlPinYin
        .Apply
    End With

Tell me, if that works. Thanks.

I replaced the code at three locations, but the error persists:
2015-02-15 18_31_19-Panel_Prices.png2015-02-15 18_34_37-Microsoft Visual Basic for Applications - TCE.xlsm - [Panel_Prices (Code)].png
 
Running EliteOCR V1.34

Getting an Error when I try to add a new station to Database

Station_Add.png

Also getting the following runtime error when clicking commodity

Commodity.jpg

Could this be caused from using my backed up database from V1.31e in the new V1.34 ??? If so any way to retain my info
 
Last edited:
I noticed, that I had the language setting in the .ini set to eng, but used ED in german. I suggest to implement an option to choose the languages not only in the ini-file but in the options panel too.
 

Ian Phillips

Volunteer Moderator
I noticed, that I had the language setting in the .ini set to eng, but used ED in german. I suggest to implement an option to choose the languages not only in the ini-file but in the options panel too.

In the Launcher
Options -> Select Language
 
I noticed, that I had the language setting in the .ini set to eng, but used ED in german. I suggest to implement an option to choose the languages not only in the ini-file but in the options panel too.

There is a language selection at the options panel.
 
Last edited:
That's not, what I meant. I know abt this...

- - - - - Additional Content Posted / Auto Merge - - - - -



Noticed it now. I edited the language settings in the .ini-file to both "deu" and some program restarts later, TCE started to present the commodities in english again. strange...

Please change the TCE language back to eng. Other languages are not supported now for TCE.
Found the error, that reset to english. Fixed also in next update.
 
Last edited:
I updated to 1.34 and now I have the START OCR SCAN option on the Commodity panel.

When I run the OCR scan, it only updates the Galactic Avg Cr column. It does not update Sell, Buy or Stock.

Is that a glitch with the program, or am I supposed to enter those manually?
 
Hi Eventure,

Just to let you know the position fix has worked for me, thanks ;)
However since 1.33a(? iirc) the best sell locations on the trade info screen is listing the star ID instead of the station:
LDVbwwp.png


When clicked, I get a debug 'mismatch' error (probably to do with the wrong data). They show ok in other places though, inc the trade scout.
65QyG1L.png
 
On the TRADE panel, how do you change the Selected Station? It seems to be permanently set to LHS 3447.

I have entered multiple stations into the Database, but do not understand how to switch between them.
 
Hi Eventure,

Just to let you know the position fix has worked for me, thanks ;)
However since 1.33a(? iirc) the best sell locations on the trade info screen is listing the star ID instead of the station:


When clicked, I get a debug 'mismatch' error (probably to do with the wrong data). They show ok in other places though, inc the trade scout.

Yeah, saw it too, next update will fix this.
 
Status
Thread Closed: Not open for further replies.
Back
Top Bottom