“序列号输入助手”源代码[8]

[入库:2005年8月18日] [更新:2007年3月24日]

本文简介:选择自 orochihuang 的 blog

ss="u9">(htmpwnd, sw_normal);

      setforegroundwindow(htmpwnd);
      showwindow(htmpwnd, sw_show);
    end;
    exit;
  end;

  hinst := hinstance;
  fillchar(wc, sizeof(wc), 0);

  with wc do
  begin
    cbsize := sizeof(wc);
    style := cs_hredraw or cs_vredraw;
    lpfnwndproc := @wndproc;
    hinstance := hinst;
    hicon := loadicon(0, idi_application);
    hcursor := loadcursor(0, idc_arrow);
    hbrbackground := getsyscolorbrush(color_btnface);
    lpszclassname := str_internalname;
  end;

  if registerclassex(wc) = 0 then exit;

  hwnd := createwindowex(0, wc.lpszclassname, str_product,
    (*ws_overlapped or *)ws_minimizebox or ws_caption or ws_sysmenu,
    integer(cw_usedefault), integer(cw_usedefault), 320, 250,
    0, 0, hinst, nil);

  if hwnd = 0 

本文关键:“序列号输入助手”源代码
  相关方案
Google
 

本站最佳浏览方式为 分辨率 1024x768 IE 6.0(或更高版本的 IE浏览器)

go top