Print Page | Close Window

Crystal Reports Scrollbar Not Working

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=16988
Printed Date: 05 May 2024 at 9:56pm
Software Version: Web Wiz Forums 12.04 - http://www.webwizforums.com


Topic: Crystal Reports Scrollbar Not Working
Posted By: SHAN
Subject: Crystal Reports Scrollbar Not Working
Date Posted: 21 July 2010 at 11:06pm
Hi,
 
 I am using Skin frame work with My Application.
 
 I have Crystal Reports 10. Scrollbars not working...!
 
 How to Avoid this ? Or Is there any way to not apply skinframe work to only this control?
 
 If so How to do that?
 
 Thanks in Advance


-------------
Product: Xtreme SuitePro (ActiveX) version 15.0.2
Platform: Windows 7 Professional
Language: Visual Basic 6.0



Replies:
Posted By: Aaron
Date Posted: 23 July 2010 at 4:23pm
Hi,
 
Maybe this will help you: https://forum.codejock.com/forum_posts.asp?TID=14623&KW=Crystal+Reports&PID=54361#54361 - https://forum.codejock.com/forum_posts.asp?TID=14623&KW=Crystal+Reports&PID=54361#54361
 
 


-------------
Product: Xtreme SuitePro (ActiveX) version 15.0.2
Platform: Windows XP (32bit) - SP 2
Language: Visual Basic 6.0

Zero replies is not an option....


Posted By: SHAN
Date Posted: 25 July 2010 at 2:22am
Hi Aaron,
 
  Still the Same Issue after Adding  InitCommonControls  & InitCommonControlsEx for First form to Load.
 
      Any other Solution? Is there any way to mention Exclude Skinframework for Crystal Reports Control? Or
    
      Exclude Skinframework form  applying Certain form?(I don't want to skin Report Form or Report Control)
 
      Please help...!
 
 


-------------
Product: Xtreme SuitePro (ActiveX) version 15.0.2
Platform: Windows 7 Professional
Language: Visual Basic 6.0


Posted By: Aaron
Date Posted: 25 July 2010 at 5:22am
Hi,
 
I don't know why it didn't work for you, the member in that post said it now worked???
 
Well, you could try following:
 
You can try with ExcludeModule method
SkinFrameWork.ExcludeModule "Name of OCX or DLL"
 
or
 
don't apply new windows to be skinned automatically: SkinFrameWork.AutoApplyNewWindows = False
and when a form has to be loaded, apply skin manually: SkinFramework.ApplyWindow(MyForm.hWnd)
 
 
 


-------------
Product: Xtreme SuitePro (ActiveX) version 15.0.2
Platform: Windows XP (32bit) - SP 2
Language: Visual Basic 6.0

Zero replies is not an option....


Posted By: SHAN
Date Posted: 04 August 2010 at 3:28am
Hi,
 
Now my crystal Reports Scrollbar is Working with this code...!
 
SkinFramework1.ExcludeModule ("CRDB_ADOPLUS.DLL")
 
 
Thanks a lot  for Support
 


-------------
Product: Xtreme SuitePro (ActiveX) version 15.0.2
Platform: Windows 7 Professional
Language: Visual Basic 6.0


Posted By: SHAN
Date Posted: 27 September 2010 at 8:42am
Hi,
 
  Again I got problem with Crystal Reports Scrollbar  in the latest verion of
 
 Xtreme SuitePro (ActiveX) version 13.4.1  even i use the exclude Module.

This problem was solved in Xtreme SuitePro (ActiveX) version 13.4.0

 while using

SkinFramework1.ExcludeModule ("CRDB_ADOPLUS.DLL")
 
Any Changes in new Version? Anyone Pls help...!



-------------
Product: Xtreme SuitePro (ActiveX) version 15.0.2
Platform: Windows 7 Professional
Language: Visual Basic 6.0


Posted By: Xander75
Date Posted: 27 September 2010 at 9:09am
Hi,

If you look at the top of the SkinFramework Forum you will notice a posting (by SuperMario) of a somewhat similar issue for the RTF control and its scrollbars. Have you tried loading the Crystal Report dll's using this technique?

Here's the link: http://forum.codejock.com/forum_posts.asp?TID=17251&title=ms-rtf-skinning - http://forum.codejock.com/forum_posts.asp?TID=17251&title=ms-rtf-skinning


-------------
Product: Xtreme SuitePro (ActiveX) v15.3.1
Platform: Windows 7 64-bit (SP1) Professional Edition
Languages: C#.Net using Visual Studio 2012 & Visual Basic 6.0 (SP6)


Posted By: SHAN
Date Posted: 27 September 2010 at 11:15pm
Hi Xander 75
 
 Thanks for Reply ...!
 
 I tried this method  and still the same issue (Scollbar is Locked)
 
Private Declare Function LoadLibrary Lib "kernel32" Alias "LoadLibraryA" (ByVal lpLibFileName As String) As Long

Add in MDIForm_Load before  load skin:
     LoadLibrary "CRDB_ADOPLUS.DLL" 'For Crystal Reports


-------------
Product: Xtreme SuitePro (ActiveX) version 15.0.2
Platform: Windows 7 Professional
Language: Visual Basic 6.0


Posted By: Oleg
Date Posted: 28 September 2010 at 1:14am
Did you really try last suggestion from  https://forum.codejock.com/forum_posts.asp?TID=14623&KW=Crystal+Reports&PID=54361#54361 - https://forum.codejock.com/forum_posts.asp?TID=14623&KW=Crystal+Reports&PID=54361#54361  ? To put Crystal Report as hidden window to main form ?

-------------
Oleg, Support Team
CODEJOCK SOFTWARE SOLUTIONS


Posted By: SHAN
Date Posted: 29 September 2010 at 12:56pm
Hi,
Now m
y scrollbar is working  while I load the Skin from my Splash Screen Form Which is to be Loaded first...! But I am facing the problem with My MDI form & all other forms not using the Skin Style....!
Any Idea? this is my code in splash form....
 
' frm Splash ( First form to Load, Not a child Form)
 
Private Sub Form_Load()
SkinFramework1.LoadSkin App.Path + "\Styles\Office2007.cjstyles", ""
SkinFramework1.ApplyWindow Me.hWnd
SkinFramework1.ApplyOptions = xtpSkinApplyColors + xtpSkinApplyFrame + xtpSkinApplyMenus + xtpSkinApplyMetrics
End sub
 

 


-------------
Product: Xtreme SuitePro (ActiveX) version 15.0.2
Platform: Windows 7 Professional
Language: Visual Basic 6.0


Posted By: Xander75
Date Posted: 30 September 2010 at 3:25am
Hi,
 
When your application has finished loading do you unload the Splash Form? If so this will cause the SkinFramework to stop skinning! If you do unload then try hiding the Splash form instead.
 


-------------
Product: Xtreme SuitePro (ActiveX) v15.3.1
Platform: Windows 7 64-bit (SP1) Professional Edition
Languages: C#.Net using Visual Studio 2012 & Visual Basic 6.0 (SP6)



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