Click here to Skip to main content
15,911,141 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Catch printing any document from any application (word, excel, pdf,...) to show printing options Pin
Dave Kreskowiak6-Oct-09 4:11
mveDave Kreskowiak6-Oct-09 4:11 
AnswerRe: Catch printing any document from any application (word, excel, pdf,...) to show printing options Pin
Henry Minute6-Oct-09 4:24
Henry Minute6-Oct-09 4:24 
AnswerRe: Catch printing any document from any application (word, excel, pdf,...) to show printing options Pin
Steven J Jowett6-Oct-09 9:59
Steven J Jowett6-Oct-09 9:59 
QuestionDoes binding in design time automatically updating the field in the table in dataset? Pin
JUNEYT6-Oct-09 3:54
JUNEYT6-Oct-09 3:54 
AnswerRe: Does binding in design time automatically updating the field in the table in dataset? Pin
Dave Kreskowiak6-Oct-09 8:02
mveDave Kreskowiak6-Oct-09 8:02 
QuestionScriptlet control Pin
mmusha6-Oct-09 1:11
mmusha6-Oct-09 1:11 
AnswerRe: Scriptlet control Pin
Dave Kreskowiak6-Oct-09 4:04
mveDave Kreskowiak6-Oct-09 4:04 
GeneralRe: Scriptlet control Pin
mmusha6-Oct-09 21:03
mmusha6-Oct-09 21:03 
I created one html file that file should view through scriptlet control. Before deploying the project it works fine
After deploying the project only the scriptlet is not working.
I think that the corresponding dll is not there in my deployed application. Here i am sendig my code
Private Sub btnhome_Click()
Unload Me
frmMain.Show
End Sub

Private Sub Form_Load()

   
    Scriptlet1.Visible = False
    MMControl1.fileName = App.path & "\Time Line1.mpg"
    MMControl1.hWndDisplay = Picture1.hwnd
    
    MMControl1.Command = "Open"
    
End Sub

Private Sub Form_Unload(Cancel As Integer)
    MMControl1.Command = "Stop"
    MMControl1.Command = "Close"
End Sub

Private Sub Home_Click()
Unload Me
frmMain.Show
End Sub



Private Sub MMControl1_StatusUpdate()
Dim strMode As String
strMode = ""
Select Case MMControl1.Mode
Case mciModeReady
strMode = "Ready."
Case mciModeStop
strMode = "Stopped."
Scriptlet1.Visible = False
Case mciModeSeek
strMode = "Seeking."
Case mciModePlay
strMode = "Playing."
Scriptlet1.Visible = True
'Scriptlet1.url = "file://" & App.path & "\fish1.html"
Case mciModeRecord
strMode = "Recording."
Case mciModePause
strMode = "Paused."

End Select
Label1.Caption = strMode
End Sub


Private Sub Scriptlet1_onscriptletevent(ByVal name As String, ByVal eventData As Variant)

End Sub

AnswerRe: Scriptlet control Pin
The Man from U.N.C.L.E.6-Oct-09 4:12
The Man from U.N.C.L.E.6-Oct-09 4:12 
QuestionWinform UploadFile to Upload.aspx page (VB.Net 2005) Pin
S.Dhanasekaran6-Oct-09 0:00
S.Dhanasekaran6-Oct-09 0:00 
AnswerRe: Winform UploadFile to Upload.aspx page (VB.Net 2005) Pin
Christian Graus6-Oct-09 0:12
protectorChristian Graus6-Oct-09 0:12 
Questionout prameter to store procedure in vb.net Pin
paya1pa5-Oct-09 22:06
paya1pa5-Oct-09 22:06 
AnswerRe: out prameter to store procedure in vb.net Pin
εїзεїзεїз5-Oct-09 23:44
εїзεїзεїз5-Oct-09 23:44 
GeneralRe: out prameter to store procedure in vb.net Pin
Christian Graus5-Oct-09 23:58
protectorChristian Graus5-Oct-09 23:58 
GeneralRe: out prameter to store procedure in vb.net Pin
εїзεїзεїз6-Oct-09 0:04
εїзεїзεїз6-Oct-09 0:04 
AnswerRe: out prameter to store procedure in vb.net Pin
Christian Graus6-Oct-09 0:02
protectorChristian Graus6-Oct-09 0:02 
GeneralRe: out prameter to store procedure in vb.net Pin
εїзεїзεїз6-Oct-09 0:14
εїзεїзεїз6-Oct-09 0:14 
QuestionGetting the pid(process id) in vb.net when a task is scheduled or Run Pin
balaji sukumaran5-Oct-09 20:23
balaji sukumaran5-Oct-09 20:23 
AnswerRe: Getting the pid(process id) in vb.net when a task is scheduled or Run Pin
Christian Graus5-Oct-09 20:34
protectorChristian Graus5-Oct-09 20:34 
QuestionByte Array and Listview Display on large icon, small icon, list and tile view Pin
Danang Prakoso5-Oct-09 16:29
Danang Prakoso5-Oct-09 16:29 
GeneralRe: Byte Array and Listview Display on large icon, small icon, list and tile view Pin
Danang Prakoso5-Oct-09 16:30
Danang Prakoso5-Oct-09 16:30 
AnswerRe: Byte Array and Listview Display on large icon, small icon, list and tile view Pin
Richard MacCutchan6-Oct-09 0:18
mveRichard MacCutchan6-Oct-09 0:18 
QuestionRe: Byte Array and Listview Display on large icon, small icon, list and tile view Pin
Danang Prakoso6-Oct-09 16:13
Danang Prakoso6-Oct-09 16:13 
AnswerRe: Byte Array and Listview Display on large icon, small icon, list and tile view Pin
Richard MacCutchan6-Oct-09 21:36
mveRichard MacCutchan6-Oct-09 21:36 
QuestionRe: Byte Array and Listview Display on large icon, small icon, list and tile view Pin
Danang Prakoso12-Oct-09 17:10
Danang Prakoso12-Oct-09 17:10 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.