4
votes
6answers
765 views
Delphi object persistence, what is the best way
I have developed application for drawing some shapes (lines mostly) , now i need to be able to store sketch to a file, i know that delphi has build in routines for object persistance, but i have …
0
votes
3answers
159 views
Finding closed contours in a graph
Hi,
I have graph and somehow I need to find all closed contours in graph that doesn't contains any other edges of the graph.
I was searching google but only gives me charts :) …
0
votes
4answers
483 views
How to implement reference counted objects in Delphi
I have a graph like structure. I don't know exactly when to destroy the objects in traditional Delphi manner, instead I would like to implement something like reference counted objects. I know that …
1
vote
0
votes
Are framework dependencies a problem?
I am also delphi developer and i don't see any reason why anyone would switch from delphi to .net. Delphi is based on VCL which is stable for i don't now 10 or more years, if someone started to dev …
1
vote
Delphi code generation
For me best way is by creating custom components, and then create designer for this component.
I have find that i spent most of the time writing code that read/write values from controls. So …
1
vote
Best database for small applications and tools
I have workd with MSsql server , Oracle, Sqllite, MySql, but for my personal projects i use only Firebird, emambed and server solution in less than 2MB. It's amazing fast, and there is lots of goo …
1
vote
Finding closed contours in a graph
Thnks for reply, i think i have solution , eg. if i move from one node to next connected i can pick next one by measuring angle between edges.
…
1
vote
How do i tell if one instance of my program is running?
You can simply use FindWindow windows api function. In delphi class name of the window is the same as class name, you can redefine class name by overriding CreateParams function. To check if windo …
0
votes
Sorting values, but only if they are X more than current order
Try sorting with custom comparing function , you can quickly try this if you fill TList with numbers and call MyList.Sort(myCompareFunc);
function myCompareFunc(item1,item2:Pointe …
0
votes
Sorting values, but only if they are X more than current order
TList.Sort won't work because it uses quick sort algoritham as mghie commented.
Bubble sort algoritham is not that fast, here is implementation so you can try, this time in pascal.
…
