PureBytes Links
Trading Reference Links
|
Alex / List
I thru this dll together the other day/week.
The quick test below worked
The dll returns the ascii character equivelent to the one you send to it.
The example below returned "" in the debug window
two double quotes and a null character inbetween. Handy for sql stuff and
txt files etc..
*****************************************************************************
**************
var: Valuetemp("");
DefineDLLFunc: "character.dll", LPSTR, "Character", FLOAT ;
Valuetemp=Character(34)&Character(0)&Character(34);
print (date,Valuetemp);
*****************************************************************************
*******
I dont know if it does extended ascii though. Maybe someone could try it?
Actially , I could see a use for extended chr's 153 and169.
[if dll doesnt get through the list email me off list. camacazi@xxxxxxxx
com]
cheers
C
Standard ASCII Chart (7 bits = 27)
DecHexOctCharDescription
000000NULLNull
101001SOHstart of heading
202002SOTstart of text
303003ETXend of text
404004EOTend of transmission
505005ENQenquiry
606006ACKacknowledge
707007BELLbell
808010BSbackspace
909011TABhorizontal tab
100A012LFNL line feed,new ln
110B013VTvertical tab
120C014FFNP form feed,new pg
130D015CRcarriage return
140E016SOshift out
150F017SIshift in
1610020DLEdata link escape
1711021DC1device control 1
1812022DC2device control 2
1913023DC3device control 3
2014024DC4device control 4
2115025NAKnegative acknowledge
2216026SYN(synchronous idle)
2317027ETB(end of trans. block)
2418030CAN(cancel)
2519031EOM(end of medium)
261A032SUB(substitute)
271B033ESQ(escape)
281C034FS(file separator)
291D035GS(group separator)
301E036RS(record separator)
311F037US(unit separator)
3220040SPACE(space)
3321041!
3422042"
3523043#
3624044$
3725045%
3826046&
3927047'
4028050(
4129051)
422A052*
432B053+
442C054,
452D055-
462E056.
472F057/
48300600
49310611
50320622
51330633
52340644
53350655
54360666
55370677
56380708
57390719
583A072:
593B073;
603C074<
613D075=
623E076>
633F077?
6440100@
6541101A
6642102B
6743103C
6844104D
6945105E
7046106F
7147107G
7248110H
7349111I
744A112J
754B113K
764C114L
774D115M
784E116N
794F117O
8050120P
8151121Q
8252122R
8353123S
8454124T
8555125U
8656126V
8757127W
8858130X
8959131Y
905A132Z
915B133[
925C134\
935D135]
945E136^
955F137_
9660140`
9761141a
9862142b
9963143c
10064144d
10165145e
10266146f
10367147g
10468150h
10569151i
1066A152j
1076B153k
1086C154l
1096D155m
1106E156n
1116F157o
11270160p
11371161q
11472162r
11573163s
11674164t
11775165u
11876166v
11977167w
12078170x
12179171y
1227A172z
1237B173{
1247C174|
1257D175}
1267E176~
1277F177DEL(delete)
Extended Codes (8th bit => 28)
DecHexOctChar
128
Attachment:
Description: application/msdownload
|