Inside Sabertooth
Learn how Sabertooth uses 3ds Max to create 3D interactive projects, including HBO Go’s Game of Thrones interactive experience
  • 1/3
You are here: Forum Home / Autodesk 3ds® Max® / MaxScript / Tab Strip "activeX"? with 64 bit
  RSS 2.0 ATOM  

Tab Strip "activeX"? with 64 bit
Rate this thread
 
26299
 
Permlink of this thread  
avatar
  • joegunn
  • Posted: 28 April 2009 01:41 AM
  • Location: NYC
  • Total Posts: 113
  • Joined: 23 August 2006 11:21 AM

OK so I starting putting together a script on max 2008 32bit using the “MSComctlLib.TabStrip.2”

Then when I go to use it on a 64bit version of max I get an error.  Some sort of activeX error.

I’m guessing it has something to do with activeX not working on 64bit.

Anyway, does anyone know how to make a “Tabbed” script that will work on 64bit?

Thanks



max2008-11

Replies: 0
avatar
  • SITT
  • Posted: 28 April 2009 05:14 AM

dotNet in max 64bit



i am Chinese, my English is very poor,thank you for talk
MSN:sitt#live.cn

Replies: 0
avatar
  • joegunn
  • Posted: 28 April 2009 12:21 PM

Yes I’ve figured out that going forward I’m going to need to figure out dotNet :(

Does anyone know where to find examples of dotnet for maxscripts?  The help file doesn’t have any good documentation on dotnet with maxscript, there’s only like 2 or 3 examples.

Basically I have a completed script now that I’ll have to rework the UI Tabs since I can’t use activeX.  So is there any way to make tabs with dotnet.  Something that I can figure out with an example.  I don’t really get dotnet at all since I’m used to maxscript now.

thanks



max2008-11

Replies: 0
avatar

http://paulneale.com/tutorials/dotNet/dotNet.htm



Replies: 0
avatar
  • SITT
  • Posted: 29 April 2009 01:07 AM

sorry , my english very poor
if you need tabepage with dotnet
hope this can give you some help

Try (DestroyDialog TestDotNetTabControl) CatCh()
rollout TestDotNetTabControl  "TestDotNetTabControl"  height:240 width:220
    
(
        
dotNetControl DotNetTab "TabControl"   height:200 width:200
        Button BtnAddTabPage 
"BtnAddTabPage"
        
on BtnAddTabPage pressed  do
        (
            
TempTabPageA DotNetObject   "System.Windows.Forms.TabPage"
            
DotNetColor DotNetClass  "System.Drawing.Color" 
            
TempDotNetColor =  DotNetColor.FromArgb (random 0 255 )  (random 0 255 )  (random 0 255 )
            
TempTabPageA.BackColor TempDotNetColor
            TestDotNetTabControl
.DotNetTab.Controls.Add TempTabPageA
        
)
    )
CreateDialog TestDotNetTabControl


i am Chinese, my English is very poor,thank you for talk
MSN:sitt#live.cn

Replies: 0
avatar
  • SITT
  • Posted: 29 April 2009 01:10 AM

look this



i am Chinese, my English is very poor,thank you for talk
MSN:sitt#live.cn

Attachment Attachment
Replies: 0
avatar
  • SITT
  • Posted: 29 April 2009 01:13 AM

and this url
http://msdn.microsoft.com/en-us/library/system.windows.forms.tabcontrol.aspx

you can download full document for dotnet on this url
http://www.microsoft.com/downloa...62-4ebb-83c7-d3c5ff92a373



i am Chinese, my English is very poor,thank you for talk
MSN:sitt#live.cn

Replies: 0
avatar
  • joegunn
  • Posted: 29 April 2009 03:28 PM

Thanks for the information and replies.  I will have a look at your example.

Again the problem with dotnet is this.

I have a maxscript which works.

I want to use that same code with a dotnet fancy UI.

No easy way to go about it.

Thanks



max2008-11

Replies: 0
avatar
  • pen
  • Posted: 30 April 2009 11:29 AM

Joe, I have the first half of a dotNet tab control tut written so I uploaded if for you. It is not
complete but should get you started.

http://paulneale.com/tutorials/dotNet/dotNet.htm

joegunn wrote:
> Thanks for the information and replies.  I will have a look at your example.
>
> Again the problem with dotnet is this.
>
> I have a maxscript which works.
>
> I want to use that same code with a dotnet fancy UI.
>
> No easy way to go about it.
>
> Thanks
> --
> joegunn3d.com
>
> “If you don’t know...better ask somebody”



Paul Neale
PEN Productions Inc.
penproductions.ca / paulneale.com
Master Classes for Max, Mudbox and Composite
DotNet Tutorials

MX Driver Car and Trailer Rig On Sale!

Replies: 0
avatar
  • pen
  • Posted: 01 May 2009 09:54 AM

I have just uploaded the completed tutorial.

http://paulneale.com/tutorials/dotNet/tabControl/tabControl.htm

penn wrote:
> Joe, I have the first half of a dotNet tab control tut written so I uploaded if for you. It is not
> complete but should get you started.
>
> http://paulneale.com/tutorials/dotNet/dotNet.htm
>
> joegunn wrote:
>> Thanks for the information and replies.  I will have a look at your example.
>>
>> Again the problem with dotnet is this.
>>
>> I have a maxscript which works.
>>
>> I want to use that same code with a dotnet fancy UI.
>>
>> No easy way to go about it.
>>
>> Thanks
>> --
>> joegunn3d.com
>>
>> “If you don’t know...better ask somebody”
> --
> Paul Neale
> PEN Productions Inc.
> penproductionsinc.com / paulneale.com
>
> DotNet Tutorials
>
> MX Driver Car and Trailer Rig On Sale!
> Intermediate Rigging DVD’s 1, 2, 3,4 and Set on sale.



Paul Neale
PEN Productions Inc.
penproductions.ca / paulneale.com
Master Classes for Max, Mudbox and Composite
DotNet Tutorials

MX Driver Car and Trailer Rig On Sale!

Replies: 0
avatar
  • SITT
  • Posted: 01 May 2009 10:27 AM

:-) :-) :-) :-)
paul
wahahaha



i am Chinese, my English is very poor,thank you for talk
MSN:sitt#live.cn

Replies: 0