No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.
19 Posted Topics
Well Dear ....... u r saying u r developing a Windows Application ........There is nothing like Session in Windows app.....Session are used in Web app. is there any Flag....in ur user table.....??? if it has.....then u can check it in ur query.....
Hi Developers..... I have a Problem.... I have a XML file.....n I have to Read the Data from that XML file n Create a New File and the Data is in a Binary Format.....(All the code is in C# only) I have used the BinaryReader,BinaryWriter and BinaryFormatter but i can't …
Hi Community..... "The request failed with the error message:<head><title>Document Moved</title></head>\n<body><h1>Object Moved</h1>This document may be found <a HREF=\"http://moss:25031/sites/Transformers/default.aspx\">here</a></body>" I get this error whenever i trying to use my WebServices via Proxy Class. I have created a Custom WebService, It builds fine. Then i created a .disco and .wsdl file by using …
Hi Developers....... Can anybody help me......I have an array and i want to enrypt that array and save that encrypted data into a file .......how can i do this...... i don't know ....how to do Encrytion in C# Every Comment will be welcome.... Thanks......
i have done thing like.......i create my query from some different table......n put it into dataset......n create an XML file from that dataset........and give that XML file as a data source....... Hope it will work in ur Problem.....
Hi .... i want to track the Windows Lock Event. when user lock the windows by any possible way, i want to run my code at that event. but i don't know what is the event for this. any Ideas? Kind Regards, saurabh
Hi developers, I have a question can we dynamically load a UserControl in Ajax Popup Extender ? kind Regards, Saurabh
Can we add Two Users with Same Name in Active Directory......??
Hi..... I am binding a Repeater control with List<int> at OnLoad event [code]protected override void OnLoad(EventArgs e) { if(!Page.IsPostBack) { List<int> datasource =Get(); if(datasource!=null) { rpt.DataSource=datasource; rpt.DataBind(); } } base.OnLoad(e); }[/code] it works fine.....my Repeater bind successfully......i have a button at each Repeater Item....When i click on that button my …
Hi Community I am trying to get the CredentialCache.DefaultCredentials for my WebServices. but CredentialCache.DefaultCredentials =null, CredentialCache.DefaultCredentials have to get the Windows Username and password ........but why it is null? Domain name="" Username="" Password="" ......please any body tell me whats the reason behind this.........i have also put impersonate=true in web.config file.... …
Hello Developers......... Can u please tell me how can we Handle the Events of Outlook Appointment Items.... What i have done is...... I am creating a Oulook Add-in in VSTO.... I create our own Oulook Calendar and put some appointments like I have a one Issue n it has StartDate …
Hi Developers .....I am facing a problem of adding an Image to CommandBarButton ( i m using the VSTO). Can any body help me out....... Every Reply will be Welcome.....
Datatype bit takes the value 0 or 1.....if true then 1 if false then 0
Ticket Booking......a nice concept...... in webservices we can create methods....n call that methods in our application Remotely.....(Remoting and Webservicesare the different scenarios.....) The use of Webservices in ur application....is like by using webservices we can check...number of Ticket are booked....n how much are pending....n lots of more.....its all depend upon …
We can not run our .Net Web Application on the Machine which does not containt .Net Framework........ Only solution is that u must have to Create the MSI installer or Setup of ur Web application.....in Setup u must have to put .Net Framework......n when u intall ur setup on the …
first u have to create an object of Checkbox then u have to find that checkbox in ur Datagrid using loop like checkbox chk; for(int i=0;i<=datagrid.rows.count-1;i++) { chk=(CheckBox)Datagrid1.Items[i].findcontrol("CheckboxName"); if(chk.Checked) { "Pick the value of that row...." } }
if u want to use the.....JavaScript in ur App.....then its very simple to.....Print .... u can use Window.Print() it definite works.... Enjoy....
Actually i have no much time to tell u....for now i can only tell u....how to find the Checked checkboxes in Panel.....and put that checkbox name into a label........and Row name "A" u can store somewhere else and concatinate it to ur label....string foreach(CheckBox chk in panel1.Controls) { if(chk.Checked) { …
The End.