Codejock Forums Homepage
Forum Home Forum Home > Codejock Products > ActiveX COM > Skin Framework
  New Posts New Posts RSS Feed - Crystal Reports Scrollbar Not Working
  FAQ FAQ  Forum Search   Events   Register Register  Login Login

Crystal Reports Scrollbar Not Working

 Post Reply Post Reply
Author
Message
SHAN View Drop Down
Groupie
Groupie
Avatar

Joined: 17 July 2010
Location: Dubai
Status: Offline
Points: 73
Post Options Post Options   Thanks (0) Thanks(0)   Quote SHAN Quote  Post ReplyReply Direct Link To This Post Topic: Crystal Reports Scrollbar Not Working
    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
Back to Top
Aaron View Drop Down
Senior Member
Senior Member
Avatar

Joined: 29 January 2008
Status: Offline
Points: 2192
Post Options Post Options   Thanks (0) Thanks(0)   Quote Aaron Quote  Post ReplyReply Direct Link To This Post Posted: 23 July 2010 at 4:23pm
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....
Back to Top
SHAN View Drop Down
Groupie
Groupie
Avatar

Joined: 17 July 2010
Location: Dubai
Status: Offline
Points: 73
Post Options Post Options   Thanks (0) Thanks(0)   Quote SHAN Quote  Post ReplyReply Direct Link To This Post 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
Back to Top
Aaron View Drop Down
Senior Member
Senior Member
Avatar

Joined: 29 January 2008
Status: Offline
Points: 2192
Post Options Post Options   Thanks (0) Thanks(0)   Quote Aaron Quote  Post ReplyReply Direct Link To This Post 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....
Back to Top
SHAN View Drop Down
Groupie
Groupie
Avatar

Joined: 17 July 2010
Location: Dubai
Status: Offline
Points: 73
Post Options Post Options   Thanks (0) Thanks(0)   Quote SHAN Quote  Post ReplyReply Direct Link To This Post 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
Back to Top
SHAN View Drop Down
Groupie
Groupie
Avatar

Joined: 17 July 2010
Location: Dubai
Status: Offline
Points: 73
Post Options Post Options   Thanks (0) Thanks(0)   Quote SHAN Quote  Post ReplyReply Direct Link To This Post 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
Back to Top
Xander75 View Drop Down
Senior Member
Senior Member
Avatar

Joined: 26 April 2007
Status: Offline
Points: 353
Post Options Post Options   Thanks (0) Thanks(0)   Quote Xander75 Quote  Post ReplyReply Direct Link To This Post 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
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)
Back to Top
SHAN View Drop Down
Groupie
Groupie
Avatar

Joined: 17 July 2010
Location: Dubai
Status: Offline
Points: 73
Post Options Post Options   Thanks (0) Thanks(0)   Quote SHAN Quote  Post ReplyReply Direct Link To This Post 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
Back to Top
Oleg View Drop Down
Admin Group
Admin Group


Joined: 21 May 2003
Location: United States
Status: Offline
Points: 11234
Post Options Post Options   Thanks (0) Thanks(0)   Quote Oleg Quote  Post ReplyReply Direct Link To This Post 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 ? To put Crystal Report as hidden window to main form ?
Oleg, Support Team
CODEJOCK SOFTWARE SOLUTIONS
Back to Top
SHAN View Drop Down
Groupie
Groupie
Avatar

Joined: 17 July 2010
Location: Dubai
Status: Offline
Points: 73
Post Options Post Options   Thanks (0) Thanks(0)   Quote SHAN Quote  Post ReplyReply Direct Link To This Post 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
Back to Top
Xander75 View Drop Down
Senior Member
Senior Member
Avatar

Joined: 26 April 2007
Status: Offline
Points: 353
Post Options Post Options   Thanks (0) Thanks(0)   Quote Xander75 Quote  Post ReplyReply Direct Link To This Post 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)
Back to Top
 Post Reply Post Reply
  Share Topic   

Forum Jump Forum Permissions View Drop Down

Forum Software by Web Wiz Forums® version 12.04
Copyright ©2001-2021 Web Wiz Ltd.

This page was generated in 0.156 seconds.