News:

Masm32 SDK description, downloads and other helpful links
Message to All Guests

Main Menu

Delphi form (.frm) needed

Started by guga, September 17, 2014, 12:58:37 AM

Previous topic - Next topic

guga

Hi guys

Someone have working examples of delphi forms that contains floating points inside (single and double), unicode text, single, currency and date (s,c,d), uf8, double, extended data, null ?

I need them in binary and text format (Binary is better, because i can decompile it to analyze)

I found one example of float

object gridDoubleEditor: TdgmrGridDoubleEdit
  Tag = 0
  WantKeyLeftRight = False
  WantKeyUpDown = False
  WantKeyHomeEnd = False
  WantKeyPriorNext = False
  EmptyString = '--'
  EmptyValue = -1E300
  MinValue = -1E300
  MaxValue = INF
  NumberOfDecimals = 2
  Alignment = taRightJustify
  Left = 336
  Top = 208
end


But it is in text, i needed it in binary to make sure i did the proper conversion.

What i succeed to achieve is

object gridDoubleEditor: TdgmrGridDoubleEdit
    Tag = 0
    WantKeyLeftRight = False
    WantKeyUpDown = False
    WantKeyHomeEnd = False
    WantKeyPriorNext = False
    EmptyString = '--'
    EmptyValue = -1.000000e+300
    MinValue = -1.000000e+300
    MaxValue = INF
    NumberOfDecimals = 2
    Alignment = taRightJustify
    Left = 336
    Top = 208
end


But, since some properties are not found, i can´t convert it to binary with DFMEDit o analyze if the parser i made is working ok
Coding in Assembly requires a mix of:
80% of brain, passion, intuition, creativity
10% of programming skills
10% of alcoholic levels in your blood.

My Code Sites:
http://rosasm.freeforums.org
http://winasm.tripod.com

guga

A brief example of the conversion. It is working though exactly as in regular delphi. But i don´t have enough ".dfm" (From Borland BCB or Delphi files) to test.
Coding in Assembly requires a mix of:
80% of brain, passion, intuition, creativity
10% of programming skills
10% of alcoholic levels in your blood.

My Code Sites:
http://rosasm.freeforums.org
http://winasm.tripod.com