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 saeid5977

  1. S

    Recommendation for learning Device Physics

    if u need this book send email 4 me with title : Solid State Electronic Device by Ben Streetman To : elyasi2001@yahoo.com
  2. S

    Need information about dynamic allocation in C++

    Re: help C++ and then u should free the memory after using. char* myString; myString =(char*)new[numberOfCharecter]; if(!myString){ //report error! } //after use delete[] myString;
  3. S

    How to connect pc104+ connector to PMC connector?

    hi everybody I have a BPC with pc104+ connector and a io board with PMC connector how I can connect them together. I know(think!) both of them are electrikaly same PCI but is there any passive converter board for my work? tanks for ur replay!
  4. S

    Where to start studying card readers?

    card readers hi search in google with this key words Compact Flash controller USB
  5. S

    What is the significance of rotating an image?

    Image rotation??? hi use from rotation matrix and multiply it in all pixels of picture. x2=x1*cos(a)+y1*sin(a) y2=y1*cos(a)-x1*sin(a) if u want to reach beter results u can use from interpolation for pixel color calculation. Added after 35 seconds...
  6. S

    How to tackle multiple threads in C

    Regarding C hi mutithreading is a feature of OS and when u use C under an OS that suport it u can write MT programs(for example dos has not MT feature and u cant and win32 and linux have and u can use it) in win ucan use from CreateThread and in linux i think the fork function is for doing it...
  7. S

    are there any visual C++ to VHDL converter out there?

    vhdl to c converter hi i heared about what u need. in SPARK project but not visual c (i think). so i advice to search in google whith this keywords [vhdl spark]
  8. S

    renaming a file by c++

    hi in vc++ u can use from BOOL MoveFile( LPCTSTR lpExistingFileName, // file name LPCTSTR lpNewFileName // new file name ); in any where u want!
  9. S

    Question about data types in C++

    hi no postfix. for constants but u can use from type casting for variables: x=(short)y; and others...
  10. S

    How to create folder at a specified path by using c++ ?

    foldering in c++ hi where r u programming? dos, linux, windows??????
  11. S

    Write A program for Windows with VC++

    HI, MFC is regular part of vc for windows programming in mfc contains classes that microsoft created for easing windows programming. and its a good point to start vc. windows form is for programming using .NET framework---> vc++ .NET
  12. S

    What is the difference between #define n 100 and int n=100 ?

    help2 in c++ hi secound code does not works cuz when u declear an static array compiler should knows the dimention of that and in this condition the value of N is unknown in compile time until run time. but in first code u use from precompiler expresion #define that is same as u write int...
  13. S

    How to create tables in Visual C++?

    tables in visual c++ hi if u mean look up table u can use from arrays for it.
  14. S

    Send AT command using VB to mobile phone

    hi i think can it uses MSCOMM ctrl to send command to modems if ur phone recognized as a modem (comm port) u can send commands to it with this activex and reading returned data.
  15. S

    reading a string of file

    hi use OPEN to open file and then with Input command get strings from file. in input command use the file number that used in open command.

Part and Inventory Search

Back
Top