原创 Ranorex兩個方法怎麼調用

1、Rx工程下有Rx與Rx兩個方法,如果需要在Rx中調用Rs方法則需要先添加命名空間 using Rs; 2、之後  這樣就可以用了,數據綁定可以在這裏的COM下添加Excel接口,我的是這個,其他可按自己想要的添加    

原创 Python漢諾塔

def hanoi(n,x,y,z): if n==1: print(x,'-->',z) else: hanoi(n-1,x,z,y) #將n-1個盤子從x移動到y上

原创 Match、IsMatch

1、Match:返回的是包含匹配信息的Match對象。 Study("橋架多回路佈線自動生成"); public static void Study(string b){ stri

原创 IndexOf、LastIndexOf、Substring、IndexOfAny純記錄

1、 IndexOf Study("全部匹配"); public static void Study(string b){ string[] a=new string[]{"匹配","

原创 VS中MFC學習

1、建立MFC工程自動生成.rc,在這裏你可添加對話框的元素,如:  在對話框中右鍵添加類,在這裏寫對對話框的操作,自己不需要再重新新建,控制對話框用ID,添加消息響應,  ,在stdafx.h添加需要常用的.h文件 2、調試 打開M

原创 Seleuium +Java

純記錄 1、Seleuium  jar包(網盤裏有),火狐,IDE(後來我發現直接用Firefox打開https://addons.mozilla.org/en-US/firefox/addon/selenium-ide/,點擊”Add

原创 C#簡單判空

      Nullable<int> a =new System.Nullable<int>(10);                      Report.Info("傳入參數類型 "+a.GetType());   //傳入參數類

原创 討論構造拷貝的N種調用情況的問題

1、總結C++對傳參和傳返回值時構造的優化處理 在c++中,傳參和傳返回值時,如果是引用類型,則不用調用拷貝構造函數,直接返回別名 當語句爲一個表達式時,編譯器會選擇優化,將構造函數和拷貝構造合併 在c++中調用幾次構造函數和拷貝構造函數

原创 二維數組、鋸齒數組

1、二維數組 string[,] strClickZB=new string[,]{{"0,9000","9000,9000","9000,6000","6000,3000"},

原创 Mouse.ScrollWheel

純記錄 public static void ScrollWheel(int delta)         ScrollWheel(1);         public static void ScrollWheel(int C){  

原创 VS配置Sqlite

下載路徑:https://www.sqlite.org/download.html 1、首先解壓出三個文件sqlite3.dll、sqlite3.def、sqlite3.h 2、爲了簡單,在vs下找到C:\Program Files

原创 Clone()

        public class StudyClass{ public static PMS_SuanLiangRepository repo = PMS_SuanLiangRepository.Instan

原创 A+B算法

using namespace std; #include<iostream> #include<string> #include<stdio.h> #include <stdlib.h> int Sum(int a,int b){   

原创 算法網址

https://www.luogu.org/problemnew/lists https://leetcode-cn.com/problemset/all/ https://www.lintcode.com/problem/

原创 C#學習記錄

int r=repo.MainWnd_PMS_AzSoft.ctrl_DrawViewWindow.ScreenRectangle.Top; int e=repo.MainWnd_PMS_AzSoft.ctrl_DrawVie