Time of Update: 2018-12-04
using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; using System.IO; namespace smsxx { /// <summary> /// Form1 的摘要說明。 /// </summary> public class Form1
Time of Update: 2018-12-04
穿過Proxy 伺服器取遠端使用者真實IP地址: if(Request.ServerVariables["HTTP_VIA"]!=null){ string user_IP=Request.ServerVariables["HTTP_X_FORWARDED_FOR"].ToString(); }else{ string user_IP=Request.ServerVariables["REMOTE_ADDR"].ToString(); }
Time of Update: 2018-12-04
C++取函數地址Luo Weifeng 2010-3-18原文發表至QQ空間,現在轉過來。很多時候我們需要得到一個函數的地址,C中如此,C++中也一樣,如下。void f1() {}class C {public: void f2(){}};#include <stdio.h>;int main(){ printf("%p/n", f1); C c ; void(C::*p)(); p = &C::f2; printf("%p/n", p);}
Time of Update: 2018-12-04
C/C++ 筆試、面試題目大匯總 收藏 新一篇: 簡明x86組合語言教程 | 舊一篇: 組合語言的準備知識--給初次接觸彙編者 1.求下面函數的傳回值(微軟) int func(x) { int countx = 0; while(x) { countx ++; x = x&(x-1); } return countx; } 假定x = 9999。 答案:8 思路:將x轉化為2進位,看含有的1的個數。 2
Time of Update: 2018-12-04
在用戶端,一個rtx使用者給另一個rtx使用者發送訊息! 我的解決方案:在rtx服務端部署一個 wcf服務 或 webservice 服務,然後程式在用戶端調用服務就行。 1,C#版 (服務端需要4個DLL) Interop.RTXCAPILib.dll Interop.RTXClient.dll Interop.RTXSAPILib.dll Interop.RTXServerApi.dll :
Time of Update: 2018-12-04
Option ExplicitDim ss As String '最終產生的字串Dim tt As Integer '產生結果的個數Private Sub Command1_Click()Dim i As Integer, j As Integer, m As Integer, n As Integer Cls '清屏 tt = 0 Print "-----------------------------------" For i =
Time of Update: 2018-12-04
public static void SetComboList(ComboBox cboSource, string sSQL,string sWindowTxt,string sFirstItem="",DataTable dtSource=null) { string sError = string.Empty; DataTable dt=null; if (!string.IsNullOrEmpty(sSQL))
Time of Update: 2018-12-04
class getRandowArray { public getRandowArray() { arr = new int[100]; } int[] arr; /// <summary> /// 檢查數組中是否已存在此數 /// </summary> /// <returns>ture為已存在</returns&
Time of Update: 2018-12-04
23. 有哪幾種情況只能用intialization list 而不能用assignment? 答案:當類中含有const、reference 成員變數;基類的建構函式都需要初始化表。 24. C++是不是型別安全的? 答案:不是。兩個不同類型的指標之間可以強制轉換(用reinterpret cast)。C#是型別安全的。 25. main 函數執行以前,還會執行什麼代碼? 答案:全域對象的建構函式會在main 函數之前執行。 26. 描述記憶體配置方式以及它們的區別? 1)
Time of Update: 2018-12-04
myeclipse命令列視窗總是出現以下資訊,看起來很不爽: 3/17/10 9:55:59 AM CST: [INFO] User settings file does not exist C:/Documents and Settings/Administrator/.m2/settings.xml3/17/10 9:56:01 AM CST: [INFO] User settings file does not exist C:/Documents and
Time of Update: 2018-12-04
using System;using System.Collections.Generic;using System.Linq;using System.Text;using System.Data;namespace comback{ /// <summary> /// 1:要添加的省可以在下面的第18行中添加,相關市、區縣等添加到下面聲明變數處即可。 /// 2:然後在計數處聲明相關變數以供計算。 ///
Time of Update: 2018-12-04
using System;using System.Collections.Generic;using System.Linq;using System.Text;namespace comback{ class LogManager { //<summary> //儲存日誌的檔案夾 //<summary> private static string logPath =
Time of Update: 2018-12-04
這個沒含量,以前也沒用過treeview控制項,初次用。需求:F盤下有年目錄,下面有月目錄,再下面就是天的檔案,用treeview顯示下,折騰了一兩個小時,搞出來了。//初始化樹形列表值 private void Test_Load(object sender, EventArgs e) { //基目錄 string basePath = @"F:\comback\Release\log";
Time of Update: 2018-12-04
//由於日誌中含有中文,用常用的Navigate()方法會含有亂碼,所以用這種流的方式,一行一行的讀。 string fullPath = @"F:\comback\Release\log\20121216.Log"; StringBuilder sb = new StringBuilder(""); StreamReader streamReader = null; try
Time of Update: 2018-12-04
一段伺服器端設定檔,一段用戶端設定檔,一段下載代碼。RemoteXmlFile.xml<?xml version="1.0" encoding="utf-8"?><configuration> <Item key="client" value="20121228" content="tlnews001,tlnews002,tlnews003" size="3" /> <Item key="renbao" value="20121228"
Time of Update: 2018-12-04
今天學了一下C#的迴圈語句,其實跟C語言是一樣的,剛開始可能不知道什麼時候用while或for語句,多用幾次基本上都能理解,還要注意continue、break、return的區別。 continue只是中斷本次迴圈,不執行它後面的迴圈體語句,並進行下一次迴圈。 break是跳出整個迴圈體,執行迴圈體外部後面的語句。 return是不僅是跳出整個迴圈體,還結束整個函數的執行,所以它後面的語句,不管是在循2011-04-17環體內或在迴圈體外,都不執行,直接返回。2011
Time of Update: 2018-12-04
尋找進程的方法:1.通過System.Diagnostics.Process.GetProcesses()方法能夠獲得系統內各進程的數組public staticbool KillProcess(string pProcessName){ Process[] processes; processes= Process.GetProcessesByName(processName); if (processes.Length = 0 )
Time of Update: 2018-12-04
下面是大二的時候倉儲老師布置的一個作業,是關於單倉庫選址的問題,要我們用C語言寫代碼,編一個程式!這隻是一個作業!!!單倉庫設施選址決策方法 單設施選址模型有不同的名稱,如:精確重心法、網格法和重心法等,因為選址因素只包括運輸費率和該點的貨物運輸量,所以此方法較為簡單。 我們以預計倉庫點位到達各個目的點位的成本最低為考察目標: 即: Min TC=∑ViRidi i
Time of Update: 2018-12-04
轉自 作者Blog:http://blog.csdn.net/cilong521/談起socket編程,大家也許會想起QQ和IE,沒錯。還有許多網路工具如P2P、NetMeeting等在應用程式層實現的應用程式,也是用socket來實現的。Socket是一個網路編程介面,實現於網路應用程式層,Windows Socket包括了一套系統組件,充分利用了Microsoft Windows
Time of Update: 2018-12-04
轉自 作者Blog:http://blog.csdn.net/xiaolong83/關於資料庫編程,微軟提供了一個統一的資料對象訪問模型,在Visual