473,661 Members | 2,431 Online
Bytes | Software Development & Data Engineering Community
+ Post

Home Posts Topics Members FAQ

Session properties window was not displayed properly

Hi,

I am developing a video capture program in C#.NET,In that application if i
click on one button then a window will be displayed that is exactly like
windows media encoder session window preoperties.
The following code displays the window,but Apply and cancel buttons are not
worked and also not displayed for all pages.

WMEncoder Encoder= new WMEncoder();

WMEncSourcesPag e PpgSources=new WMEncSourcesPag e();

WMEncOutputPage outputpage= new WMEncOutputPage ();

WMEncProfilePag e PpgProfile= new WMEncProfilePag e();

WMEncVideoSizeP age PpgVideo=new WMEncVideoSizeP age();

WMEncAttributes Page PpgAttr=new WMEncAttributes Page();

WMEncProcessing Page PpgProc=new WMEncProcessing Page();

WMEncPluginsPag e PpgPlugs=new WMEncPluginsPag e();

WMEncDRMPage PpgSec=new WMEncDRMPage();

WMEncAdvancedPa ge PpgAdv=new WMEncAdvancedPa ge();


axMSPropShell2. AddObject(Encod er);

axMSPropShell2. AddPage(PpgSour ces);

axMSPropShell2. AddPage (outputpage);

axMSPropShell2. AddPage (PpgProfile);

axMSPropShell2. AddPage (PpgVideo);

axMSPropShell2. AddPage (PpgAttr);

axMSPropShell2. AddPage (PpgProc);

axMSPropShell2. AddPage (PpgPlugs);

axMSPropShell2. AddPage (PpgSec);

axMSPropShell2. AddPage (PpgAdv);

I want to display those buttons for all tab and i want to work those
buttons,Please give me any solution for me.

Thanks in advance

Mamatha
Nov 17 '05 #1
0 1022

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

