Click here to Skip to main content
15,884,739 members
Home / Discussions / Work Issues
   

Work Issues

 
AnswerRe: Analysis and Design book? Pin
g4m4t4tsu22-Oct-08 22:54
g4m4t4tsu22-Oct-08 22:54 
QuestionNeed to purchase a SharePoint MOSS 2007 book Pin
pnslcs1-Oct-08 7:27
pnslcs1-Oct-08 7:27 
Questioncan anybody guide regarding my query Pin
an8924-Sep-08 22:19
an8924-Sep-08 22:19 
AnswerRe: can anybody guide regarding my query Pin
Mohammed Hameed28-Sep-08 2:57
professionalMohammed Hameed28-Sep-08 2:57 
QuestionC++ native code Pin
Fady Aladdin23-Sep-08 2:33
Fady Aladdin23-Sep-08 2:33 
GeneralRe: C++ native code Pin
Pete O'Hanlon23-Sep-08 2:45
mvePete O'Hanlon23-Sep-08 2:45 
GeneralRe: C++ native code Pin
Paul Conrad25-Sep-08 7:08
professionalPaul Conrad25-Sep-08 7:08 
Questiondynamic hyperlink + auto mouse clicker Pin
laurenss21-Sep-08 7:28
laurenss21-Sep-08 7:28 
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 

QuestionAnyone know of a good course for C# in the UK Pin
TheFoZ20-Sep-08 5:53
TheFoZ20-Sep-08 5:53 
AnswerRe: Anyone know of a good course for C# in the UK Pin
Simon P Stevens16-Oct-08 22:32
Simon P Stevens16-Oct-08 22:32 
GeneralRe: Anyone know of a good course for C# in the UK Pin
TheFoZ17-Oct-08 6:50
TheFoZ17-Oct-08 6:50 
QuestionHow to get my foot in the right door? Pin
MikeMarq18-Sep-08 8:57
MikeMarq18-Sep-08 8:57 
AnswerRe: How to get my foot in the right door? Pin
LloydA1114-Oct-08 3:33
LloydA1114-Oct-08 3:33 
AnswerRe: How to get my foot in the right door? Pin
Simon P Stevens16-Oct-08 22:46
Simon P Stevens16-Oct-08 22:46 
QuestionTraining team on .NET and C# Pin
Tim Holgerson17-Sep-08 11:47
Tim Holgerson17-Sep-08 11:47 
AnswerRe: Training team on .NET and C# Pin
perryf_0017-Sep-08 12:42
perryf_0017-Sep-08 12:42 
AnswerRe: Training team on .NET and C# Pin
Tim Holgerson18-Sep-08 3:19
Tim Holgerson18-Sep-08 3:19 
GeneralRe: Training team on .NET and C# Pin
perryf_0018-Sep-08 4:02
perryf_0018-Sep-08 4:02 
GeneralRe: Training team on .NET and C# Pin
Tim Holgerson18-Sep-08 4:32
Tim Holgerson18-Sep-08 4:32 
GeneralRe: Training team on .NET and C# Pin
perryf_0018-Sep-08 5:16
perryf_0018-Sep-08 5:16 
GeneralRe: Training team on .NET and C# Pin
Tim Holgerson18-Sep-08 6:06
Tim Holgerson18-Sep-08 6:06 
QuestionFreelance project Pin
Mohammed Hameed17-Sep-08 0:24
professionalMohammed Hameed17-Sep-08 0:24 
AnswerRe: Freelance project Pin
Paul Conrad18-Sep-08 6:32
professionalPaul Conrad18-Sep-08 6:32 
AnswerRe: Freelance project Pin
JacquesTheron27-Sep-08 20:53
JacquesTheron27-Sep-08 20:53 
GeneralRe: Freelance project Pin
Mohammed Hameed28-Sep-08 2:55
professionalMohammed Hameed28-Sep-08 2:55 

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.