SkinFrame with C# 2008 |
Post Reply |
Author | |
donghun9
Newbie Joined: 28 January 2008 Status: Offline Points: 1 |
Post Options
Thanks(0)
Posted: 28 January 2008 at 3:21am |
I'm using C#.NET 2008.
When I compiled and executed the C# MDI skin sample of codejock xtreme suite professional 11.2.2, everything worked fine.
I created a new C# Winforms Application project(supported .NET Framework 3,5), added some ActiveX files(XtremeCommandBars.v11.2.2.ocx, XtremeDockingPane.v11.2.2.ocx, XtremeSkinFramework.v11.2.2.ocx) in references, copied some lines of sample project in my project file, and compiled.. but I couldn't compile with showing below errors..
C:\Project\TestCSharp\Form1.cs(14,17): error CS0246: The type or namespace name 'AxXtremeCommandBars' could not be found (are you missing a using directive or an assembly reference?)
C:\Project\TestCSharp\Form1.cs(15,17): error CS0246: The type or namespace name 'AxXtremeDockingPane' could not be found (are you missing a using directive or an assembly reference?) C:\Project\TestCSharp\Form1.cs(16,23): error CS0246: The type or namespace name 'AxXtremeSkinFramework' could not be found (are you missing a using directive or an assembly reference?) my code is..
using System;
using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Windows.Forms; namespace TestCSharp
{ public partial class Form1 : Form { private AxXtremeCommandBars.AxCommandBars CommandBars; private AxXtremeDockingPane.AxDockingPane DockingPaneManager; static public AxXtremeSkinFramework.AxSkinFramework skinFramework; public Form1()
{ InitializeComponent(); } } } How can I use SkinFrameWork in my projects?
plz give me a reply.. thinks..
(Can I get a tutorials how to use SkinFrameWork in c# project?)
|
|
Hi~
|
|
Oleg
Admin Group Joined: 21 May 2003 Location: United States Status: Offline Points: 11234 |
Post Options
Thanks(0)
|
Hi, Right click in VS Toolbox,
select "Choose items",
add ocx to toolbox,
drag ocx from toolbox to form.
|
|
Oleg, Support Team
CODEJOCK SOFTWARE SOLUTIONS |
|
Post Reply | |
Tweet
|
Forum Jump | Forum Permissions You cannot post new topics in this forum You cannot reply to topics in this forum You cannot delete your posts in this forum You cannot edit your posts in this forum You cannot create polls in this forum You cannot vote in polls in this forum |