通過pl/sql登錄到Oracle數(shù)據(jù)庫上,然后執(zhí)行菜單:文件/新建/命令窗口 ,打開一個(gè)命令窗口然后在該命令窗口中執(zhí)行腳本創(chuàng)建和刪除表空間:1.創(chuàng)建表空間:create tablespace MOF_TEMPdatafile 'D:\oracle\product\10.2.0\
獨(dú)孤劍
2017-08-31 13:47
閱讀:969
if exist "$(TargetDir)images" del "$(TargetDir)images"if exist "$(TargetDir)images\icon" del "$(TargetDir)images\icon"if not exist "$(TargetDir)images" md "$(TargetDir)images"if not exist "$(TargetDir)
獨(dú)孤劍
2017-08-29 23:30
閱讀:1015
修改一個(gè)工程生成的主文件的擴(kuò)展名。著實(shí)費(fèi)了很大的勁,才搞出來,貼出來共享下,嘿嘿。目的:一個(gè)工程,如果設(shè)置輸出類型為class library,則編譯鏈接后生成的主文件默認(rèn)的擴(kuò)展名為.dll。如果有需要要將擴(kuò)展名改為其
獨(dú)孤劍
2017-08-29 23:28
閱讀:1030
Winform 自定義控件, 不允許修改高度
// 添加引用 System.Desing;using System.Windows.Forms;
using System.Windows.Forms.Design;namespace WindowsFormsApp2
{// 引用 System.Design/// /// 自定義控件不允許更改高
獨(dú)孤劍
2017-08-29 18:07
閱讀:1664
不透明透明
獨(dú)孤劍
2017-08-29 17:57
閱讀:1326
Winform 自定義控件的右鍵菜單, 右鍵菜單ContextMenuStrip
using System;
using System.Drawing;
using System.Windows.Forms;namespace WindowsFormsApp12
{public partial class Form1 : Form{private TextBox text
獨(dú)孤劍
2017-08-29 17:53
閱讀:1460
1、從微軟網(wǎng)站下載DsoFramer_KB311765_x86.exe,解開將得到dsoframer.ocx;2、把dsoframer.ocx拷貝到系統(tǒng)目錄下,并注冊(cè),我是寫了一個(gè)reg.bat來實(shí)現(xiàn):copy dsoframer.ocx c:\windows\system32\dsoframer.ocx
regsvr
獨(dú)孤劍
2017-08-29 17:05
閱讀:1253
一、dsoframer在XP、win7和win8中的注冊(cè)方法。從微軟網(wǎng)站下載DsoFrmaer_KB311765_x86.exe,雙擊解開后得到的dsoframer.ocx等文件。http://download.microsoft.com/download/7/1/2/712086b9-20de-4bf8-967b-2ef4b5ae4f
獨(dú)孤劍
2017-08-29 17:02
閱讀:1500
參數(shù)按址傳遞需要用到 ref 關(guān)鍵字,ref 標(biāo)識(shí)的參數(shù)可以改變參數(shù)的原始值。static void Main(string[] args){string a = "0";int b = 0;Console.WriteLine("調(diào)用函數(shù)前");Console.WriteLine("a: {0}",a);Console.Write
獨(dú)孤劍
2017-08-29 15:12
閱讀:976
string path = System.Environment.CurrentDirectory + "\\test";
獨(dú)孤劍
2017-08-29 15:11
閱讀:878
C# 創(chuàng)建文件夾, 創(chuàng)建文件夾前判斷路徑是否存在
using System.IO;namespace ConsoleApp15
{class Program{static void Main(string[] args){CreateDirectory(@"D:\001");}/// /// 創(chuàng)建文件夾/// /// 路徑static void C
獨(dú)孤劍
2017-08-29 15:10
閱讀:1019
C# 刪除文件前判斷文件是否存在
static void Main(string[] args)
{// 判斷文件是不是存在if (System.IO.File.Exists(@"D:\001.txt")){// 如果存在則刪除System.IO.File.Delete(@"D:\001.txt");}
}
獨(dú)孤劍
2017-08-29 15:09
閱讀:1529
Dynamics CRM 2016 PluginRegistration 連接
獨(dú)孤劍
2017-08-25 15:02
閱讀:1169
記事本打開VS的.sln工程文件如下圖,左邊是VS2015的,右邊是VS2010的(看不清圖的,右鍵在新頁中打開,或者保存到本地看)VS2010打開VS2015的工程文件:1.首先前兩行的版本號(hào)改掉2.VS2015的限制版本那兩行直接刪除保存之
獨(dú)孤劍
2017-08-25 14:48
閱讀:1910
1.ImageList imageList = new ImageList();imageList.ImageSize = new Size(48, 48);this.listView1.LargeImageList = imageList;this.listView1.BeginUpdate();for (int i = 0; i {imageList.Images.Add(Image.FromF
獨(dú)孤劍
2017-08-25 14:45
閱讀:1068