討論串[VB6 ] 關於MsgBox用法
共 5 篇文章
內容預覽:
Chr(13) 是不正確的,windows的換行符號一定要13(cr)+10(lf). strMsg = "應找金額為" & total & "元" & vbCrLf. strMsg = strMsg & "以下為找零明細" & vbCrLf & vbCrLf. Dim unit(1). unit(
(還有518個字)
內容預覽:
strMsg="". strMsg=strMsg & "應找金額為" & total & "元" & Chr(13). strMsg=strMsg & "以下為找零明細" & Chr(13). strMsg=strMsg & Chr(13) & "一千" & money(0) & "張" & Chr
(還有153個字)
內容預覽:
我這學期才開始碰VB. 有點小問題想請教版上高手. MsgBox "應找金額為" & total & "元" & Chr(13) & "以下為找零明細" & Chr(13) &. Chr(13) & "一千" & money(0) & "張" & Chr(13) & "一百" & money(1)
(還有111個字)