摘要:
界面代碼: object Form1: TForm1 Left = 568 Top = 393 Width = 725 Height = 408 Caption = '對象觀察器' Color = clBtnFace Font.Charset = DEFAULT_CHARSET Font.Color
閱讀全文
posted @ 2020-02-29 12:55
丶憤怒的蘑菇
閱讀(362)
推薦(1)
摘要:
界面代碼: object Form1: TForm1 Left = 202 Top = 182 Width = 1305 Height = 675 Caption = 'Form1' Color = clBtnFace Font.Charset = DEFAULT_CHARSET Font.Colo
閱讀全文
posted @ 2020-02-26 21:56
丶憤怒的蘑菇
閱讀(520)
推薦(1)
摘要:
先上圖 功能代碼: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, TeEngine, Series, TeeNavigato
閱讀全文
posted @ 2020-02-21 19:34
丶憤怒的蘑菇
閱讀(542)
推薦(1)
摘要:
最近不知怎么的,想研究一下圖表。先上效果圖: 功能代碼: unit Unit1; interface uses Windows, Messages, SysUtils, Variants, Classes, Graphics, Controls, Forms, Dialogs, TeeEdit, E
閱讀全文
posted @ 2020-02-20 19:47
丶憤怒的蘑菇
閱讀(466)
推薦(1)
摘要:
環(huán)境:SQL 2016; 語句 select * from A where PID=JoID 上述查詢語句中的Where PID=JoID條件中PID的字段類型為varchar(50)而JoID的字段類型為uniqueidentifier,該寫法在升級之前的(SQL2012)庫上沒有問題,但在新庫(
閱讀全文
posted @ 2020-01-16 10:02
丶憤怒的蘑菇
閱讀(812)
推薦(0)
摘要:
最近在溫故Delphi精要,下面是按照其中做的托盤圖標(biāo)組件,記錄一下。 工具:Delphi 7+Image Editer 先上圖: 組件源碼如下:對于圖標(biāo),百度 unit XsdTrayIcon; interface uses SysUtils, Classes, Windows, Messages
閱讀全文
posted @ 2020-01-03 17:55
丶憤怒的蘑菇
閱讀(498)
推薦(1)
摘要:
看此文檔前,先參考一下文檔 https://blog.csdn.net/downmoon/article/details/24374609 環(huán)境:阿里云ECS SQL Server 2017 + Delphi7 測試用xcopy,robocopy等命令遷移文件好像不太會用。 倒是可以通過T-SQL的
閱讀全文
posted @ 2019-12-17 18:06
丶憤怒的蘑菇
閱讀(409)
推薦(1)
摘要:
記錄一下/ --備份數(shù)據(jù)庫 use [master] go BACKUP DATABASE [LnkSys11] TO DISK = N'C:\BackUp\LnkSys11.bak' WITH --備份文件存放路徑 NOFORMAT, INIT, --INIT:覆蓋備份;NOINIT: 追加備份
閱讀全文
posted @ 2019-12-06 21:27
丶憤怒的蘑菇
閱讀(601)
推薦(0)
摘要:
索引的正常使用對于軟件的性能至關(guān)重要。 可以通過DMV,DMF檢查缺失索引情況。 --獲取缺失索引語句。 SELECT top 100 mid.index_handle, equality_columns, inequality_columns, included_columns, statemen
閱讀全文
posted @ 2019-11-28 21:18
丶憤怒的蘑菇
閱讀(586)
推薦(0)
摘要:
本文參考 http://www.rzrgm.cn/CareySon/archive/2011/12/22/2297568.html https://www.jb51.net/softjc/126055.html https://docs.microsoft.com/zh-cn/sql/rel
閱讀全文
posted @ 2019-11-28 16:08
丶憤怒的蘑菇
閱讀(731)
推薦(0)