|
|
|
Tell us what you think of the site.
|
Autodesk Media & Entertainment User Community
|
Autodesk® 3ds Max®
|
|
Autodesk® Maya®
|
|
Autodesk® Softimage®
|
|
Autodesk® MotionBuilder®
|
|
Autodesk® Mudbox™
|
|
Autodesk® ImageModeler™
|
|
Autodesk® Sketchbook® Pro
|
|
Autodesk® Smoke on Mac®
|
| Tab Strip "activeX"? with 64 bit
|
|
|
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
|
|
|
|
dotNet in max 64bit
i am Chinese, my English is very poor,thank you for talk
MSN:sitt#live.cn
|
|
|
|
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
|
|
|
|
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
|
|
|
|
look this
i am Chinese, my English is very poor,thank you for talk
MSN:sitt#live.cn
| Attachment
|
|
|
|
|
|
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
|
|
|
|
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
|
|
|
|
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!
|
|
|
|
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!
|
|
|
|
:-) :-) :-) :-)
paul
wahahaha
i am Chinese, my English is very poor,thank you for talk
MSN:sitt#live.cn
|
|
|
|
|
|