Search Results

1
vote
3answers
318 views

String representation of the content type of a Variant ?

Hi, first apologies for my english, I hope it make sense what I`ve wrote here. Now to my problem. How can I get the string representation of the content type of a Variant u …
2
votes
5answers
236 views

cast TObject using his ClassType ?

Hi guys, how can i make my code to work ? :) i`ve tried to formulate this question but after several failed attempts i think you guys will spot the problem faster looking at the code than …
2
votes
1answer
91 views

big streams with DataSnap

Hello, I'm trying to transfer some big streams (~1Mb) between DataSnap server/client but to no avail. I'm trying to understand the code of Jim Tierney ( …
0
votes
1answer
64 views

generalized request function in DataSnap 2010 ?!?

This is a client-side function i'm trying to build, more generalized, which will allow me to call different server-side procedures which return TDBXReader. Right now it works, BUT i'm facing couple …
0
votes

How do you format your Compound Statements in Delphi and C#?

I`m a weekend programmer so, being the only one working on the projects i can afford not to follow a specific coding convention, lucky me. When it comes to code readability Castalia's …
2
votes

How do I compress multiple files into a single archive with Delphi

I`m using madZip from madCollection …
0
votes

How to set a GUID as ADO query parameters from Delphi?

for what is worth i`m using GUIDs but I save them in DB as strings; …
2
votes

big streams with DataSnap

Actually, i think i`ve got it. I'm posting this as an answer maybe somebody else need this. procedure TfrmMain.butStreamClick(Sender: TObject); const iBufSize = 128; var sStr : …
1
vote

How to return a record in a DataSnap method.

store the record into a stream and pass the stream to the DataSnap method //on server side function GetLoginInfo(const UserId: Integer): TStream; begin Result := TMemorySt …
0
votes

DBGrid get selected cell

i think the easiest way is to connect a hidden DBText to your dataset then set the DBText to display which field you need, this way that DBText will always contain the needed value …