Dear Sunit5, My First Target is to custamize the exiting GINA statically. Some one suggested that you can directly modify the existing dialogs by opening it in VC++ Stdio. But I am not able to open the GINA Dialogs in VC++ stdio. Please let me know How I can achieve it. 2nd Target is to modify GINA dynamically or using another GINA DLL which may be I can achieve by writting GINA DLL as described in "Building and Testing a GINA DLL" in MSDN. I am using Windows XP. :) Thanks and Regards Manoj
manojk_batra
Posts
-
(Locked Computer) GINA -
Can I use Javascript function in VC++?Thanks you a lot. I have a simple calculation method which does not have interaction with Internet Explorer, Events etc. Can I run javascript without Internet Explorer or hosted iexplore ActiveX. :) Thanks & Regards Manoj
-
(Locked Computer) GINADear All, I want to Dispaly some user Names on "Computer Locked" Dialog Box at Win XP. I will Display the the users statically or dynamically while computer is Unlocked. Pleae help me how I can achieve it. :) With Regards Manoj
-
Can I use Javascript function in VC++?Dear VivekuniQ If I made a mistake, I am really sorry for that. I am very weak in English, Please let me know my mistake, if its in English, Please also let me know how I can improve it. :zzz: Thanks & Regards Manoj
-
Can I use Javascript function in VC++?Dear All, I have VC++ windows application. I want to use some javascript functions in the above mentioned application. If Yes, Please let me know how I can do it? with little bit sample code or some articles. :) With Regards
-
SQL Database Backup RestoreDear All, I want to write a code for backup and restore of sql database in C#. Please help me for code. PS-I know how to execute Stored procedures and queries of SQL in C# :) With Regards Manoj
-
CreateProcess!!Dear sunit5, Thanks you a lot. :) Thanks & Regards Manoj
-
CreateProcess!!Dear Owner drawn, Thanks you a lot. :) Thanks & Regards Manoj
-
CreateProcess!!Dear Lastgen, Thanks you a lot. :) Thanks & Regards Manoj
-
CreateProcess!!Dear Anil, Thanks you a lot for Great Help. :) Thanks & Regards Manoj
-
CreateProcess!!Dear All, Please look at the following code ... --------------------------------------------------------------------------- PROCESS_INFORMATION pi; STARTUPINFO si; ZeroMemory(&si, sizeof(si)); si.cb = sizeof(si); SetLastError(0); CreateProcess("notepad.exe",NULL,NULL,NULL,FALSE,NULL,NULL,NULL,&si,&pi); --------------------------------------------------------------------------- This code is not able to run the notepad because its not able to find the path of notapd.exe application. But when I use Run option in Windows Start Menu ,type notapad and say OK, its able to find and run the notpad application may be from enviornment variables. Please let me know why My code is not able find the notapd application? PS- It will work if i copy notpad.exe application where my application exists. :) With Regards Manoj
-
Back Forward LockingDear All, I developed an ASP application which has so many pages including some secure Pages. I want to maintain security, so that any user using the application can not use the BACK and FORWARD options of IE(Internet explorer). I appreciate any Help :) With Regards Manoj
-
How I add icon to Toolbar of IEDear All, Can I add icon(of some url) at IE(Internet Explorer) toolbar. I want to add icon instead of adding url site to favorites. :) With Regards Manoj
-
SQL Connection Pool FlushDear all, How I can flush sql connection pool in C#. Please give me C# code for it. :) With Regards Manoj
-
Regarding SQL DatabaseDear Colin Angus, The conn String is is the connection String containg computer information in which Database exists , Database name, user and password through which i can login to database. String conn = "server="+ strLocalIP +";database="+ "master" +";password="+ "sa" +";User id="+ "sa" +";"; strLocalIP is actually is the IP of computer inwhich Database exists. And sc is sqlcommand through which I execute the sql query. Some one has suggested me to flush the connection pool. Please let me know How i can flush connection pool through C#. :) Thanks & Regards Manoj Kumar
-
Regarding SQL DatabaseDear Johny Ng, Even after disconnecting all the connections related with Database it's still giving same exception. Some one has suggested me to flush the connection pool, Please let me know How i can flush connection pool in C#. :) Thanks & Regards Manoj
-
Regarding SQL DatabaseDear All, I know this section is regarding C# only,but I am entering regarding SQL Database. I am really sorry for this. I want to Delete the SQL Database programmatically (using C#). I am using following code for Deleting Database. ---------------------------------------------------------- private void DeleteDatabase() { try { String conn = "server="+ strLocalIP +";database="+ "master" +";password="+ "sa" +";User id="+ "sa" +";"; SqlConnection sqc = new SqlConnection(conn); sqc.Open(); SqlCommand sc = new SqlCommand(); sc.Connection = sqc; sc.CommandText = "DROP DATABASE "+strDatabaseName; sc.ExecuteNonQuery(); sqc.close(); } ------------------------------------------------------------------- strLocalIP id computers IP Through Query Analyzer 'DROP Database' is working fine but programmatically it's giving exception, 'connection is in use' :) With Regards Manoj
-
SQL Database Backup Restore through C#?:)Dear All, Can I restore the SQL Datbase Backup through C#? if yes I need some code for that With Regards
-
Time out exceptionDear Guffa, Thanks you a lot for giving the solution. Actually your First reply given the solution, which I had not understood . Now I got what you were saying. :(( I am really sorry, i was not able to understand. :laugh: Thanks Thanks you a lot for the solution Manoj
-
How to Share Directory programmatically?Thanks you a lot for help, Can you provide me a simple C# code for sharing directory and allow particular user full control(aspnet). I am working on using windows xp. :) Thanks & Regards Manoj