The Forums on slxdeveloper.com are now retired. The forum archive will remain available for the time being. Thank you for your participation on slxdeveloper.com!
|
|
Missing Form Component
Posted: 05 Apr 06 5:16 AM
|
fiogf49gjkf0d Hey everybody,
i have a popup form dialog, my problem is that some component on that form was not rendered correctly. After i drag my mouse pointer over the component, the component began to rendered on the part my mouse hovered. Is there any explanation for that.
thx, a lot -Fajar |
|
|
|
Re: Missing Form Component
Posted: 10 Apr 06 9:21 PM
|
fiogf49gjkf0d To be specific the component that had problem was listview, I don't know wether this is a mistake of mine or bugs from slx, but when i put a dummy listview on top of mylistview with zero height, my listview comes up, rendered correctly. Any explanation of this.
-Fajar |
|
|
|
Re: Missing Form Component
Posted: 12 Apr 06 2:09 AM
|
fiogf49gjkf0d I have seen the same weird "painting" behavior, Fajar. I simply deleted and readded the control (or possibly recreated the form from scratch) to resolve. I never figured out what the problem was.
Timmus |
|
|
|
Re: Missing Form Component
Posted: 12 Apr 06 10:57 AM
|
fiogf49gjkf0d I've seen this from time to time too, never knew the cause and Timmus' suggestion of just recreating is really your only hope. I do know that you'll experience some weird rendering issues with SLX is you add a manifest for saleslogix.exe (don't do this) to get themed controls on XP machines. If you have created a manifest for the exe then delete it (you'll only have problems and themed controls is coming in v7).
Of course, if you're not using a manifest with the exe (or don't know what this is) then don't worry about it and just stick with what Timmus suggested. |
|
|
|
Re: Missing Form Component
Posted: 12 Apr 06 11:31 AM
|
abortion pill over the counter in usa where to buy abortion pill in usa fiogf49gjkf0d I've also had recently exactly the same issue with the browser component on a popup form.
Populating the html property didn't work.
If however I show a message box (doesn't matter what the content is) before populateing the html property, it works. Bizarre.
To get it to work, I had to put a hidden memo field on the form. Populate the text property with the html and then have an onchange event on the mome box to populate the browser. This worked everytime. Still not sure what the problem was though. |
|
|
|
Re: Missing Form Component
Posted: 12 Apr 06 12:06 PM
|
fiogf49gjkf0d Martin, with the browser control I found that if I set the HTML property blank twice and then set it with the actual HTML it would work. It is retarded but at least we got it to work . Here is a code snippet from the executive dashboard:
Dim mvHelp
Set mvHelp = Application.MainViews.Add("ToolBox:HTML Help", 0, False) mvHelp.Height = 638 mvHelp.Width = 576 mvHelp.BorderStyle = 3 mvHelp.Caption = "HTML Help"
mvHelp.DetailsView.bcHelp.HTML = "" mvHelp.DetailsView.bcHelp.HTML = "" mvHelp.DetailsView.bcHelp.HTML = Me.HTML mvHelp.Showmodal
Timmus |
|
|
| |
|