I am using Digital Visual Fortran. It is the compaq version. I have been making DLLs and calling them from Visual Basic with no problem. <br><br>GNU also has a...
GNU has a very good fortran compiler, certainly the best I've used, with debugger and all.<br><br>Its free.<br><br>Its native environment is Unix, where it has...
Hi friends, I'm Chemical Engineer and I'm in troubles with computers and want to know how can I call Fortran from VB. I’m interested in process simulation....
I am currently translating a Fortran electrostatic moment method analysis program I orignally wrote in Fortran into Visual Basic. I recommend you NOT try to...
Try "Numerical Recipes in Fortran". It has a number of Fortran subroutines and function for optimization and minimization. More importantly the book explains...
I am currently converting a moment method electrostatic analysis program from Fortran into Visual Basic. Any clues as to what programming techniques slow ...
I'll tell you what little I know, since it was my original question you responded to.<br><br>My experience is quite limited, but the program I was referring to...
jriosc,<br><br>it's been years since I made a DLL from a Fortran<br>OBJ file, but I remember one pitfall: there was a<br>file called the DEF file that listed...
I need some help in fortran. I want to learn the language. Which would be the simplest book to get my basics about programming in fortran . <br>I don't have...
As the resident JAVA programmer at my school I was asked to convert an old Fortran program to run under a Win32 environment. I wasn't exactly sure exactly...
It's plainer if each term with an exponent is<br>put in parens:<br><br>I=400.*(.000478 * (DBH**1.93004) * (70.**.35629) -.03474)<br><br>As written, the result...
Hello. I've been programming with Fortran since 1965 and still am. A LOT of changes and improvements have been made as I'm sure you know. Right now I work for...
Hi, since I just joined, I haven't had a chance yet to read all of the messages posted so far. But I was wondering if any of you are interested in applying...
Frankly, I don't think it makes a lot of sense to apply the object oriented paradigm to Fortran. For one thing, it's a call by reference, not a call by value ...
Two comments:<br><br>1) In Microsoft Fortran, you can specify that a<br> parameter is to be passed by value. You just<br> include [value], brackets and all, ...
Well, I've never written a compiler from start to finish (let alone an object oriented one) but it seems to me that it would. In Fortran, you're not "passing ...
Hello,<br><br>I'm trying to call a Fortran function contained in a dll from a VB 6 program. The function returns the p-value based on the chi square ...
Of course the code I listed does nothing. I omitted 99% of code and substitute an ellipsis. If you knew the first think about VB or dll files, you would ...
Visual Basic? I don't use crap like that, ok? I've already told you that. I already told you that I'm not familiar with dll files as well. So don't get on my...
Hi pal, I've called FORTRAN dll's from VB5, I think that you should create a module.bas instead of a Private function within your VB code.<br>In my program I ...
Thanks for your suggestions. I located my error and it's in the Function declaration in the VB code. Instead of declaring the passed variables as you show (X ...
Hi I'm new here!<br>I'm looking for an old FORTRAN interpreter or at least a MS-DOS based FORTRAN, that is for a class of Programming Languages, could anyone...
Well, first of all, there never were any Fortran Interpreters because Fortran was never an interpretive language. What you need is a compiler. The only way I...
Thanks a lot themooksman, I didn't know that FORTRAN was never an interpretive language, I will I haven't installed Linux yet but I will follow your advise....
One additional fact you may find interesting: it is because Fortran was not interpretive that Basic was invented (which was far more primitive than Visual...