Print Page | Close Window

big problem in vb.net

Printed From: Codejock Forums
Category: Codejock Products
Forum Name: Skin Framework
Forum Description: Topics Related to Codejock Skin Framework
URL: http://forum.codejock.com/forum_posts.asp?TID=16442
Printed Date: 16 May 2024 at 8:07am
Software Version: Web Wiz Forums 12.04 - http://www.webwizforums.com


Topic: big problem in vb.net
Posted By: mr.net
Subject: big problem in vb.net
Date Posted: 14 March 2010 at 9:01am
hello ::
 
We have a big problem in skinframe work in visual basic.net 2008
 
i use this code
 
 

skn.LoadSkin(CurDir() + "\Royale.msstyles", "")

skn.ApplyWindow(Me.Handle.ToInt32)

this code work good in main form olny but not aplly in others forms in the project i want solve this problem please

 
thanks
----------------------------



Replies:
Posted By: tobi
Date Posted: 14 March 2010 at 10:03am
Perhaps this may help:

http://forum.codejock.com/forum_posts.asp?TID=15996


Posted By: mr.net
Date Posted: 14 March 2010 at 10:45am
 uploads/20100121_225518_Problems_with_c.rar
  uploads/20100121_225747_Project1.NET.rar
 
the url download of examples doesn`t work
 
please upload here
 
thx


Posted By: tobi
Date Posted: 14 March 2010 at 10:51am
With .NET languages you have to manually apply skin for each toplevel window.

Just add these lines

  protected override void OnVisibleChanged(EventArgs e)
  {
   base.OnVisibleChanged(e);

   if (this.Visible)
   {
    frmMain.skinFramework.ApplyWindow(this.Handle.ToInt32());
    this.BackColor = skinFramework.GetColor(XtremeSkinFramework.XTPColorManagerColor.STDCOLOR_BTNFACE);
   }
  }


Posted By: mr.net
Date Posted: 29 March 2010 at 8:59pm
i want using in vb.net don`t c++ please help me
thx



Posted By: tobi
Date Posted: 30 March 2010 at 3:18am
Can you upload your test project here ?


Posted By: mr.net
Date Posted: 25 April 2010 at 10:35pm

thx i slove the problem by test and soultion is

 
write this code in other forms load action
 
form1.skn.ApplyWindow(Me.Handle.ToInt32)



Print Page | Close Window

Forum Software by Web Wiz Forums® version 12.04 - http://www.webwizforums.com
Copyright ©2001-2021 Web Wiz Ltd. - https://www.webwiz.net