You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi I'm struggling with analyzing evemon source code and as a newbie c++ progammer I have to admit to have some problems with following one path of app flow.
What I'm trying to achieve is to create new tab or add in overview tab special table for all the planetary colonies marged from all the characters. For now I found that Overview finds CharacterCollection and use them implanting at directed index, though it's good place to start diggin but no result so far.
Could you maybie help me track best place to start from?
I would be glad for any help (trying to improve programming skills).
The text was updated successfully, but these errors were encountered:
@ajarzyn , well, first off, it's not a C++ project but C#.
If you want to add a new tab to the overview, you could add a custom TabPage. Look in MainWindow.cs for the following methods:
AddOverviewTab() and LayoutTabPages().
These two methods are called when building the pages you see in the main window. Just make a duplicate of the overview tab and you should be good to go :)
Have fun and keep in mind: Practice makes perfect!
Hi I'm struggling with analyzing evemon source code and as a newbie c++ progammer I have to admit to have some problems with following one path of app flow.
What I'm trying to achieve is to create new tab or add in overview tab special table for all the planetary colonies marged from all the characters. For now I found that Overview finds CharacterCollection and use them implanting at directed index, though it's good place to start diggin but no result so far.
Could you maybie help me track best place to start from?
I would be glad for any help (trying to improve programming skills).
The text was updated successfully, but these errors were encountered: