Forum: C# Mar 18th, 2009 |
| Replies: 4 Views: 812 |
Forum: C# Mar 4th, 2009 |
| Replies: 4 Views: 812 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?... |
Forum: ASP.NET Mar 2nd, 2009 |
| Replies: 0 Views: 1,127 Hi developers,
I have a question
can we dynamically load a UserControl in Ajax Popup Extender ?
kind Regards,
Saurabh |
Forum: C# Dec 23rd, 2008 |
| Replies: 6 Views: 487 I also tried it ..........even with different login name........it doesn't allow me to add Two users with Same Name. |
Forum: C# Dec 23rd, 2008 |
| Replies: 6 Views: 487 Can we add Two Users with Same Name in Active Directory......?? |
Forum: ASP.NET Dec 20th, 2008 |
| Replies: 0 Views: 2,796 Hi.....
I am binding a Repeater control with List<int> at OnLoad event
protected override void OnLoad(EventArgs e)
{
if(!Page.IsPostBack)
{
List<int> datasource... |
Forum: RSS, Web Services and SOAP Dec 1st, 2008 |
| Replies: 0 Views: 2,033 Hi Community
I am trying to get the CredentialCache.DefaultCredentials for my WebServices. but CredentialCache.DefaultCredentials =null, CredentialCache.DefaultCredentials have to get the Windows... |
Forum: RSS, Web Services and SOAP Nov 28th, 2008 |
| Replies: 0 Views: 2,766 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... |
Forum: C# Feb 21st, 2008 |
| Replies: 0 Views: 1,390 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... |
Forum: C# Feb 21st, 2008 |
| Replies: 3 Views: 1,370 Every Reply will be Welcom |
Forum: C# Feb 21st, 2008 |
| Replies: 3 Views: 1,370 Thanx for ur kindness....Image is working fine.......but now i have a another problem....can u please tell me how can we Handle the Events of Outlook Items....
What i have done is......
I am... |
Forum: C# Feb 20th, 2008 |
| Replies: 3 Views: 1,370 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..... |
Forum: ASP.NET Jan 11th, 2008 |
| Replies: 4 Views: 917 When ever u create an Setup project or MSI installer.......GO to the properties of that Setup project.......n there is a button named "Prerequesities" click on that button.....one window will... |
Forum: ASP.NET Jan 11th, 2008 |
| Replies: 9 Views: 1,325 if ur client have a Server.....then u install Framework only on the server.......not on the all client machines........ |
Forum: ASP.NET Jan 11th, 2008 |
| Replies: 9 Views: 1,325 but u can not run ur application on web until u don't have the .Net Framework on the client machine.....u must have to install the .Net Framework..... |
Forum: ASP.NET Jan 10th, 2008 |
| Replies: 19 Views: 10,248 Dear.......u can not cast an integer value into a bool type variable.......u pass the value to ur Bit column according to 1 or 0...
do one thing........create a table in sql server........and... |
Forum: ASP.NET Jan 10th, 2008 |
| Replies: 19 Views: 10,248 "anndept.announceToFaculty " this function is of bool type change this function dear.........
change this function dear........ |
Forum: ASP.NET Jan 10th, 2008 |
| Replies: 19 Views: 10,248 do this thing.....take one int type variable....
Int32 i;
if (facultychecked.Checked == true)
{
i =1;
}
else
{ |
Forum: ASP.NET Jan 10th, 2008 |
| Replies: 19 Views: 10,248 u can not assign 1 or 0 to a bool type variable.......
use Int type variable......and then assign 1 or 0 |
Forum: ASP.NET Jan 10th, 2008 |
| Replies: 19 Views: 10,248 yes this is because.......it consist only true or false.....if 1 then true and if 0 then false
ur code must b like this
if (facultychecked.Checked == true)
{
anndept.announceToFaculty =1;
}... |
Forum: ASP.NET Jan 10th, 2008 |
| Replies: 19 Views: 10,248 Datatype bit takes the value 0 or 1.....if true then 1
if false then 0 |
Forum: ASP.NET Jan 10th, 2008 |
| Replies: 4 Views: 917 Yes it is possible......... |
Forum: ASP.NET Jan 10th, 2008 |
| Replies: 9 Views: 1,325 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... |
Forum: C# Jan 8th, 2008 |
| Replies: 1 Views: 1,128 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... |
Forum: C# Jan 7th, 2008 |
| Replies: 13 Views: 4,217 Yes Enum is Better.....approach....as Ramy says... |
Forum: C# Jan 7th, 2008 |
| Replies: 13 Views: 4,217 By using this query u'll get one Result.......from that u can check......userType
string st=Data["UserType"].ToString();
if(st=="Admin")
{//Open Admin Form}
else if(st=="User")
{// Open User... |
Forum: ASP.NET Jan 7th, 2008 |
| Replies: 5 Views: 1,921 int32 i=e.RowIndex(); // worked in RowDataBound event |
Forum: C# Jan 7th, 2008 |
| Replies: 3 Views: 3,130 Okay.....i'll try it.......thanx Jugortha...... |
Forum: C# Jan 7th, 2008 |
| Replies: 3 Views: 3,130 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... |
Forum: ASP.NET Jan 4th, 2008 |
| Replies: 5 Views: 1,921 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++)
{... |
Forum: C# Jan 4th, 2008 |
| Replies: 13 Views: 4,217 Okay i thought.....he/she uses the single table....actually he/she writes...."The user login details for both admin and normal users are in a single table called account.."
if the user Type (admin... |
Forum: ASP.NET Jan 4th, 2008 |
| Replies: 6 Views: 3,408 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.... |
Forum: C# Jan 4th, 2008 |
| Replies: 13 Views: 4,217 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.....???... |
Forum: C# Jan 4th, 2008 |
| Replies: 6 Views: 8,123 |
Forum: C# Jan 4th, 2008 |
| Replies: 6 Views: 8,123 Thanx for the Nice Advice......but i have done it .....by using........BinaryFormatter..... |
Forum: C# Jan 4th, 2008 |
| Replies: 4 Views: 2,536 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.......... |
Forum: C# Jan 4th, 2008 |
| Replies: 2 Views: 1,010 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.....)
... |
Forum: C# Jan 4th, 2008 |
| Replies: 6 Views: 8,123 No, Its Not Working......it shows the same data........in XML format |
Forum: C# Jan 4th, 2008 |
| Replies: 6 Views: 8,123 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)
... |