摘要:
在xp下开发的程序,在98下打印预览时,qrlabel的所有文字都变得参差不齐,大家有没试过这种情况呢?有没什么办法解决??
......
摘要:
unit unit2; interface type tbase = class protected fb:integer; public procedure setbase(b:integer); function getbase():integer; end; implementation procedure setbase(b:integer); begin fb:=b; end; ......
这个API在DELPHI中如何写呢。。(高分)
Function String quexit(string str, string key) LIBRARY "sms.dll"
------------------------------------
FUNCTION string GetDiskSER() LIBRARY "sms_disk.dll"
NO.1 作者: roseou
function quexit(str, key:PChar):PChar;stdcall;external sms.dll;
function GetDiskSER:PChar;stdcall;external sms_disk.dll;
摘要:
怎样用一个按钮实现奇偶选择复选框。即按一下选上了。再按一下不选了。我的程序如下: <script> <!-- function checkall(form) { for (var i=0;i<form.elements.length;i++) { var e = form.elements[i]; e.checked = checked; } } -->......