有關 C 的錯誤訊息“提交”按鈕

發布 科技 2024-08-16
13個回答
  1. 匿名使用者2024-02-01

    源錯誤:第 77 行:;

    此錯誤是由 SQL 語句中的錯誤引起的 檢查 SQL 語句

    這樣做:在; 在上面新增乙個斷點,檢視 SQL 變數的值,然後使用查詢分析器執行它以檢視它是否正確。

  2. 匿名使用者2024-01-31

    這個提示(標準表示式中的資料型別不匹配)已經很明顯了。

    這是因為儲存過程中定義的變數的型別與表中的型別不匹配。

  3. 匿名使用者2024-01-30

    private sub command1_click()if val( = 0 or val( = 0 thenmsgbox ("請輸入乙個數值")else

    end if

    end sub

    無需轉換,但必須確保前兩個文字框作為數值輸入。

  4. 匿名使用者2024-01-29

    private sub command1_click()*vval(

    end sub

    只需注意轉換的數字型別即可!

  5. 匿名使用者2024-01-28

    表單的屬性分配不正確。

    function queryfile1()

  6. 匿名使用者2024-01-27

    function queryfile1()

    您的方法和行動在哪裡定義?

  7. 匿名使用者2024-01-26

    SQL語句:

    if not exists(select * from table where username=@username and password=@password)insert into table(username,password)values(@username,@password)";

    然後執行 executeNonQuery() 命令確定返回值,如果為 0,則報錯。

    public bool insertdata(sqlcommand sqlcom)

    然後呼叫:sqlcomand com=new sqlcommand("if not exists(select * from table where username=@username and password=@password)insert into table(username,password)values(@username,@password)");

    username").value="使用者名稱";

    password").value="密碼";

    if(!insertdata(com))

  8. 匿名使用者2024-01-25

    伺服器行為 - 使用者身份驗證 - 檢查新使用者名稱。

  9. 匿名使用者2024-01-24

    jlabel label=new jlabel("");這裡有乙個問題,改成label=new jlabel("");

    因為在 statechanged 方法中,標籤是全域性的,但您不初始化它。

  10. 匿名使用者2024-01-23

    您編寫的監控事件不合理且不正確。

  11. 匿名使用者2024-01-22

    舉個可能對您有用的示例,當使用者登入時,請在輸入密碼後按 Enter 鍵以響應登入按鈕

    private void txtpassword_keydown(object sender, keyeventargs e)

    輸入密碼後按Enter鍵進入系統。

    if ( == 如果要輸入 Enter 鍵。

    e);按鈕事件被觸發。

  12. 匿名使用者2024-01-21

    我看到**出了點問題,將frmlogin更改為這個,僅此而已。

  13. 匿名使用者2024-01-20

    1. 檢查正規表示式。

    2. 逐個檢查驗證控制項是否與文字框相對應。

相關回答
15個回答2024-08-16

更改時間格式並不像更改字串那麼簡單。

將 03 03 2010 更改為 2010-03-03,如下所示:字串 str1="03/03/2010"; >>>More

11個回答2024-08-16

IE8 刪除了 anonymous() 函式。 IE9 我沒有用過。 我想是一樣的。 >>>More

18個回答2024-08-16

您的程式中可能存在兩個錯誤,請檢查:

1 for (i = 3; i < sqrt(; i += 2)if (a[i] == 1) >>>More

5個回答2024-08-16

是否存在空指標的異常?

18個回答2024-08-16

………童鞋:你搞砸了你的指標。

首先,填充功能確實設定了您分配給它的所有空間'\0',但指標 p 不再指向您分配的空間,而是指向記憶體中“堆”的頂部; 然後,func 2 再次將其向上移動,按 num 位和位元組移動它,此時它指向 **? 反正不是你想要的地方。 將它指向的記憶體設定為'\0',則 strlen 應該得到 0,後面跟著 blank 將沒有任何輸出。 >>>More