Skip to content
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups
Skins
  • Light
  • Cerulean
  • Cosmo
  • Flatly
  • Journal
  • Litera
  • Lumen
  • Lux
  • Materia
  • Minty
  • Morph
  • Pulse
  • Sandstone
  • Simplex
  • Sketchy
  • Spacelab
  • United
  • Yeti
  • Zephyr
  • Dark
  • Cyborg
  • Darkly
  • Quartz
  • Slate
  • Solar
  • Superhero
  • Vapor

  • Default (No Skin)
  • No Skin
Collapse
Code Project
M

manojk_batra

@manojk_batra
About
Posts
33
Topics
16
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • (Locked Computer) GINA
    M manojk_batra

    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

    C / C++ / MFC help

  • Can I use Javascript function in VC++?
    M manojk_batra

    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

    C / C++ / MFC c++ javascript question

  • (Locked Computer) GINA
    M manojk_batra

    Dear 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

    C / C++ / MFC help

  • Can I use Javascript function in VC++?
    M manojk_batra

    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

    C / C++ / MFC c++ javascript question

  • Can I use Javascript function in VC++?
    M manojk_batra

    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

    C / C++ / MFC c++ javascript question

  • SQL Database Backup Restore
    M manojk_batra

    Dear 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

    C# database csharp help tutorial

  • CreateProcess!!
    M manojk_batra

    Dear sunit5, Thanks you a lot. :) Thanks & Regards Manoj

    C / C++ / MFC question

  • CreateProcess!!
    M manojk_batra

    Dear Owner drawn, Thanks you a lot. :) Thanks & Regards Manoj

    C / C++ / MFC question

  • CreateProcess!!
    M manojk_batra

    Dear Lastgen, Thanks you a lot. :) Thanks & Regards Manoj

    C / C++ / MFC question

  • CreateProcess!!
    M manojk_batra

    Dear Anil, Thanks you a lot for Great Help. :) Thanks & Regards Manoj

    C / C++ / MFC question

  • CreateProcess!!
    M manojk_batra

    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

    C / C++ / MFC question

  • Back Forward Locking
    M manojk_batra

    Dear 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

    ASP.NET security help

  • How I add icon to Toolbar of IE
    M manojk_batra

    Dear 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

    Web Development

  • SQL Connection Pool Flush
    M manojk_batra

    Dear all, How I can flush sql connection pool in C#. Please give me C# code for it. :) With Regards Manoj

    C# csharp database

  • Regarding SQL Database
    M manojk_batra

    Dear 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

    C# database csharp sysadmin

  • Regarding SQL Database
    M manojk_batra

    Dear 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

    C# database csharp sysadmin

  • Regarding SQL Database
    M manojk_batra

    Dear 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

    C# database csharp sysadmin

  • SQL Database Backup Restore through C#?
    M manojk_batra

    :)Dear All, Can I restore the SQL Datbase Backup through C#? if yes I need some code for that With Regards

    C# database csharp question

  • Time out exception
    M manojk_batra

    Dear 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

    C# csharp help

  • How to Share Directory programmatically?
    M manojk_batra

    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

    C# csharp asp-net tutorial question
  • Login

  • Don't have an account? Register

  • Login or register to search.
  • First post
    Last post
0
  • Categories
  • Recent
  • Tags
  • Popular
  • World
  • Users
  • Groups