1
1616
by: 2G | last post by:
Hi, I have a usercontrol with a custom propertie but in the designer, the properties doesn't expand it's properties so I can't change them. I've search google on this and came across things like DesignerSerializationVisibilityAttribute and Type/ReferenceConverters but can't find a good example on how to actually do this and don't know if this is what I need. Also, after it is possible to change the property in the designer, will the...
2
6159
by: Joe Molloy | last post by:
Hi, This isn't a mission critical question but I thought I'dl throw it out there for your feedback as it's a bit curious. I have developed a shopping cart for an application I'm working on which is loosely based on the e-commerce example in the quickstarts tutorial. In the cart display I have provided functionality so that when a user clicks on a product name a popup is opened with the full product details displayed.
2
4933
by: Ricky K. Rasmussen | last post by:
Hi NG, We have a rather large ASP.NET application that uses popups to display various dialogs to the user. In our work we've come over a rather annoying "bug": If we open a modal dialog using the javascript command window.showModalDialog() we loose the current Session if a new window is opend from within the modal one (using the window.open() method). The "funny" thing is that this only occurs if another instance of IE has been
2
7998
by: Jim Tilson | last post by:
I'm having a problem with Session ID being duplicated across multiple IE windows. I edited the web.config for my ASP.net web application to display trace information on the page. I open an IE window and navigate to the home page of my ASP.net app, and note the Session ID that was assigned. I then type CTRL-N to open a new IE window. The session ID displayed on the
2
2014
by: dave | last post by:
Hi all I'm newbie to asp.net and building simple pages using vb.net. I have got three pages default.aspx (which is login page), index.aspx and logout.aspx. In logout.aspx i have put following code... Session.Clear() Session.RemoveAll() Session.Abandon()
1
1663
by: Christophe Peillet | last post by:
I have a CompositeControl with two types of properties: 1.) Mapped Properties that map directly to a child control's properties (ex.: this.TextboxText = m_txt.Text). These properties are handled by their underlying classes (such as the TextBox control), and are not persisted by me. 2.) Unique Properties that don't map directly and are persisted in ViewState (ex.: this.LabelPosition, which specifies where on the form the label should be...
18
3432
by: BillE | last post by:
When a user opens a new IE browser window using File-New-Window the integrity of an application which relies on session state is COMPLETELY undermined. Anyone who overlooks the fact that File-New-Window creates an instance of IE in the same process with the same SessionID as the parent window is in big trouble. This fundamentally restricts the usefullness of using session state management. I probably missed it somewhere - can...
26
3596
by: BillE | last post by:
Some ASP.NET applications use Session Variables extensively to maintain state. These should be re-written to use viewstate, hidden fields, querystring, etc. instead. This is because if a user opens a new IE window with Ctrl-N or File-New-Window, BOTH WINDOWS SHARE THE SAME SESSION VARIABLES. This cannot be prevented.
4
1274
by: mark_drewersback | last post by:
I've been developing in .net for approx 6 months now and would like an opinion on whether it is ok to use session to store objects? I normally create a property such as below in code behind on every page that will use the object. Public Property Environment() As bsEnvironment Get Return CType(Session("Environment"), bsEnvironment) End Get
0
8343
by: Hystou | last post by:
Most computers default to English, but sometimes we require a different language, especially when relocating. Forgot to request a specific language before your computer shipped? No problem! You can effortlessly switch the default language on Windows 10 without reinstalling. I'll walk you through it. First, let's disable language synchronization. With a Microsoft account, language settings sync across devices. To prevent any complications,...
0
8855
Oralloy
by: Oralloy | last post by:
Hello folks, I am unable to find appropriate documentation on the type promotion of bit-fields when using the generalised comparison operator "<=>". The problem is that using the GNU compilers, it seems that the internal comparison operator "<=>" tries to promote arguments from unsigned to signed. This is as boiled down as I can make it. Here is my compilation command: g++-12 -std=c++20 -Wnarrowing bit_field.cpp Here is the code in...
0
8758
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven tapestry of website design and digital marketing. It's not merely about having a website; it's about crafting an immersive digital experience that captivates audiences and drives business growth. The Art of Business Website Design Your website is...
1
6185
isladogs
by: isladogs | last post by:
The next Access Europe User Group meeting will be on Wednesday 1 May 2024 starting at 18:00 UK time (6PM UTC+1) and finishing by 19:30 (7.30PM). In this session, we are pleased to welcome a new presenter, Adolph Dupré who will be discussing some powerful techniques for using class modules. He will explain when you may want to use classes instead of User Defined Types (UDT). For example, to manage the data in unbound forms. Adolph will...
0
4179
by: TSSRALBI | last post by:
Hello I'm a network technician in training and I need your help. I am currently learning how to create and manage the different types of VPNs and I have a question about LAN-to-LAN VPNs. The last exercise I practiced was to create a LAN-to-LAN VPN between two Pfsense firewalls, by using IPSEC protocols. I succeeded, with both firewalls in the same network. But I'm wondering if it's possible to do the same thing, with 2 Pfsense firewalls...
0
4346
by: adsilva | last post by:
A Windows Forms form does not have the event Unload, like VB6. What one acts like?
1
2762
by: 6302768590 | last post by:
Hai team i want code for transfer the data from one system to another through IP address by using C# our system has to for every 5mins then we have to update the data what the data is updated we have to send another system
2
1986
muto222
by: muto222 | last post by:
How can i add a mobile payment intergratation into php mysql website.
2
1743
bsmnconsultancy
by: bsmnconsultancy | last post by:
In today's digital era, a well-designed website is crucial for businesses looking to succeed. Whether you're a small business owner or a large corporation in Toronto, having a strong online presence can significantly impact your brand's success. BSMN Consultancy, a leader in Website Development in Toronto offers valuable insights into creating effective websites that not only look great but also perform exceptionally well. In this comprehensive...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.