五
有時為了界面的考慮需要將一些長字段折行顯示
具體如下
設置完畢後在左下角預覽窗口中將顯示圖例的結果
在進行列自動折行顯示的時候
六
相信你一定見過這樣的顯示
要想讓顯示的數據達到上述效果
if ( Mod( GetRow()
// RGB(
OK
七
在用到Windows的資源管理器的時候
為了實現上述功能
/*****************************程序代碼******************************/
String ls_column
ls_column = this
ls_column = left(ls_column
if not Lower(right(ls_column
ls_column = left(ls_column
// 進行升序和降序的切換
if ib_flag then
ls_sort = ls_column +
else
ls_sort = ls_column +
end if
ib_flag = not ib_flag // 為下一次排序准備
ls_sort = ls_sort
this
this
/*****************************結束******************************/
注
八
在開發具有數據服務器的應用軟件時
本程序是通過調用外部函數SetSystemTime()實現系統時間的設置
struct _SYSTEMTIME
{
INT iYear;
INT iMonth;
INT iDayOfWeek;
INT iDay;
INT iHour;
INT iMinute;
INT iSecond;
INT iMilliseconds; // 毫秒
} str_SystemTime;
要在程序中使用外部函數首先需要要進行外部函數聲明
Function Boolean SetSystemTime(str_SystemTime str_MyTime) Library
聲明之後就可以使用了
/*****************************程序代碼******************************/
str_SystemTime str_MyTime
// 給結構賦值
str_MyTime
str_MyTime
str_MyTime
// 設置系統日期
if SetSystemTime(ref str_MyTime)then
Beep(
MessageBox(
else
Beep(
MessageBox(
end if
/*****************************結束******************************/
注意
From:http://tw.wingwit.com/Article/program/SQL/201311/16242.html