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
A

ashok_rgm

@ashok_rgm
About
Posts
20
Topics
11
Shares
0
Groups
0
Followers
0
Following
0

Posts

Recent Best Controversial

  • Table Synchronization approaches available for MySQL?
    A ashok_rgm

    Hi All, I have an application which has its versions for different clients with local database(to make it work offline). and one centralized master database on server, to which the local databases should be synchronized at any point of time when clients are online. Here I wanted to know what are the various approaches and mechanisms available for synchronization? Regards, Ashok

    ashok

    MySQL database mysql sysadmin question

  • How to get phone memory detected as USB drive when connected
    A ashok_rgm

    Hi All, i want to develop a application which resides on mobile(mobile application)and runs on PC when connected. Now to do this my phone memory should be detected as removable disk. Can i have any mechanism(drivers to be designed) to make my phone memory removable disk when connected to PC Please post ur help...

    ashok

    Hardware & Devices

  • Take backup of Outlook message Rules, programatically
    A ashok_rgm

    Hi All, Actually the problem is there is a task to be done "taking backup of message rules for an outlook profile". How is it done: - In outlook Open Tools. - Select Rules and Alerts - In Rules and Alerts dialog select "options" - Click "Export Rules" - This will create a .rwz file So now i want to create this .rwz file programatically. If any references, please post it.. Thanks in adv,

    ashok

    C#

  • How to close specific windows application when Computer is turned off or is restarted .
    A ashok_rgm

    Hi, I think here you can run a small windows service related to your application, but am not sure about it. or can try IPC concept. regards,

    ashok

    Windows Forms help csharp tutorial code-review

  • Creating auto launch for exe on USB drive
    A ashok_rgm

    HI All, i have an windows application Add.exe . it is stored at in USB drive as follows DriveLetter:\MyApplication\Add.exe now I want to provide an auto launch for Add.exe, so that whenever My USB drive is connected to any PC Add.exe should initiaite. Regards,

    ashok

    Windows Forms

  • Simultaneous access to SQL server...
    A ashok_rgm

    Hi all, I am using SQL server 2000, I have a table with four columns (ID, Password, Name, contact). This table is being used by a web application which is having a registration page, the registration credentials are inserted to above table in server. Here I want to know how many users can simultaneously register. I mean to what particular count does database insert the records into the same table simultaneously. Please address the scenario in detail if possible with example. Regards,

    ashok

    Database database sql-server sysadmin tutorial

  • Run single instance of an application
    A ashok_rgm

    Hi all, I have created windows application in c#, it is Sample.exe, If this exe is already running, andmeanwhile if double click and initiate one more instance of Sample.exe it should point to already running Sample.exe. Concept is simple if my windows media player is running say a movie file is being run. and if I launch media player from shortcut it will still show the already running one instead of opening the separate media player. Is it possible to do so for my application, how can I apply same logic to my Sample.exe Thanks,

    ashok

    Windows Forms csharp question

  • Run single instance of an application
    A ashok_rgm

    Sorry for the inconvinience I forgot to change the forum........ :doh:

    ashok

    Database csharp question

  • Run single instance of an application
    A ashok_rgm

    Hi all, I have created windows application in c#, it is Sample.exe, If this exe is already running, andmeanwhile if double click and initiate one more instance of Sample.exe it should point to already running Sample.exe. Concept is simple if my windows media player is running say a movie file is being run. and if I launch media player from shortcut it will still show the already running one instead of opening the separate media player. Is it possible to do so for my application, how can I apply same logic to my Sample.exe Thanks,

    ashok

    Database csharp question

  • How to pass table name dynamically for stored procedure
    A ashok_rgm

    My issue is something like this i have a table Master_Info with columns(RecId(PK),Emp_Name,DOB) where RecId is primary key and increments by 1 for each entry. RecId Emp_Name DOB 1 abc 01/01/2009 2 xyz 02/02/2009 Now for each Employee I have separate table to track hi daily details Employee_Details_(RecId) with columns (Working_Date,No_of_Hours) So for user "abc" the table name will be Employee_Details_1,for "xyz" it will be Employee_Details_2 Now I want to insert the records for particular user in Employee_Details_(RecId) table using the stored procedure. What are the suggested ways to do this task? Thanks, Ashok

    ashok

    Database database help tutorial

  • How to pass table name dynamically for stored procedure
    A ashok_rgm

    Hi all, Can anyone explain other possible mechanisms to handle this scenario in detail. Any references could be helpful.. thanks, Ashok

    ashok

    Database database help tutorial

  • Table which will become blank after a certain period.
    A ashok_rgm

    Hello mate, Is it not going to effect your applications which are using the data from those tables, here I have similar problem like how to identify the unaccessed tables over a period of time. Can u pls help me out, Regards, Ashok

    ashok

    Database

  • How to pass table name dynamically for stored procedure
    A ashok_rgm

    Hi All, I have two tables like Casual_Employee_Details, Permanent_Employee_Table and the columns in both tables are same. I have a stored procedure as follows CREATE PROCEDURE getEmpId ( @Eid int, @EName varchar(50) ) AS insert into Casual_Employee_Details(n_EmpId,c_EmpName)values(@EmpId,@EmpName) GO Now i want to pass table name also dynamically how can it be done. help me out with code if possible.. So that if if i execute it should as follows Execute dbo.getEmpId 'tableName',Eid,'Ename' Thanks, Ashok

    ashok

    Database database help tutorial

  • Get Parent Process
    A ashok_rgm

    Hi, I want to know which process had called my application built using C# .NET. Example: Their is an application named "Example1.exe" build using C# .NET. When you open the file manully by double clicking or by any other way then, "Explorer.exe" is the parent process of my application. In this case I want to find that "Explorer.exe" is my parent process. Please help me with the code which has to be placed inside the Main() method of my application (Example1.exe) to find this. Normaly when it is double clicked this is not important but in case if my application is called by any other application then i had to work accordingly.

    ashok

    C# csharp help tutorial

  • Downloadfile issue from server
    A ashok_rgm

    It is in LAN.. ie,. I have configured my IIS to my IP, and downloading from different system in same network.

    ashok

    C# help sysadmin windows-admin question

  • Downloadfile issue from server
    A ashok_rgm

    Hello All, Here I have a problem with downloading a file. I have a file "Sample.dat" of 600Mb in my IIS root directory. Now I have a client application to download file to local drive. am using DownloadFileAsync(URI,file); it takes 2 mins to download the complete file but while downloading the file if delete the source file in server it is still getting downloaded, how is it possible? :confused:

    ashok

    C# help sysadmin windows-admin question

  • DownloadfileCompleted event
    A ashok_rgm

    ThanQ for your help, can u brief the differences between normal download and async-download?

    ashok

    Windows Forms help question

  • DownloadfileCompleted event
    A ashok_rgm

    1. objWebClient.DownloadFileCompleted += new System.ComponentModel.AsyncCompletedEventHandler(Event_DownloadFileCompleted); 2.objWebClient.DownloadFileAsync(new Uri(p_strSourcePath), l_strDestinationPath); 3.MessageBox.Show("Updated Successfully"); 4.public void Event_DownloadFileCompleted(object sender, System.ComponentModel.AsyncCompletedEventArgs e) { MessageBox.Show("Download Completed"); }

    ashok

    Windows Forms help question

  • About downloading file
    A ashok_rgm

    Hello, u can try out with DownloadFile() method. for this u need to include namspace System.Net then u can try out as WebClient objWebClient = new WebClient(); objWebClient.DownloadFile(URI, targetfilename); Check this hope it helps Regards, ashok

    ashok

    C# tutorial

  • DownloadfileCompleted event
    A ashok_rgm

    Hello All, I have a problem with event that I am generating after file download. The flow is like this 1.initialize the DownloadfileCompleted event handler. 2.DownloadFileAsync(URI,str2) 3.After download completed it should display "download complete" 4.return "downloaded successfully" but the problem is if the downloading takes more time it is directly coming to step 4. without waiting for completeion of step 3. how can i make step 4 to wait until completeion of step3.. Thanks in Advance, Ashok

    ashok

    Windows Forms help 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