Unit1.cpp
上传用户:lhxd_sz
上传日期:2014-10-02
资源大小:38814k
文件大小:2k
源码类别:

VC书籍

开发平台:

C++ Builder

  1. //---------------------------------------------------------------------------
  2. #include <vcl.h>
  3. #include <stdlib.h>
  4. #pragma hdrstop
  5. #include "Unit1.h"
  6. //---------------------------------------------------------------------------
  7. #pragma package(smart_init)
  8. #pragma resource "*.dfm"
  9. TForm1 *Form1;
  10. //---------------------------------------------------------------------------
  11. __fastcall TForm1::TForm1(TComponent* Owner)
  12.         : TForm(Owner)
  13. {
  14. }
  15. //---------------------------------------------------------------------------
  16. void __fastcall TForm1::SetRowCol(void)
  17. {
  18.   TPoint po;
  19.   int xx,yy;
  20.   po=Memo1->CaretPos;
  21.   xx=po.x+1;
  22.   yy=po.y+1;
  23.   Label1->Caption="行:"+IntToStr(yy);
  24.   Label2->Caption="列:"+IntToStr(xx);
  25. }
  26. //---------------------------------------------------------------------------
  27. void __fastcall TForm1::Button1Click(TObject *Sender)
  28. {
  29.   int ii,row,col,bg,ww;
  30.   row=atoi(Edit1->Text.c_str());
  31.   col=atoi(Edit2->Text.c_str());
  32.   bg=0;ii=0;
  33.   for(ii=1;ii<row;ii++)
  34.   {
  35.     bg=bg+Memo1->Lines->Strings[ii-1].Length()+2;
  36.   }
  37.   ww=Memo1->Lines->Strings[row-1].Length();
  38.   if(col>ww)col=ww+1;
  39.   bg=bg+col-1;
  40.   Memo1->SelStart=bg;
  41.   Memo1->SetFocus();
  42. }
  43. //---------------------------------------------------------------------------
  44. void __fastcall TForm1::Memo1Click(TObject *Sender)
  45. {
  46.   SetRowCol();
  47. }
  48. //---------------------------------------------------------------------------
  49. void __fastcall TForm1::Memo1KeyPress(TObject *Sender, char &Key)
  50. {
  51.   SetRowCol();
  52. }
  53. //---------------------------------------------------------------------------