工商银行通过网银结账的时候,会给出一个类似于B5G7的字符串,让你在自己的口令卡上找到对应的口令码。因为口令卡上的数字挺多的,而且有水印,找起来挺麻烦的,我就花了几十分钟的时间,写了一个快速查找口令卡密码的小软件。

实现原理

模拟人查找电子口令密码的方法,通过FindComponent 方法,快速定位和获取电子口令码

实现方法

1.在一个窗体上放下8*10个Edit,然后依照你的电子口令卡,依次给他们赋上B1,B2...B8,X1,X2..X2的名字,并依次在Text属性上赋予相应的值。(第一次输入比较麻烦,没办法呀,电子口令是很私密的东东,网上找不出一个现成的可以供选择)

2.依次添加一个命名为edtSearch的Edit控件,供用户输入要查找的电子口令代码,一个命名为edtResult的Edit控件用来显示查找到的电子口令密码和一个命名为btnSerach的按钮供用户点击,查找电子口令卡密码

3.点击查找按钮,通过FindCompont 定位到相应的电子口令格,并将他们的值取回,显示到界面

实现代码

 

  1. //类型定义  
  2. type  
  3.   ValidLiterSet = set of 'A'..'B';  
  4.   ValidDigitalSet = set of '1'..'8';  
  5. ...  
  6. end 
  7.  
  8.  
  9. {-------------------------------------------------------------------------------  
  10.   过程名:    TForm1.GetIDPassword  
  11.   作者:      Administrator  
  12.   日期:      2012.02.20  
  13.   参数:      Code: string  
  14.     Code参数是一个长度为4为的字符串,第一位和第三位是字母,  
  15.     第二位和第四位为1..8的某一数字  
  16.   返回值:    String  
  17. -------------------------------------------------------------------------------}  
  18. function TForm1.GetIDPassword(Code: string): String;  
  19. var  
  20.   c1,c2 : string;  
  21.   set1 : ValidLiterSet;  
  22.   set2 : ValidDigitalSet;  
  23. begin 
  24.   c1 := Copy(Code,1,2);  
  25.   c2 := Copy(Code,3,2);  
  26.   set1 := ['B','D','G','K','M','N','Q','S','T','Y'];  
  27.  
  28.   if not (c1[1]  in set1) then 
  29.   begin 
  30.     result := 'Invalid Pass Code!';  
  31.     edit3.SelectAll;  
  32.   end;  
  33.   if not (c2[1]  in set1) then 
  34.   begin 
  35.     result := 'Invalid Pass Code!';  
  36.     edit3.SelectAll;  
  37.   end;  
  38.  
  39.   if not (c1[2]  in set2) then 
  40.   begin 
  41.     result := 'Invalid Pass Code!';  
  42.     edit3.SelectAll;  
  43.   end;  
  44.   if not (c2[2]  in set2) then 
  45.   begin 
  46.     result := 'Invalid Pass Code!';  
  47.     edit3.SelectAll;  
  48.   end;  
  49.   result := TEdit(self.FindComponent(c1)).Text +  
  50.     TEdit(self.FindComponent(c2)).Text;  
  51.  
  52. end;  
  53.  
  54.  
  55. //调用代码  
  56. {-------------------------------------------------------------------------------  
  57.   过程名:    TForm1.btnSearchClick  
  58.   作者:      Administrator  
  59.   日期:      2012.02.20  
  60.   参数:      Sender: TObject  
  61.   返回值:    无  
  62. -------------------------------------------------------------------------------}  
  63. procedure TForm1.btnSearchClick(Sender: TObject);  
  64. begin 
  65.   edtResult.Text := GetIDPassword(UpperCase(edtSearch.Text));  
  66. end