Search results

  1. G

    Connection of 5.1 Home Theater with Samsung LCD TV

    TV Specs : Samsung LCD 5 Series - D550 (Brand New) 5.1 Home theater : Sony DAV-DZ10/CE12 (Player is 5 years old) I tried with a EP2-RCA cable that connects the headphone port at the rear of the cable and the red-white cable at the rear of the DVD player audio input. But I am getting only sound...
  2. G

    Windows Authentication for desktop Application

    As i told Dheeraj !! I have a Visual studio windows application.When i run the application i want a Username_password login Pop_up which will "Windows authenticate" the users.I mean to say that multiple users of the system can access the application without switching/logging off from the present...
  3. G

    Windows Authentication for desktop Application

    Thats were the problem lies.If we were to write the autehntication method ourselves why on earth will we require the Windows "LoginAPI"..we could have implemented a simple form with two textboxes and two buttons.So whats the use..?
  4. G

    Windows Authentication for desktop Application

    Thanks for the links Dheeraj..!! with ref to the link : *www.developerfusion.com/code/4693/using-the-credential-management-api/2/ the Authentication via the loginAPI should be an internal process or i will have to write the code for authenticating the username and passowrd in the...
  5. G

    Windows Authentication for desktop Application

    I have created the CredenialsDialog.cs class file taking help from Msdn.on form load i am calling a Login() method which prompts the Credentials dialog prompt.that method needs to authenticate the system username and password.I need that method implementation. private static bool...
  6. G

    Windows Authentication for desktop Application

    Hello everyone.I have a VS 2005 (C#) windows application.when i run the application i want to authenticate the current login username and password with possibly the windows LoginAPI.can any one help me with a C# code. Multiple users will be using the same desktop to login to my .Net...
  7. G

    Local machine account validation using C# .NET 2.0

    That will be great.thanks. using System.DirectoryServices; string username = System.Environment.UserName; this gives me the current windows logon username and i can easily validate that wth the one entered by the user in the login_form.But what about the password validation...? thanks for...
  8. G

    Local machine account validation using C# .NET 2.0

    As i said i have a simple login form which requires username and pssword as credentials to be provided correctly in order to log into a particular application.My first priority is to authenticate against local machine accounts for username and pswd...ie the u_name and pswd that we need to login...
  9. G

    Local machine account validation using C# .NET 2.0

    Hi.. I have a login dialog with user name and password.I want two types of authentications. 1> Local machine username_passowrd authentication.(ie the one present in Control panel_administrative tools_Computer management_local users and grps_users.) 2>Active directory(AD) username_passowrd...
  10. G

    Accessing windows registry using C#

    One more thing i would like to seek u guys help. i want to watermark a text in a "TEXT BOX",NOT ON AN IMAGE. can neone pls help me with the C# snippet.thanx a ton.
  11. G

    Accessing windows registry using C#

    @charan yes i wan to use the rgistry only. i want to save the color and font dialog sttings on a text in the registry and when i reopen the application once again ..i want to retreive the same from the reg.
  12. G

    Accessing windows registry using C#

    i am developing a C# application where i need to save the user input given by the user in a dialog prompt in the registry.then show the output say the font style and color of the text which i have selected in the form should be saved in the registry even when i close the application and open it...
  13. G

    how to play binary file in java

    hi i wanted to know can a binary file(*.bin) be played through java and how. Is it possible to synchronize more than one .bin file together and merge them in a sequence them and play them? pls reply
  14. G

    how to convert .class file to .java file???

    hi i wanted to know if there is a way to convert a .class file to its corresponding .java file . I was going through the FreeTTS s/w. it has codes for speech synthesis. But all the files are .class files. it completely written in java . i wanted to get some java code to help me understand how it...
  15. G

    inserting data from SQL Server using C# in ASP.NET

    thanx a lot bro..will definitely try it out..thanxx again..:)
  16. G

    inserting data from SQL Server using C# in ASP.NET

    We have to insert data into Sql server from the form of Asp.net using C Sharp.can neone help me in this respect !!! I need the code basically..
  17. G

    Data Compression

    lol..:-D
  18. G

    Data Compression

    Guys i am very interested in data compression. is it possible to implement Huffman algo using C or Java will be a better option..?
  19. G

    RLE Encoding And Decoding using C..plz help.

    But i have implemented the encoding and the decoding in two different programs.will it be possible to call them as seperate functions in the main() method of a single program ..? or you mean to say calling a func encode() from main() in one and the other from the other prgrm..? and hw to find...
  20. G

    RLE Encoding And Decoding using C..plz help.

    ya.got it.thanx QM..
Top Bottom