did "translate" via Google still work

i got oHttp:Status Error 429 ... what does it mean
but i can download Message from Forum so i guess it is not a "MSXML2.ServerXMLHTTP" Problem, or

Moderator: Rathinagiri
Code: Select all
hb_idleSleep( 1.0 )
since using ReleaseAllWindows() App will not "hang" in Taskmanager any more// 28.09.2022 v0.4.5 IsInternet() on other Place
// 03.10.2022 v0.4.6 ReleaseAllWindows()
// 04.10.2022 v0.4.7 lTranslate
//
// 06.10.2022 v0.4.8 RELEASE Source and EXE
Code: Select all
731 REPLACE FORUM->INFO1 WITH "Have Image"
732 // LOOP
Code: Select all
1733 REPLACE FORUM->INFO1 WITH "Have Image"
1734 // LOOP
Code: Select all
SHELLOPENFILE(cFile)
Code: Select all
IF ".zip" $ LOWER( cFile ) .OR. ;
".rar" $ LOWER( cFile ) .OR. ;
".7z" $ LOWER( cFile ) .OR. ;
".prg" $ LOWER( cFile )
Code: Select all
STATIC PROCEDURE FindReplRTFProc( cFind )
LOCAL lMatchCase := .T.
Code: Select all
LOCAL lMatchCase := .F.
Code: Select all
MENUITEM "Download &Attachment" IMAGE "MYATTACHMENT" ACTION GetAllAttachment()U
Code: Select all
DEFINE LABEL Label_2INFO
---
ACTION GetThisAttachment()
Code: Select all
STATIC PROCEDURE GetThisAttachment()
LOCAL cAttach := FORUM.Text_2INFO.Value
IF !EMPTY( cAttach )
ORDSETFOCUS( "DUPECHECK" )
ResetFiles()
GetAttachment()
DoGetFiles( .T. )
ORDSETFOCUS( "MSGDATE" )
ENDIF
RETURN
Code: Select all
PROCEDURE DoSetFilterTo( nOrder )
LOCAL cTitle, nPosi
SELECT 1
IF !USED()
MsgInfo( "need DBF" )
RETURN
ENDIF
IF isWindowDefined( "DoShowFilterWin" )
Domethod("DoShowFilterWin","Release")
ENDIF
Code: Select all
DEFINE BUTTON Button_Link
...
ACTION DoShellLink()
Code: Select all
STATIC PROCEDURE DoShellLink()
LOCAL lRet
IF FORUM->NOOFMSG = 0
lRet := SHELLOPENFILE( TRIM( FORUM->LINK ) )
ELSE
lRet := SHELLOPENFILE( TRIM( FORUM->LINK ) + "&start=" + LTRIM( STR( FORUM->NOOFMSG ) ) )
ENDIF
IF lRet = .F.
MsgInfo( "fail to open link " + TRIM( FORUM->LINK ) )
ENDIF
RETURN