Continue to Site

Welcome to EDAboard.com

Welcome to our site! EDAboard.com is an international Electronics Discussion Forum focused on EDA software, circuits, schematics, books, theory, papers, asic, pld, 8051, DSP, Network, RF, Analog Design, PCB, Service Manuals... and a whole lot more! To participate you need to register. Registration is free. Click here to register now.

Recent content by kidiotb

  1. K

    Interfacing webcams using VC++

    webcam visual c++ You can use OpenCV library with VC++ and do a lot of stuff - capture from webcam, avi files ,etc and get each frame as an Image. Its a very good library and very easy to work with. Try openCV at www.opencv.org
  2. K

    how to scan .class files in java

    When you extract the JAR file, you get to see the "META-INF" folder inside which you have the manifest file. Inside the manifest file, there is a 'Main-class' property which tells you the entry point ( the class that has the main method). It might look something like this... Manifest-Version...
  3. K

    I need a sample C code to send emails

    Re: C code to send emails I dont have any links to share but i can tell you the simple procedure that you need to follow. First install SMTP server. Then you need to use Socket programming in which you first establish a socket on the SMTP Server and then you can send series of commands like...
  4. K

    memory limit and managing in Java

    Using Collections to store any objects is a good idea.No you dont even need to destroy the vector or any object for that matter. The garbage collector inside the JVM manages entire thing. There is no limit to the size of the string but as the string grows and you add more to the same string that...
  5. K

    What's the best book about VB.NET?

    Best VB.NET Book ?? If you know a little of Visual Programming then go for "Visual BAsic.NET black book" its like a recipe kind of book but covers a lot many issues we need in day to day programming.THat book is really wonderful,teaches you everything i guess ! but a little expertise is...
  6. K

    How to know which VB.NET components I need in exe file to run it on different PC?

    VB.NET Components Its like you are asking the software to work on a machine without CPU.....dotNET framework is a must,its a runtime environment - JVM kind,virtual machine, without it you cant expect your program to work.
  7. K

    visual c++ SDK or MFC

    VC++ got so much popularity due to the MFC.Its so far the hugest library for Windows.Its pretty tough too.But it covers every aspect of windows programming ... Kareja
  8. K

    Qns about Advanced system Programming and TCP/IP

    well they definitely sound as assignment questions in Computer NEtworks LAB...refer to Unix Network Programming Richard Stevens..u ll get ur answers.. kareja
  9. K

    Difference between .net and Windows

    Re: .net vs windows Well .NET isnt an Operating System..its a virtual runtime environment which provides a platform for developing n executing several kinds of applications.anyway i dont understand how .NET ll spoil ur harddisk or any OS ..for that mattter how can it? kareja
  10. K

    C# programming forums on the Internet

    C# forum for beginners www.dotnetforums.com picking up offlate pretty decently.... Kareja
  11. K

    2nd attempt of bind fault

    first u create the socket then u fill in the socket address structure n then you bind.So try changing the information u fill into the socket like the port no.there might be a reason tat the port no u want to bind the socket to might be already under use.
  12. K

    Which one is the best: VB.NET , C++, C# or Java ?

    What is the best one for a newbie this order is good to follow if one is really interested to learn a lot of programming: C->C++->Java->C#(in .NET) (or) C->C++->VB.NET Well by the time one knows C++ he ll be a lot familiar with a lot of programming challenges.Learning Java helps a lot with C#...
  13. K

    java encryption classes ?

    hi, Jus do some googling before you ask something.Sun's got everything for Java.Search the Sun Site and you ll get a lot of information. Anyway for your question theres a javax.crypto package for Java Cryptography.Refer to that in the documentation amd see this link **broken link removed**...
  14. K

    How to create .dll files using compilers?

    Re: How to create .dll files hi, DLL can taken as dynamic header files ;).Like in turbo C u use stdio.h and compile the program and what happens there is that the dependant modules and your program module gets linked to get an executable.That way to execute your program u dont need any other...
  15. K

    our own at89c51 programmer

    hi, I am familiar with programming of the 8051 Microcontroller.I cannot afford to buy a AT89c51 Programmer.Can i build my own Programmer.Those kits are costly may be because they support different devices.I just want to program the Atmel AT89c51 uController which is easily available for me in...

Part and Inventory Search

Back
Top