Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
Ernikas committed Jul 3, 2012
1 parent 99e1d5e commit e7e6886
Show file tree
Hide file tree
Showing 2 changed files with 428 additions and 99 deletions.
165 changes: 135 additions & 30 deletions CLoader/MainForm.dfm
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ object frmMain: TfrmMain
Left = 0
Top = 0
Caption = 'CLoader'
ClientHeight = 520
ClientHeight = 529
ClientWidth = 751
Color = clBtnFace
Font.Charset = DEFAULT_CHARSET
Expand All @@ -11,53 +11,80 @@ object frmMain: TfrmMain
Font.Name = 'Tahoma'
Font.Style = []
OldCreateOrder = False
DesignSize = (
751
520)
OnCreate = FormCreate
PixelsPerInch = 96
TextHeight = 13
object Label1: TLabel
Left = 248
Top = 16
Width = 37
Height = 13
Caption = 'Region:'
end
object Button1: TButton
Left = 152
Top = 32
Left = 640
Top = 8
Width = 75
Height = 25
Caption = 'Button1'
TabOrder = 0
OnClick = Button1Click
end
object Memo1: TMemo
Left = 8
Top = 88
Width = 705
Height = 209
object LOG: TMemo
Left = 0
Top = 39
Width = 753
Height = 491
Align = alCustom
Anchors = [akLeft, akTop, akRight, akBottom]
Lines.Strings = (

'<!--This is a comment. Comments are not displayed in the browser' +
'-->'#11
#11
'<p>This is a paragraph.</p> ')
ScrollBars = ssBoth
TabOrder = 1
ExplicitHeight = 482
end
object Button2: TButton
Left = 152
Top = 1
Left = 55
Top = 8
Width = 75
Height = 25
Caption = 'URL'
Caption = 'GO'
TabOrder = 2
OnClick = Button2Click
end
object Memo2: TMemo
Left = 8
Top = 303
Width = 705
Height = 194
Lines.Strings = (
'Memo2')
ScrollBars = ssBoth
object Button3: TButton
Left = 136
Top = 8
Width = 75
Height = 25
Caption = 'STOP'
TabOrder = 3
OnClick = Button3Click
end
object txtRegion: TEdit
Left = 297
Top = 12
Width = 121
Height = 21
TabOrder = 4
Text = 'Vilnius'
end
object Button4: TButton
Left = 543
Top = 8
Width = 75
Height = 25
Caption = 'Save LOG'
TabOrder = 5
OnClick = Button4Click
end
object cbSaveLOG: TCheckBox
Left = 440
Top = 13
Width = 97
Height = 17
Caption = 'Auto save LOG'
Checked = True
State = cbChecked
TabOrder = 6
end
object IdHTTP1: TIdHTTP
AllowCookies = True
Expand All @@ -73,11 +100,89 @@ object frmMain: TfrmMain
Request.Ranges.Units = 'bytes'
Request.Ranges = <>
HTTPOptions = [hoForceEncodeParams]
Left = 24
Top = 24
Left = 16
Top = 8
end
object MyHtmlParser: TDIHtmlParser
Left = 568
Top = 40
end
object ADConnection1: TADConnection
Params.Strings = (
'Server=84.32.118.87'
'Database=siosclients_db'
'User_Name=siosnordic'
'Password=H5k6inF3'
'DriverID=pG')
ConnectedStoredUsage = [auRunTime]
Connected = True
Left = 640
Top = 48
end
object ADPhysPgDriverLink1: TADPhysPgDriverLink
Left = 640
Top = 112
end
object qryExistContact: TADQuery
Connection = ADConnection1
SQL.Strings = (
'Select * from "Contacts"'
'where "Name"= :Name'
'and "Phone"= :Phone')
Left = 640
Top = 168
ParamData = <
item
Name = 'NAME'
DataType = ftString
ParamType = ptInput
Value = Null
end
item
Name = 'PHONE'
DataType = ftString
ParamType = ptInput
Value = Null
end>
object qryExistContactID: TIntegerField
FieldName = 'ID'
Origin = '"ID"'
ProviderFlags = [pfInUpdate, pfInWhere, pfInKey]
end
object qryExistContactName: TWideStringField
FieldName = 'Name'
Origin = '"Name"'
Size = 100
end
object qryExistContactPhone: TWideStringField
FieldName = 'Phone'
Origin = '"Phone"'
Size = 30
end
object qryExistContactPhoneOperator: TWideStringField
FieldName = 'PhoneOperator'
Origin = '"PhoneOperator"'
Size = 50
end
object qryExistContactAddress1: TWideStringField
FieldName = 'Address1'
Origin = '"Address1"'
Size = 80
end
object qryExistContactAddress2: TWideStringField
FieldName = 'Address2'
Origin = '"Address2"'
Size = 100
end
object qryExistContactPostCode: TWideStringField
FieldName = 'PostCode'
Origin = '"PostCode"'
FixedChar = True
Size = 10
end
end
object ADGUIxWaitCursor1: TADGUIxWaitCursor
Left = 640
Top = 224
end
end
Loading

0 comments on commit e7e6886

Please sign in to comment.