User Profile & Activity

Yaniv Riezman Member
Page
of 3
Posted: November 3, 2009 3:27 AM

hi

using webdesktop 3.0.7200.305 and webui.net framework 3.0.5000.705 .

thx for replay.

Posted: October 7, 2009 8:32 AM

we just take the header name from sql data base , i think we tried to put english header text and its work

the only porblem is with hebrew ,.

there are 2 splitters the horzinatl works fine but the vertical when we try to move it get an error webpane is null or an object

Posted: September 30, 2009 10:34 AM

srry for the late replay ur sample works but we use diffrent code so..

here is the code that we use to build the webpane with hebrew

aspx=

<ISWebDesktop:WebPaneManager ID="WebPaneManager1" runat="server" EnableManagedTheming="True">
<ImagesSettings SplitterGripBottom="splitterbottom.gif" SplitterGripLeft="spiltterleft.gif"
SplitterGripRight="splitterright.gif" SplitterGripTop="splittertop.gif" />
<RootGroupPane Text="Root GroupPane" Name="RootGroupPane" AllowCollapse="Yes" AllowResize="Yes">
<Panes>
<ISWebDesktop:WebGroupPane Text="GroupPane Content" Name="koby" AllowCollapse="Yes" AllowResize="Yes">
</ISWebDesktop:WebGroupPane>
<ISWebDesktop:WebGroupPane Text="GroupPane Content" Name="avi" AllowCollapse="Yes" AllowResize="Yes">
</ISWebDesktop:WebGroupPane>
</Panes>
</RootGroupPane>
</ISWebDesktop:WebPaneManager>

cs=

protected void Page_Load(object sender, EventArgs e)
{
Orchestrate.initGeneralData();
DataTable dtPageParameters = Orchestrate.GetRecords(GeneralManagement.GetStoredProcedure(GeneralManagement.appStoredProcedure.sp_mul_get_main_page_parameters), 1).Tables[0];
MultyScreen multyScreen = Orchestrate.initMultyScreen(dtPageParameters);
WebGroupPane wgpUpper = (WebGroupPane)WebPaneManager1.RootGroupPane.Panes[0];
wgpUpper.GroupType = GroupPaneType.VerticalTile;
WebPane[] wp = new WebPane[dtPageParameters.Rows.Count];
WebGroupPane wgpLower = (WebGroupPane)WebPaneManager1.RootGroupPane.Panes[1];
wgpLower.GroupType = GroupPaneType.VerticalTile;
multyScreen.SotrScreensByScreenOrder();

for (int i = 0; i < dtPageParameters.Rows.Count; i++)
{
WebPane wpTemp = new WebPane();
wp[i] = wpTemp;
wp[i].ContentURL = multyScreen.Screens[i].ScreenURL;
wp[i].ContentMode = ISNet.WebUI.WebDesktop.ContentMode.UseIFrame;
wp[i].Width = DimensionMode.Fill;
wp[i].Height = DimensionMode.Fill;
//wp[i].Image = @"\Images\borderbkg.png";
wp[i].TextAlignment = TextAlignment.Center;
wp[i].Text = multyScreen.Screens[i].Name;

if ((dtPageParameters.Rows.Count/2) > i)
wgpUpper.Panes.Add(wp[i]);
else
wgpLower.Panes.Add(wp[i]);



thx gordon

it will be great.

Posted: September 3, 2009 8:53 AM

hi all

the problem began after installing sp1 2009 we got an error says :

1.'extensionattribute' is ambiguous in the namespace 'system.runtime.compilerservices'. internalxmlelper.vb

2. xelement is ambiguous in the namespace 'system.xml.linq'. internalxmlhelper.vb

 

what happend that the system.xml.linq.dll (v3.5) got overwrited by the system.xml.linq.dll in the aqua/bin folder .

the solve it just overwrite the system.xml.linq.dll in the aqua/bin folder with that from framework 3.5

have a good day!

and thank u james for the responses.

Posted: September 3, 2009 4:53 AM

still the errors !!!!

Error 28 'ExtensionAttribute' is ambiguous in the namespace 'System.Runtime.CompilerServices'. InternalXmlHelper.vb

Error 27 'XElement' is ambiguous in the namespace 'System.Xml.Linq'. InternalXmlHelper.vb

Error 30 'XName' is ambiguous in the namespace  . InternalXmlHelper.vb

?????????????????????

problem fixed

Posted: September 3, 2009 2:31 AM

all samples work fine .

still same problem with system.dll namesapce

Posted: September 2, 2009 11:13 AM

still no go

1. Error 34 The type 'System.CodeDom.Compiler.GeneratedCodeAttribute' exists in both 'c:\WINDOWS\assembly\GAC_MSIL\System\2.0.0.0__b77a5c561934e089\System.dll' and 'c:\Documents and Settings\yaniv\Local Settings\Temp\Temporary ASP.NET Files\cemaxcrm_web\993ba968\573efc86\assembly\dl3\d17c4afd\00143166_691fca01\System.DLL' c:\Documents and Settings\yaniv\Local Settings\Temp\Temporary ASP.NET Files\cemaxcrm_web\993ba968\573efc86\App_GlobalResources.ih8e1vbg.en_0.cs 12

2. Error 35 The type or namespace name 'GeneratedCodeAttributeAttribute' does not exist in the namespace 'System.CodeDom.Compiler' (are you missing an assembly reference?) c:\Documents and Settings\yaniv\Local Settings\Temp\Temporary ASP.NET Files\cemaxcrm_web\993ba968\573efc86\App_GlobalResources.ih8e1vbg.en_0.cs 12

Posted: September 2, 2009 8:44 AM

we dont use silverlight in out project .

i added system.xml

and now i got this error :

1. Error 35 The type 'System.CodeDom.Compiler.GeneratedCodeAttribute' exists in both 'c:\WINDOWS\assembly\GAC_MSIL\System\2.0.0.0__b77a5c561934e089\System.dll' and 'c:\Documents and Settings\yaniv\Local Settings\Temp\Temporary ASP.NET Files\cemaxcrm_web\993ba968\573efc86\assembly\dl3\d17c4afd\00d8ffe2_fa0aca01\System.DLL' c:\Documents and Settings\yaniv\Local Settings\Temp\Temporary ASP.NET Files\cemaxcrm_web\993ba968\573efc86\App_GlobalResources.m-tlqiub.en_0.cs 12

2.Error 36 The type or namespace name 'GeneratedCodeAttributeAttribute' does not exist in the namespace 'System.CodeDom.Compiler' (are you missing an assembly reference?) c:\Documents and Settings\yaniv\Local Settings\Temp\Temporary ASP.NET Files\cemaxcrm_web\993ba968\573efc86\App_GlobalResources.m-tlqiub.en_0.cs 12

maybe i need to reinstall framework .net 3.5 ?

All times are GMT -5. The time now is 1:48 AM.
Previous Next