how i can make that the identifiers can be used in some classes in
diferent files
for example i got this
ID_NewFile = wx.NewId()
in the file where are the main class Frame and App and i got in other
file other class Example Button and i want use the Identifier
ID_NewFile how i doit.
the file where i got the class button is imported from the main file
I usually have another module where I put all the stuff that I want to share between most modules. Then they can all import the module with the common stuff in it to use the stuff.
···
On 3/15/10 12:43 PM, iozk_Live wrote:
how i can make that the identifiers can be used in some classes in
diferent files
for example i got this
ID_NewFile = wx.NewId()
in the file where are the main class Frame and App and i got in other
file other class Example Button and i want use the Identifier
ID_NewFile how i doit.
the file where i got the class button is imported from the main file