Click here to Skip to main content
15,893,644 members
Home / Discussions / Visual Basic
   

Visual Basic

 
AnswerRe: Email Attachment Pin
Steven J Jowett22-Sep-08 11:53
Steven J Jowett22-Sep-08 11:53 
QuestionImage Encryption and Decrypting Pin
sarfarazaliqureshi21-Sep-08 9:53
sarfarazaliqureshi21-Sep-08 9:53 
AnswerRe: Image Encryption and Decrypting Pin
jzonthemtn21-Sep-08 13:06
jzonthemtn21-Sep-08 13:06 
GeneralRe: Image Encryption and Decrypting Pin
sarfarazaliqureshi22-Sep-08 8:03
sarfarazaliqureshi22-Sep-08 8:03 
AnswerRe: Image Encryption and Decrypting Pin
Member 303106921-Sep-08 15:47
Member 303106921-Sep-08 15:47 
GeneralAbout posting code Pin
Guffa21-Sep-08 21:32
Guffa21-Sep-08 21:32 
GeneralRe: Image Encryption and Decrypting Pin
sarfarazaliqureshi22-Sep-08 8:13
sarfarazaliqureshi22-Sep-08 8:13 
Questiondynamic hyperlink + automatic mouse clicker Pin
laurenss21-Sep-08 7:30
laurenss21-Sep-08 7:30 
hi i have an apllication build ( with help !! much help from japarbz )
that opens links like :
http://www.google/userid=1
then http://www.google/userid=2
and so further ..
its an dynamic hyperlink with vazriable i

but now , its a difficult part ( i think)

first
a link has to open ( with the application)
so : http://www.google/userid=1
then , a button on that page has to be clicked
then the page goes like ; http://www.google/userid=1/completed ( example)
then yes , : http://www.google/userid=2 has to open
again , a button on that page has to be clicked ( the same button , same place , so maybe a can use an auto mouse clicker) ?

but i cant take the final url of example -> http://www.google/userid=1/completed cause it wont work so i have to use something like an auto mouseclicker

someone knows how to change the source that i dont have to use an extern auto mouse clicker ?
or someone another idea

here is the source of the appl that i have now ;

Option Explicit
Dim i As Integer
Dim j As Integer
Dim t  As Integer
Dim SaveStr As String

Private Sub Command1_Click()
Dim msg As String

msg = InputBox("How many times want to repeat ?", "repeat", 0)
If IsNull(msg) = False And IsNumeric(msg) = True Then
    t = CInt(msg)
Else
    Timer1.Enabled = False
End If
Timer1.Enabled = True
SaveStr = Text1.Text
End Sub

Private Sub Form_Load()
i = 1
Timer1.Interval = 100
Timer1.Enabled = False
End Sub

Private Sub Form_Resize()
Text1.Width = Me.Width
WebBrowser1.Width = Me.Width
WebBrowser1.Height = Me.Height
Command1.Left = Me.Width - Command1.Width
End Sub

Private Sub Timer1_Timer()
If WebBrowser1.Busy = False Then
    WebBrowser1.Navigate SaveStr + CStr(i)
    Text1.Text = SaveStr + CStr(i)
    i = i + 1
    
    If i = t + 1 Then
        Timer1.Enabled = False
        Text1.Text = vbNullString
        t = 0
        i = 1
    End If
End If
End Sub 

Questionhow to use report viewer in win application? Pin
Piyush Vardhan Singh21-Sep-08 3:57
Piyush Vardhan Singh21-Sep-08 3:57 
AnswerRe: how to use report viewer in win application? Pin
Paul Conrad21-Sep-08 7:29
professionalPaul Conrad21-Sep-08 7:29 
QuestionMscomcontrol and Mswinsck.ocx.. Pin
Subjugate21-Sep-08 3:01
Subjugate21-Sep-08 3:01 
AnswerRe: Mscomcontrol and Mswinsck.ocx.. Pin
Paul Conrad21-Sep-08 7:31
professionalPaul Conrad21-Sep-08 7:31 
GeneralRe: Mscomcontrol and Mswinsck.ocx.. Pin
Subjugate21-Sep-08 14:58
Subjugate21-Sep-08 14:58 
QuestionSaving a list of products [modified] Pin
Zaegra21-Sep-08 2:20
Zaegra21-Sep-08 2:20 
AnswerRe: Saving a list of products Pin
Ashfield21-Sep-08 21:46
Ashfield21-Sep-08 21:46 
GeneralRe: Saving a list of products Pin
Zaegra22-Sep-08 6:03
Zaegra22-Sep-08 6:03 
GeneralRe: Saving a list of products Pin
Ashfield22-Sep-08 8:53
Ashfield22-Sep-08 8:53 
AnswerRe: Saving a list of products Pin
Thomas Stockwell22-Sep-08 6:17
professionalThomas Stockwell22-Sep-08 6:17 
QuestionFile Counting Performance Pin
Sonhospa21-Sep-08 1:34
Sonhospa21-Sep-08 1:34 
AnswerRe: File Counting Performance Pin
Guffa21-Sep-08 22:41
Guffa21-Sep-08 22:41 
QuestionRe: File Counting Performance Pin
Sonhospa21-Sep-08 23:20
Sonhospa21-Sep-08 23:20 
AnswerRe: File Counting Performance Pin
Guffa24-Sep-08 20:41
Guffa24-Sep-08 20:41 
GeneralRe: File Counting Performance Pin
Sonhospa25-Sep-08 7:03
Sonhospa25-Sep-08 7:03 
QuestionSolution Explorer Control? Pin
Saul Johnson20-Sep-08 23:20
Saul Johnson20-Sep-08 23:20 
QuestionGraphics Bitmap Pin
Gagan.2020-Sep-08 17:32
Gagan.2020-Sep-08 17:32 

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.