The MASM Forum

Projects => Rarely Used Projects => RosAsm => Topic started by: guga on September 17, 2014, 12:58:37 AM

Title: Delphi form (.frm) needed
Post by: guga on September 17, 2014, 12:58:37 AM
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
Title: Re: Delphi from (.frm) needed
Post by: guga on September 17, 2014, 02:16:00 AM
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.