Jump to content

BizZaroO

Active Members
  • Posts

    195
  • Joined

  • Last visited

Everything posted by BizZaroO

  1. Tare as vrea sa vad si eu postul ala. Si chiar dak as fi cerut, niciodata nu am cerut sa imi sparga cineva adrese de mess. Am cerut sa imi fac prieteni. + de asta stiu si eu sa folosesc google. Chiar nu vreau sa jignesc pe nimeni, dar chestia cu cerutu adreselor de mess nu cred ca am facut-o decat in privat si in nici un caz nu pe fata. AAA ca miam dat adresa de mess asta e alta treaba, dar nu am cerut adresa de mess nimaniu. Era o simpla prezentare pe care am uitat sa o fac la inceput. Sper ca ai priceput ce voiam sa zic
  2. http://rapidshare.com/files/2886296/fpingbrk.zip Recover forgotten mailbox passwords that are stored in the email client. Program emulates POP3 server and password is sent back to the user. It supports any POP3 email client, that stores the passwords.
  3. Cu scuzele de rigoare pentru post, Vreau sa ma prezint deoarece nu am facut-o la timpu potrivit. MA numesc Ares A.K.A BizZaroO am 15 ani sunt din plopeni, jud prahova id de mess: draguna_ares (add to talk) Si inca o data scuze ca nu am postat la inceput
  4. Multi vad prezentarea la vip si cred ca acolo e "aur". IDee. Faceti 2 sectiuni. In o sectiune prezentarea programelor ca sa nu mai moara astia de curiozitate, si sa aiba aces. Si 2 programele si downloadu adik lasati sectiunea Vip asa cum e aku.
  5. The information in this article applies to: - Standard, Professional and Enterprise Editions of Microsoft Visual Basic, 32-bit only, for Windows, version 4.0 --------------------------------------------------------------------- SUMMARY ======= The Win32 API features a new function called DrawEdge. Its purpose is to draw 3D effects for all Windows applications. Microsoft Windows NT version 3.51 and Microsoft Windows 95 both use the DrawEdge function for all of their 3D effects. "The Windows Interface Guidelines for Software Design" (by Microsoft Press) also suggests that all Windows programmers use the DrawEdge function when adding 3D effects to their applications. The advantages of using the DrawEdge function are: - It provides a consistent 3D look and feel for all applications. - It saves the programmer from having to convert their 3D code to a flat version for use with monochrome displays and printers. - It insures that your 3D effects redraw properly when the system colors change. - It allows you to avoid using and distributing THREED32.OCX to add 3D effects to your application. - It allows for maximum portability to future versions of Windows. MORE INFORMATION ================ The following code sample is a module of all of the declarations needed to use the DrawEdge function with Visual Basic 4.0 for Windows. '*********************************************************************** ' DrawEdge.bas - Contains API declarations and constants for the ' DrawEdge API function. '*********************************************************************** Option Explicit Public Type RECT Left As Long Top As Long Right As Long Bottom As Long End Type Public Const BDR_RAISEDOUTER = &H1 Public Const BDR_SUNKENOUTER = &H2 Public Const BDR_RAISEDINNER = &H4 Public Const BDR_SUNKENINNER = &H8 Public Const BDR_OUTER = &H3 Public Const BDR_INNER = &HC Public Const BDR_RAISED = &H5 Public Const BDR_SUNKEN = &HA Public Const EDGE_RAISED = (BDR_RAISEDOUTER Or BDR_RAISEDINNER) Public Const EDGE_SUNKEN = (BDR_SUNKENOUTER Or BDR_SUNKENINNER) Public Const EDGE_ETCHED = (BDR_SUNKENOUTER Or BDR_RAISEDINNER) Public Const EDGE_BUMP = (BDR_RAISEDOUTER Or BDR_SUNKENINNER) Public Const BF_LEFT = &H1 Public Const BF_TOP = &H2 Public Const BF_RIGHT = &H4 Public Const BF_BOTTOM = &H8 Public Const BF_TOPLEFT = (BF_TOP Or BF_LEFT) Public Const BF_TOPRIGHT = (BF_TOP Or BF_RIGHT) Public Const BF_BOTTOMLEFT = (BF_BOTTOM Or BF_LEFT) Public Const BF_BOTTOMRIGHT = (BF_BOTTOM Or BF_RIGHT) Public Const BF_RECT = (BF_LEFT Or BF_TOP Or BF_RIGHT Or BF_BOTTOM) Public Const BF_DIAGONAL = &H10 ' For diagonal lines, the BF_RECT flags specify the end point of the ' vector bounded by the rectangle parameter. Public Const BF_DIAGONAL_ENDTOPRIGHT = (BF_DIAGONAL Or BF_TOP _ Or BF_RIGHT) Public Const BF_DIAGONAL_ENDTOPLEFT = (BF_DIAGONAL Or BF_TOP Or BF_LEFT) Public Const BF_DIAGONAL_ENDBOTTOMLEFT = (BF_DIAGONAL Or BF_BOTTOM _ Or BF_LEFT) Public Const BF_DIAGONAL_ENDBOTTOMRIGHT = (BF_DIAGONAL Or BF_BOTTOM _ Or BF_RIGHT) Public Const BF_MIDDLE = &H800 ' Fill in the middle Public Const BF_SOFT = &H1000 ' For softer buttons Public Const BF_ADJUST = &H2000 ' Calculate the space left over Public Const BF_FLAT = &H4000 ' For flat rather than 3D borders Public Const BF_MONO = &H8000 ' For monochrome borders Public Declare Function DrawEdge Lib "user32" (ByVal hdc As Long, _ qrc As RECT, ByVal edge As Long, ByVal grfFlags As Long) As Boolean '*********************************************************************** ' DrawEdge.frm - Demonstrates a simple example of how to use DrawEdge. '*********************************************************************** Option Explicit '*********************************************************************** ' Prepares the form and Picture1 for use with DrawEdge. '*********************************************************************** Private Sub Form_Load() '------------------------------------------------------------------- ' Always set the ScaleMode to pixels when using API drawing ' functions. '------------------------------------------------------------------- ScaleMode = vbPixels With Picture1 '--------------------------------------------------------------- ' The next line is not required if you put your drawing code ' in the Paint event. '--------------------------------------------------------------- .AutoRedraw = True '--------------------------------------------------------------- ' Set the Backcolor, set the Borderstyle to none, and size ' the picture box to a more realistic button size. '--------------------------------------------------------------- .BackColor = vb3DFace .BorderStyle = 0 .Move 60, 10, 90, 30 '-------------------- ------------------------------------------- ' Make sure the picture box uses the pixel ScaleMode, and ' set the tag of the control to a caption for later use with ' DrawControl. '--------------------------------------------------------------- .ScaleMode = vbPixels .Tag = "DrawEdge Test" End With '------------------------------------------------------------------- ' Draw the initial button. '------------------------------------------------------------------- DrawControl Picture1, Picture1.Tag, EDGE_RAISED End Sub '*********************************************************************** ' When the picture box gets a click event, an etched box is drawn on ' the upper left corner of the form. '*********************************************************************** Private Sub Picture1_Click() Dim r As RECT ' used by DrawEdge to determine where to draw '------------------------------------------------------------------- ' Location of the etched box. '------------------------------------------------------------------- With r .Left = 10 .Top = 10 .Right = 50 .Bottom = 50 End With '------------------------------------------------------------------- ' Draw it. '------------------------------------------------------------------- DrawEdge hdc, r, EDGE_ETCHED, BF_RECT End Sub '*********************************************************************** ' When the user presses the mouse down on the picture box a sunken edge ' is drawn to simulate a depresessed button. '*********************************************************************** Private Sub Picture1_MouseDown(Button%, Shift%, X!, Y!) DrawControl Picture1, Picture1.Tag, EDGE_SUNKEN End Sub '*********************************************************************** ' When the user releases the mouse over the picture box a standard ' button is drawn. '*********************************************************************** Private Sub Picture1_MouseUp(Button%, Shift%, X!, Y!) DrawControl Picture1, Picture1.Tag, EDGE_RAISED End Sub '*********************************************************************** ' The DrawControl helper function is designed to make it easier to ' draw a button on a picture box. '*********************************************************************** Private Sub DrawControl(picControl As PictureBox, _ strCaption As String, Optional vntEdge) Dim r As RECT ' Holds the location of the DrawEdge rectangle. Dim intOffset% ' Used to shift the caption when the button is ' pressed. '------------------------------------------------------------------- ' If the user doesn't provide a Edge flag, then use a default value. '------------------------------------------------------------------- vntEdge = IIf(IsMissing(vntEdge), EDGE_RAISED, vntEdge) '------------------------------------------------------------------- ' Clear the picture control and determine where to draw the new ' rectangle and caption. '------------------------------------------------------------------- With picControl .Cls r.Left = .ScaleLeft r.Top = .ScaleTop r.Right = .ScaleWidth r.Bottom = .ScaleHeight If vntEdge = EDGE_SUNKEN Then intOffset = 2 .CurrentX = (.ScaleWidth - .TextWidth(strCaption) _ + intOffset) / 2 .CurrentY = (.ScaleHeight - .TextHeight(strCaption) _ + intOffset) / 2 End With '------------------------------------------------------------------- ' Draw the caption, then draw the rectangle. '------------------------------------------------------------------- Picture1.Print strCaption DrawEdge picControl.hdc, r, CLng(vntEdge), BF_RECT '------------------------------------------------------------------- ' If AutoRedraw is True, then any drawing done by an API call cannot ' be seen until until the picture box gets refreshed. '------------------------------------------------------------------- If picControl.AutoRedraw Then picControl.Refresh End Sub KBCategory: kbui kbcode kbhowto KBSubCategory: Additional reference words: 4.00 DRAW EDGE THREED SSPANEL vb4win vb432 ============================================================================= THE INFORMATION PROVIDED IN THE MICROSOFT KNOWLEDGE BASE IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND. MICROSOFT DISCLAIMS ALL WARRANTIES, EITHER EXPRESS OR IMPLIED, INCLUDING THE WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE. IN NO EVENT SHALL MICROSOFT CORPORATION OR ITS SUPPLIERS BE LIABLE FOR ANY DAMAGES WHATSOEVER INCLUDING DIRECT, INDIRECT, INCIDENTAL, CONSEQUENTIAL, LOSS OF BUSINESS PROFITS OR SPECIAL DAMAGES, EVEN IF MICROSOFT CORPORATION OR ITS SUPPLIERS HAVE BEEN ADVISED OF THE POSSIBILITY OF SUCH DAMAGES. SOME STATES DO NOT ALLOW THE EXCLUSION OR LIMITATION OF LIABILITY FOR CONSEQUENTIAL OR INCIDENTAL DAMAGES SO THE FOREGOING LIMITATION MAY NOT APPLY. Copyright Microsoft Corporation 1995. E pentru Vb 4.0. Google it dak vreti sa incercati
  6. http://irc.itbox.ro/psy_bnc_eggdrop.php PsyBnC, EggDrop, Bot dar numai ptr linux. E un eggdrop ptr windows dar mie nu imi mere. POate va merge voua
  7. BizZaroO

    Proxy list

    http://www.proxy4free.com/page1.html
  8. This program implements in Windows the Flood Ping option found in UNIX ping (-f option) with a useful twist. This program measures the point where a data paths ability to carry packets breaks down, this determining the overall reliability of a data path..http://www.megaupload.com/?d=LLZWUR1I Si pe rapidshare http://rapidshare.com/files/2886296/fpingbrk.zip
  9. nother link pls. Nu mai mere ala
  10. http://www.freestuffhotdeals.com/hacker/oct.html asta e linku pana la 9 la I joc. Dar mia departe nu stiu
  11. mere neptun.. dar porma habar nu am ce urmeaza. pana aici am ajuns. restul au fost simple oricum. al doilea e greu
  12. Parse error: syntax error, unexpected T_VARIABLE, expecting ';' in /home/www/free/xhost.ro/aresinthegame.xhost.ro/index.php on line 71 asta imi apare cand incerc sa rulez pagina. ideea e urmatoarea: am 2 fisiere index. 1 e index.html si unu .php. Cel php e facut de mine (dupa codul afisat in prima pagina) cel html e facut de aia... ma rog cel pe care il stie toata lumea. Acum cum fac sa ma conectez??????? cum fac sa imi apara cum ii apare lui shoker? explicatii pls
  13. cum ma conectez la bot. Sunt mai prost la cap irc astept ajutor
  14. bai fratilor!!!! care e parola la al doilea joc? nu tre ca lvl 1
  15. va rog frumos sa postati din nou programul de mai sus. Si 1 program. Amandoua nu mai sunt, Multumesc anticipat
  16. Vreau si eu un tutorial vb cum se face un trojan nedetectabil... nu am 30 de posturi.. dar dak vrei sa ma ajuti cu asa ceva ... mersi anticiat Chai dak vrei chair dak nu
  17. da si mie tre sami explici si io sunt n00b
  18. sincer... mam uitat in tutoriale... dar nu inteleg nimik.. mai am 15 ani ca sa iti raspund la intrebare. si da.. sunt copil... ma rog in ceea ce priveste asta cu spart parole si phpbb si ma rog restu. ideea e ca dak auzi de hekareala.. un incepator se gandeste imediat la spart parole. Cred ca aici esti de acord cu mine
  19. aci cam ai dreptate... si sasa... io nu prea stau pe mess.. decat asa... d vrb cu pretenii. apr de prieteni. da si mie adresa ta de mess... pls asta dak vrei. am o rugaminte la tn
  20. Asta e principalul lucru care vreau sa il invat... io vreau sa invat mai multe dar.. greu la deal cu boii mici... vrb aia. Am incercat cu hekareala pe e-bay. Dar e plictisitor sa stai sa iei 500 de usere si porma sa stai sa le trimiti la toti mailuri. Ma rog... am mai incercat cu paginile web. la fel.. nimik... doamne si cate si mai cate nam incercat... io dak nu am o ocupatie pe net mi se pare ca stau degeaba... nushu... dar e plictisitor sa stai si sa vrb toata ziua.. cine e de acord sa zica DA cine nu sa zica NU. hai sa vedem ce ne iese
  21. as vrea sa invat sa sparg conturi.. si in + de asta... as mai vrea si io un program... poti sa imi dai si mie un add... vrb mai multe pe mess. pls
  22. hai ca alea video mai sunt cum sunt... dar astea lungi sa le citesti... mai bn citesti o poezie era o gluma nu ca nu ar fi bn sa citesti literatura, dar era o gluma
  23. skaskll tiam luat id.. da vad ca nu mai dat add.... si in + io dak tias da un tutorial lung... de 5-6-7-8-9 pagini... lai citi? SINCER
  24. mai... una e sa iti explice cineva in fiecare zi... (sa zicem, nici chiar in fiecare zi, dar macar o data p saptamana) si alta e sa citesti ceva akol, sau sa downloadezi ceva facut de altu. Doar stii vorba aia... Ce face omul cu mana lui e sfant . parerea mea
×
×
  • Create New...