Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations strongm on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: bytebit
  • Order by date
  1. bytebit

    Coding DLL files

    there are a good tutorial by nicholas skapura in: http://www.flipcode.com/articles/article_vbdlls.shtml
  2. bytebit

    The Disk in Drive F is not formatted!!!! It was yesterday...

    run fdisk to get info about partitions. Two questions: Has it got OS? Have you run drvspace or another progrma to compress disk?
  3. bytebit

    Negative number in a positive number ?

    sorry i wanted to say "you would be able to use abs(number)
  4. bytebit

    Negative number in a positive number ?

    I think you'll be able to use abs(number)
  5. bytebit

    How to make a dll?

    there's an excellent dll's tutorial by nicholas skapura in: http://www.flipcode.com/articles/article_vbdlls.shtml
  6. bytebit

    C++ DLL

    Please read thread: maria7 (Programmer) 12/17/02 (posted 12/11/02) 8 replies static 2D array declaration There are a dll for computing inverse matrix bye
  7. bytebit

    static 2D array declaration

    it's a good idea but it's better using ForPasc that translate from fortran to c, pascal and c++
  8. bytebit

    static 2D array declaration

    This is a subroutine to get inverse of a matrix, passing an array form visual basic, it was in fortran. if i do not understand you have a problem like this. i think it can help you. #include <windows.h> #include <math.h> void __stdcall matinv( int n, double *a_, double *ai_); BOOL WINAPI...
  9. bytebit

    where can I get a free download for C compiler

    yoy can download lcc32 from http://www.cs.princeton.edu/software/lcc/ its free
  10. bytebit

    static 2D array declaration

    you can use an array of (n,n) dimensions like a unidimensional array (or pointer)if you use pseudoindices, considering that an array ocuppies adyacent positions in memory, according fortran convention. If i see the source i could help you

Part and Inventory Search

Back
Top