Search Results

Showing results 1 to 39 of 39
Search took 0.01 seconds.
Search: Posts Made By: btech_Saurabh
Forum: C# Mar 18th, 2009
Replies: 4
Views: 812
Posted By btech_Saurabh
Forum: C# Mar 4th, 2009
Replies: 4
Views: 812
Posted By btech_Saurabh
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
Posted By btech_Saurabh
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
Posted By btech_Saurabh
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
Posted By btech_Saurabh
Can we add Two Users with Same Name in Active Directory......??
Forum: ASP.NET Dec 20th, 2008
Replies: 0
Views: 2,796
Posted By btech_Saurabh
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
Posted By btech_Saurabh
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
Posted By btech_Saurabh
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
Posted By btech_Saurabh
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
Posted By btech_Saurabh
Every Reply will be Welcom
Forum: C# Feb 21st, 2008
Replies: 3
Views: 1,370
Posted By btech_Saurabh
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
Posted By btech_Saurabh
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
Posted By btech_Saurabh
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
Posted By btech_Saurabh
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
Posted By btech_Saurabh
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
Posted By btech_Saurabh
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
Posted By btech_Saurabh
"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
Posted By btech_Saurabh
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
Posted By btech_Saurabh
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
Posted By btech_Saurabh
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
Posted By btech_Saurabh
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
Posted By btech_Saurabh
Yes it is possible.........
Forum: ASP.NET Jan 10th, 2008
Replies: 9
Views: 1,325
Posted By btech_Saurabh
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
Posted By btech_Saurabh
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
Posted By btech_Saurabh
Yes Enum is Better.....approach....as Ramy says...
Forum: C# Jan 7th, 2008
Replies: 13
Views: 4,217
Posted By btech_Saurabh
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
Posted By btech_Saurabh
int32 i=e.RowIndex(); // worked in RowDataBound event
Forum: C# Jan 7th, 2008
Replies: 3
Views: 3,130
Posted By btech_Saurabh
Okay.....i'll try it.......thanx Jugortha......
Forum: C# Jan 7th, 2008
Replies: 3
Views: 3,130
Posted By btech_Saurabh
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
Posted By btech_Saurabh
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
Posted By btech_Saurabh
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
Posted By btech_Saurabh
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
Posted By btech_Saurabh
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
Posted By btech_Saurabh
Forum: C# Jan 4th, 2008
Replies: 6
Views: 8,123
Posted By btech_Saurabh
Thanx for the Nice Advice......but i have done it .....by using........BinaryFormatter.....
Forum: C# Jan 4th, 2008
Replies: 4
Views: 2,536
Posted By btech_Saurabh
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
Posted By btech_Saurabh
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
Posted By btech_Saurabh
No, Its Not Working......it shows the same data........in XML format
Forum: C# Jan 4th, 2008
Replies: 6
Views: 8,123
Posted By btech_Saurabh
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)
...
Showing results 1 to 39 of 39

 


About Us | Contact Us | Advertise | DaniWeb | Acceptable Use Policy | RSS Feed

©2003 - 2009 DaniWeb® LLC