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

    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...
  3. 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...
  4. 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...
  5. 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
  6. 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...
  7. 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..
  8. 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..?
  9. G

    RLE Encoding And Decoding using C..plz help.

    Run length Encoding And Decoding Example input: 123334455555AAA Output for above input: 1\12\13\34\25\5A\3
  10. G

    RLE Encoding And Decoding using C..plz help.

    Hi Guys its urgent have a look.. Run length encoding is a compression technique that takes advantage of repeated consecutive digits. Encoding involves putting a character followed by count. Example input: 123334455555AAA Output for above input: 1\12\13\34\25\5A\3 (1 is appearing once, 2 is...
Top Bottom