|
Wow!
My question has certainly brought several people out of the woodwork... and I am glad!!! I like the fact that this is a facet of a damn good part of development that is not just fading out. Yes it seems to be lacking with a few features (recently) like what VS offers... But... the minute you have a decent Delphi developer in your team, you will find someone who will be able to follow and develop things in just about any language you can thing of ... (at least that's my humble opinion).
Cheers,
Glen Vlotman
"You cannot code for stupidity"
|
|
|
|
|
*nods*
*goes back to lurking*
"What bug? It runs fine on my workstation"
|
|
|
|
|
Seriously, 8 years, 3 messages, that is a seriously low profile!
Never underestimate the power of human stupidity
RAH
|
|
|
|
|
Yes, we still use delphi on a daily basis. We use remobject hydra to integrade c# code as plugins in our applications but our core product is still in delphi.
|
|
|
|
|
Hi
Can any one please help me on this issue?
i am trying to transfering a file TSclint to local machine in Windows 7 32bit OS, for that i am using WtsApi32.pas ,but the same thing is not happining in Windows 7 64bit OS
|
|
|
|
|
Hi
Can any one please help me on this issue?
i am trying to transfering a file TSclint to local machine in Windows 7 32bit OS, for that i am using WtsApi32.pas ,but the same thing is not happining in Windows 7 64bit OS
|
|
|
|
|
Hi,
This is not the forum for asking programming related questions. Please use the "Ask A Question" option from the website. Please also ensure that your question is (relatively) clear as well so we can best ascertain what your particular issue/problem is.
Cheers,
Glen Vlotman
"You cannot code for stupidity"
|
|
|
|
|
|
^5
Cheers,
Glen Vlotman
"You cannot code for stupidity"
|
|
|
|
|
Last October, I posted 2 Delphi related articles. I was sort of surprised when I noticed that there was not even an option to select Delphi as the programming language. I have no idea if things have changed since then. I know lots of developers have abandonned Delphi programming in favour of C#, but that was unfortunate, they must reconsider and come back. 
|
|
|
|
|
m8,
I work with both Delphi and C# now... C# is great, but I still stick to my roots... My motto is: use the tool that best suites the job... People will always go through phases and the same goes for dev languages I guess ... Still... let's get the Delphi chaps up and running here!!!
Cheers,
Glen Vlotman
"You cannot code for stupidity"
|
|
|
|
|
Because if, we even exist and we are here.
I work with Delphi 2007 vs PostgreSQL Server, and everything is solved very well.
Charmed I will read the articles and I will respond in those that he can and have knowledge to make it
good bye
|
|
|
|
|
hello i'am new in write programs in delphi. my problem is how can i get 16,66 in a variable?
variable F:=(50 div 3) result must be 16,66 but integer is 16
sorry my english is not so good.
thank you
|
|
|
|
|
try
var f : double;
..
f := (50 / 3)
|
|
|
|
|
thank you but i forgot to write, the result must be in a label als Caption and this is a string. I get the error string and double not compatible. when i use integer then wiht the InToStr i get the Caption 16 and not 16,66
if you now how i hafe to do pleas
thank you
|
|
|
|
|
There is a function named FloatToStr which should fit your need.
|
|
|
|
|
thank you smags13 its work. 
|
|
|
|
|
The operators div and mod are complimentary. Use div when you want the integer part of the division to be returned, and mod to get the remainder:
10 div 3 = 3
10 mod 3 = 1
Will Rogers never met me.
|
|
|
|
|
|
just being curious. anybody uses the XE 64bit compiler right now? 
|
|
|
|
|
|
Hi!
I'm trying to restrict my exe to only one at any time. I've used the following code:
var
Mutex : THandle;
Mutex := CreateMutex(nil,False,'MyMutexName');
I got the following error in CreateMutex:
'Invalid Number of Parameters". How to create a Mutex in Delphi?
|
|
|
|
|
What version of Delphi are you using? It looks fine to me.
Try Mutex:= Windows.CreateMutex(Nil, False, 'MyMutexName');
And see what happens
|
|
|
|
|
If i have a .lnk file
that point to a link of http://.... type
HOW do i get the string http://.....
using IShellLink
GetPath or GetDescription or any thing else
do not give me a solution.
the GetWorkingDirectory give me system32 as path
but i want the string http://.....
any help???
|
|
|
|
|
well, .lnk is used to point to an object inside Shell namespace. I suppose you meant .url file.
.url file is actually an INI file, so you can try to use TIniFile class to parse your file, regardless of the extension it suggests.
|
|
|
|