Click here to Skip to main content
15,895,423 members
Home / Discussions / C / C++ / MFC
   

C / C++ / MFC

 
GeneralRe: A question about recording Pin
Mark Salsbery18-Oct-06 6:35
Mark Salsbery18-Oct-06 6:35 
Question"Back" feature in VC++ Pin
Oliver12317-Oct-06 9:57
Oliver12317-Oct-06 9:57 
AnswerRe: "Back" feature in VC++ Pin
Christian Graus17-Oct-06 12:35
protectorChristian Graus17-Oct-06 12:35 
AnswerRe: "Back" feature in VC++ Pin
Michael Dunn18-Oct-06 16:00
sitebuilderMichael Dunn18-Oct-06 16:00 
QuestionAccessing a website using MFC/C++ Pin
veikko17-Oct-06 8:28
veikko17-Oct-06 8:28 
AnswerRe: Accessing a website using MFC/C++ Pin
David Crow17-Oct-06 8:35
David Crow17-Oct-06 8:35 
GeneralRe: Accessing a website using MFC/C++ Pin
veikko17-Oct-06 10:01
veikko17-Oct-06 10:01 
GeneralRe: Accessing a website using MFC/C++ Pin
David Crow17-Oct-06 10:50
David Crow17-Oct-06 10:50 
Here's one I used to use with the HowStuffWorks forum:

Dim objIE
Set objIE = WScript.CreateObject("InternetExplorer.Application")
 
objIE.Navigate "http://forum.howstuffworks.com/login.php?Cat="
objIE.Visible = true
 
While objIE.Busy = true
Wend
 
objIE.Document.All("Loginname").Value = "DavidCrow"
objIE.Document.All("Loginpass").Value = "pwd"
objIE.Document.All.Item("option", 0).Click
The last line is what "clicked" the button.


"Approved Workmen Are Not Ashamed" - 2 Timothy 2:15

"Judge not by the eye but by the heart." - Native American Proverb


GeneralRe: Accessing a website using MFC/C++ Pin
veikko17-Oct-06 19:03
veikko17-Oct-06 19:03 
QuestionMemory Overrun! in MFC Pin
mostafa_pasha17-Oct-06 8:25
mostafa_pasha17-Oct-06 8:25 
QuestionRe: Memory Overrun! in MFC Pin
David Crow17-Oct-06 8:37
David Crow17-Oct-06 8:37 
AnswerRe: Memory Overrun! in MFC Pin
Zac Howland17-Oct-06 8:52
Zac Howland17-Oct-06 8:52 
GeneralRe: Memory Overrun! in MFC Pin
David Crow17-Oct-06 9:02
David Crow17-Oct-06 9:02 
GeneralRe: Memory Overrun! in MFC Pin
Zac Howland17-Oct-06 9:19
Zac Howland17-Oct-06 9:19 
GeneralRe: Memory Overrun! in MFC Pin
charlieg29-Oct-06 13:06
charlieg29-Oct-06 13:06 
AnswerRe: Memory Overrun! in MFC Pin
Mark Salsbery17-Oct-06 9:05
Mark Salsbery17-Oct-06 9:05 
GeneralRe: Memory Overrun! in MFC Pin
ThatsAlok18-Oct-06 4:59
ThatsAlok18-Oct-06 4:59 
GeneralRe: Memory Overrun! in MFC Pin
Mark Salsbery18-Oct-06 6:37
Mark Salsbery18-Oct-06 6:37 
GeneralRe: Memory Overrun! in MFC Pin
Mark Salsbery18-Oct-06 6:40
Mark Salsbery18-Oct-06 6:40 
GeneralRe: Memory Overrun! in MFC Pin
mostafa_pasha18-Oct-06 9:15
mostafa_pasha18-Oct-06 9:15 
GeneralRe: Memory Overrun! in MFC Pin
Mark Salsbery18-Oct-06 9:56
Mark Salsbery18-Oct-06 9:56 
GeneralRe: Memory Overrun! in MFC Pin
mostafa_pasha18-Oct-06 11:05
mostafa_pasha18-Oct-06 11:05 
GeneralRe: Memory Overrun! in MFC Pin
David Crow19-Oct-06 4:47
David Crow19-Oct-06 4:47 
GeneralRe: Memory Overrun! in MFC Pin
mostafa_pasha19-Oct-06 8:26
mostafa_pasha19-Oct-06 8:26 
GeneralRe: Memory Overrun! in MFC Pin
David Crow19-Oct-06 8:47
David Crow19-Oct-06 8:47 

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.