是否可以在VBA中忽略函數的返回值? 我有什麼在當下的事: Dim returnValue As Long 'This line is mandatory since I use Opition Explicit
returnValue = MsgBox("...")
我想怎麼辦 MsgBox("...")
在C++中我會解決這個問題是這樣的: (void) MsgBox("...")
在我的應用程序到目前爲止,我使用Android的Twitter工具包顯示推文(我現在自己的),並有一個轉推按鈕,我正在嘗試(去圖)使用Twitter API客戶端轉發。 下面是我在這之前提到的鏈接: 1) Twitter REST APIs from Android 2) Twitter Community Discussion on Retweeting using the TwitterApi