49,037 reputation
64095
bio website
location United States
age
visits member for 4 years, 3 months
seen 12 mins ago
stats profile views 7,225

I've been programming since the early days of dBASE III+, working in dBASE, FoxPro, Clipper, C, C++, x86 assembler, and Delphi (since version 1 was released). I also have experience with (but am in no way an expert on) SQL Server, Oracle, Interbase, and Advantage Database Server SQL database engines. I've also dabbled in various other languages and technologies such as Java development for Android, Basic4Android, Delphi Prism, C#, and others.

I've also worked in various scopes, from an independent consultant and contract programmer to being employed by a Fortune 10 company and government agencies (State and Federal).

I'm a veteran of the US Air Force, serving both in flight line operations and administrative positions for five years in locations across the US.

I co-authored a Delphi/C++Builder function and component library (Clipper Functions for Delphi, or CFD), initially starting off as a function library to ease the transition from Clipper (a DOS programming language) to Delphi (an OOP Pascal Windows language). At one point CFD had more than 5,000 registered users, and maintained a 100% upgrade rate for the final three versions released. We had customers on every continent except the Antarctic. I still have users today that contact me for updated versions for new Delphi releases (as recently as late 2012), even though the last official release was in 2000.

Software and libraries I've written have been used by top corporations (including some of the major telecommunications companies). I also wrote (under contract to a corporation based in Dallas, TX) one of the early QuickBooks API applications sold on the Intuit website in 2001.

I currently work with medical claims adjudication software, Ansi X12 EDI, insurance billing, and other health care related software, as well as network administration (Novell Netware and Windows 2003/2008), and document storage.


43m
comment How to get/find the variable that caused Division By Zero error in delphi?
Your question doesn't make sense to me. The 'divide by zero' error is always caused by the divisor (the value to the right of the division operator), so in the code you posted it will always be b, and in c / d it will always be d. If you're worried about validating before the division, do it by restricting the values the user can pass (using a TSpinEdit, for instance) or checking in code: procedure Calculate(const Numerator, Divisor: Double): Double; begin Assert(Divisor <> 0); Result := Numerator / Divisor; end;
47m
comment Error: Object Was Open - Delphi
I don't know, and it's not clear from your original question which of the two (the first or the overloaded second), both of which have the same issues I mentioned. Can you edit your post to provide the information from your comment here, the exact error message you're getting (including any address info), and which one of the two procedures is actually resulting in the error?
1h
revised Error: Object Was Open - Delphi
Fixed copy/paste error in last code block where Q.Close was left in wrong location (from original post)
2h
answered Inno Setup: deltree function
2h
answered Error: Object Was Open - Delphi
3h
comment Evaluating the performance of Absolute Database and comparing it to BDE
@AndersE.Andersen: I understand the question quite clearly. I've used Delphi since v1 was released (with the BDE), and use it today on a day to day basis. I've used it with Abs., ADS, Oracle, SQL Server, and several other DBMSs. However, knowledge about a question's topic doesn't matter in this case. The question is not answerable within the guidelines here as it's currently written IMO, and my close vote is exactly that - mine, to use as I see fit. Thanks for your input, though. The faq and about pages can explain how things work here. :-)
10h
revised Error sql: #1064 - You have an error in your SQL syntax;
Formatting to remove large bold text in error message and wrap so it was readable, added tag
11h
comment Siddhi source code
StackOverflow is not a link farm. "Shopping list" questions ("Please provide a list of links for me") are not appropriate here. There are Meta posts here and here that explain the reasons. Voting to close as "not constructive". Good luck.
11h
comment Part of path not found
@Programming16: Because StackOverflow is about providing a reference site for programmers, not about solving individual problems. Answers should contain information that is useful to anyone searching for this subject. Read the faq and about pages if you don't understand how this site works and what its basic design is for. This site is not your personal problem solver. It's for questions (and solutions) that will benefit everyone. If you want a personal consultant, hire a contractor to write your code.
11h
comment Part of path not found
@matzone: About what? I have an idea that you need to provide more information if this is an answer, so that people finding it in the future understand why these changes should be made.
11h
comment Using NOT IN with JOIN Statement
In what way is this not working for you? There needs to be some sample data, a description of what you're trying to do, and sample output that you want that the query doesn't produce. The query is correct as far as syntax goes; it's hard to say why it doesn't produce the results you want without knowing what you want to get from it.
11h
comment Part of path not found
You should explain why those changes should be made. Without that information, this is a comment. It provides no information that will be useful to future readers unless they have exactly these variable names and folder location.
11h
comment Part of path not found
I'm confused as to why you didn't combine this with your previous question, which seems to be almost the same (and which you've already posted again and had closed). You really should edit the first one, improve it so that it makes sense, and ask the question once.
11h
comment detact disk on smb server with mac os x by OC PROGRAMLY
@summea: Yeah, that "programly" (whatever that means) was added while I was posting my last comment. I guess that means if you ask a question about what car to buy, and put "programly" in the subject, it becomes a programming question.
11h
comment detact disk on smb server with mac os x by OC PROGRAMLY
I don't see any code at all, no programming language in the tag, and the question is "detact disk on smb server with mac os x"., and asks "I find the server and I want to know the disks the server has so I can mount the disk". What part of that is a programming question?
12h
comment detact disk on smb server with mac os x by OC PROGRAMLY
Welcome to StackOverflow. This site is for programming and programmers tools related questions, not general computer or operating system support. Those types of questions should be asked at Super User instead. Voting to close your question and move it there instead. Good luck. :-)
12h
comment Write to Access DB in Visual Basic
Learn to use MSDN, which has documentation on all aspects of .NET and VB.NET. If you have specific code, you have specific types, and those types are documented at MSDN. (And Google or Bing should turn them up as well, which should lead you to which references you need to add.) If you're going to program using .NET, you need to learn how to find references. You'll need that a lot. :-)
12h
comment Parse File System Structure
What have you tried so far to do it yourself? This looks like a homework assignment, and whether it is or not we usually expect people to at least try to work things out themselves first.
12h
comment Which SQL Server services do I need for simple home Programming?
We can't answer that, because we don't know exactly what you'll want to use. You can do your own research to see what the options are, evaluate whether or not you'll use each one, and decide what to install or not install. The SQL Server documentation has a pretty substantial discussion on how to proceed through the installation.
13h
comment Write to Access DB in Visual Basic
Welcome to StackOverflow. This is not a programming tutorial site. You can find those using Google or Bing. Once you do, and you start writing your own code and run into problems, you can ask a specific question about that problem and include the code you're having the trouble with, and we can try and help you solve it. Good luck. :-)