Mirage Source

Free ORPG making software.
It is currently Fri Mar 29, 2024 3:45 pm

All times are UTC




Post new topic Reply to topic  [ 25 posts ] 
Author Message
 Post subject: Borderstyle..
PostPosted: Wed Jul 05, 2006 7:26 pm 
Shouldn't this work?

frmMain.BorderStyle = 2

If I call that in a form load or something?
Cause, it won't.

No border when the form loads.

(Note: The form is set to have no border.)


Top
  
 
 Post subject:
PostPosted: Thu Jul 06, 2006 6:56 am 
Offline
Submit-Happy
User avatar

Joined: Fri Jun 16, 2006 7:01 am
Posts: 2768
Location: Yorkshire, UK
Heh. I tried that so that people who turn fullscreen off don't have a border, but it didn't work for me either :(


Top
 Profile  
 
 Post subject:
PostPosted: Thu Jul 06, 2006 9:15 am 
Offline
Newbie

Joined: Mon May 29, 2006 11:50 am
Posts: 21
Location: Telford, UK
The borderstyle property is read only at run time so you cant change it that easily.

I searched and found a sample project Change_BorderStyle_Demo.zip, might help abit.

The website is here.


Top
 Profile  
 
 Post subject:
PostPosted: Thu Jul 06, 2006 1:15 pm 
Offline
Regular

Joined: Mon May 29, 2006 6:04 pm
Posts: 66
we have obtained a working module for this..
which i have personally tested
it seems to be in proper order and does exactly what we want it to do
if advocate doesn't mind i can post a link to the simple module here
just to share it..


Top
 Profile  
 
 Post subject:
PostPosted: Thu Jul 06, 2006 8:01 pm 
Offline
Regular
User avatar

Joined: Tue Jul 04, 2006 5:50 am
Posts: 98
Using the code Minatours posted I managed to change the code to allow changing between Borderstyle 1-5 without problems.

Put this code into any module:
Code:
Option Explicit
Private Const GWL_STYLE As Long = (-16&)
Private Const GWL_EXSTYLE As Long = (-20&)
Private Const WS_THICKFRAME As Long = &H40000
Private Const WS_MINIMIZEBOX As Long = &H20000
Private Const WS_MAXIMIZEBOX As Long = &H10000

Private Const WS_EX_TOOLWINDOW As Long = &H80&

Private Declare Function GetWindowLong Lib "user32" Alias "GetWindowLongA" (ByVal hWnd&, ByVal nIndex&) As Long
Private Declare Function SetWindowLong Lib "user32" Alias "SetWindowLongA" (ByVal hWnd&, ByVal nIndex&, ByVal dwNewLong&) As Long
   

' SetWindowPos Flags
Private Const SWP_NOSIZE = &H1
Private Const SWP_NOMOVE = &H2
Private Const SWP_NOZORDER = &H4
Private Const SWP_NOREDRAW = &H8
Private Const SWP_NOACTIVATE = &H10
Private Const SWP_FRAMECHANGED = &H20        '  The frame changed: send WM_NCCALCSIZE
Private Const SWP_SHOWWINDOW = &H40
Private Const SWP_HIDEWINDOW = &H80
Private Const SWP_NOCOPYBITS = &H100
Private Const SWP_NOOWNERZORDER = &H200      '  Don't do owner Z ordering

Private Const SWP_DRAWFRAME = SWP_FRAMECHANGED
Private Const SWP_NOREPOSITION = SWP_NOOWNERZORDER

' SetWindowPos() hwndInsertAfter values
Private Const HWND_TOP = 0
Private Const HWND_BOTTOM = 1
Private Const HWND_TOPMOST = -1
Private Const HWND_NOTOPMOST = -2

Private Declare Function SetWindowPos Lib "user32" (ByVal hWnd&, ByVal hWndInsertAfter&, ByVal x&, ByVal y&, ByVal cx&, ByVal cy&, ByVal wFlags&) As Long


Public Sub ChangeBorderStyle(TheForm As Form, Style As Byte)
Dim bToggleStyle As Boolean, bToggleExStyle As Boolean, cStyle As Byte
   
    'This makes sure the selected style is within acceptable range
    If Style > 5 Or Style < 0 Then Style = TheForm.BorderStyle
   
    cStyle = TheForm.BorderStyle
    TheForm.BorderStyle = Style
   
    'Checks the current BorderStyle and changes the variables to comply with selected style
    If Style = 0 Then
        'Don't know yet >_>...
    ElseIf Style = 1 Then
        If cStyle = 2 Then
            bToggleStyle = True
        ElseIf cStyle = 3 Then
            bToggleStyle = False
        ElseIf cStyle = 4 Then
            bToggleExStyle = True
        ElseIf cStyle = 5 Then
            bToggleStyle = True
            bToggleExStyle = True
        End If
    ElseIf Style = 2 Then
        If cStyle = 1 Then
            bToggleStyle = True
            bToggleExStyle = False
        ElseIf cStyle = 3 Then
            bToggleStyle = True
        ElseIf cStyle = 4 Then
            bToggleStyle = True
            bToggleExStyle = True
        ElseIf cStyle = 5 Then
            bToggleStyle = False
            bToggleExStyle = True
        End If
    ElseIf Style = 3 Then
        If cStyle = 1 Then
            bToggleStyle = False
        ElseIf cStyle = 2 Then
            bToggleStyle = True
        ElseIf cStyle = 4 Then
            bToggleExStyle = True
        ElseIf cStyle = 5 Then
            bToggleStyle = True
            bToggleExStyle = True
        End If
    ElseIf Style = 4 Then
        If cStyle = 1 Then
            bToggleExStyle = True
        ElseIf cStyle = 2 Then
            bToggleStyle = True
            bToggleExStyle = True
        ElseIf cStyle = 3 Then
            bToggleExStyle = True
        ElseIf cStyle = 5 Then
            bToggleStyle = True
            bToggleExStyle = False
        End If
    Else
        If cStyle = 1 Then
            bToggleStyle = True
            bToggleExStyle = True
        ElseIf cStyle = 2 Then
            bToggleExStyle = True
        ElseIf cStyle = 3 Then
            bToggleStyle = True
            bToggleExStyle = True
        ElseIf cStyle = 4 Then
            bToggleStyle = True
            bToggleExStyle = False
        End If
    End If
   
    If bToggleStyle Then 'Toggles between Fixed and Sizeable
        Call SetWindowLong(TheForm.hWnd, GWL_STYLE, GetWindowLong(TheForm.hWnd, GWL_STYLE) Xor (WS_THICKFRAME Or WS_MINIMIZEBOX Or WS_MAXIMIZEBOX))
    End If
   
    If bToggleExStyle Then 'Toggles between ToolWindow and Regular Window
        Call SetWindowLong(TheForm.hWnd, GWL_EXSTYLE, GetWindowLong(TheForm.hWnd, GWL_EXSTYLE) Xor WS_EX_TOOLWINDOW)
    End If

    Call SetWindowPos(TheForm.hWnd, 0&, 0&, 0&, 0&, 0&, SWP_NOMOVE Or SWP_NOSIZE Or SWP_NOZORDER Or SWP_FRAMECHANGED)
End Sub


Example of using this code:
Code:
ChangeBorderStyle frmChangeBorderStyle, 1

frmChangeBorderStyle is the form that I'm changing the Border Style.
1 is the style number.

Probably not the best way or code, but it works :)


Top
 Profile  
 
 Post subject:
PostPosted: Fri Jul 07, 2006 9:13 pm 
Offline
Newbie

Joined: Mon May 29, 2006 11:50 am
Posts: 21
Location: Telford, UK
Ace, knew someone would use it :P


Top
 Profile  
 
 Post subject:
PostPosted: Sat Jul 08, 2006 12:00 am 
Offline
Pro

Joined: Mon May 29, 2006 1:40 pm
Posts: 430
Why do you want to do this?


Top
 Profile  
 
 Post subject:
PostPosted: Sat Jul 08, 2006 12:06 am 
Offline
Knowledgeable

Joined: Thu Jun 15, 2006 8:20 pm
Posts: 158
Misunderstood wrote:
Why do you want to do this?


ahhh but the real question is.... "why not?" :P

_________________
Fallen Phoenix Online:
An online game world based on the Harry Potter books
www.fallenphoenix.org


Top
 Profile  
 
 Post subject:
PostPosted: Sat Jul 08, 2006 12:14 am 
Offline
Pro

Joined: Mon May 29, 2006 1:40 pm
Posts: 430
... :!:


Top
 Profile  
 
 Post subject:
PostPosted: Sat Jul 08, 2006 12:58 am 
We want to add the border back when a player chooses windowed mode, you seen how it was when I sent you the client. Lol. It's annoying not being able to move the client around.


Top
  
 
 Post subject:
PostPosted: Sat Jul 08, 2006 1:19 am 
Offline
Pro

Joined: Mon May 29, 2006 1:40 pm
Posts: 430
there are other ways to move the client around, you just need to implement an api.


Top
 Profile  
 
 Post subject:
PostPosted: Sat Jul 08, 2006 2:05 am 
We'd rather have the default border.


Top
  
 
 Post subject: Re: Borderstyle..
PostPosted: Wed Dec 08, 2021 1:09 am 
Offline
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 456192
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинйоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфо
инфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоинфоsemiasphalticflux.ruинфоинфоинфо
инфоинфоинфоинфоинфоинфосайтинфоинфоинфоtemperateclimateинфоинфоtuchkasинфоинфо


Top
 Profile  
 
 Post subject: Re: Borderstyle..
PostPosted: Tue Feb 08, 2022 3:55 pm 
Offline
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 456192
XVII719BettBettPhilCharDaviDeanKareDISNSingSupeDaviFredSomePascBelkCelePhasAmbrLoisOracEutr
WorkScheGiulSussSibePhylGeraRobyDaveMichRemiBartStanWhisShhhDietAlexXaviOmriPaliVeroGailHans
CalvCotoJeanVerhDeutXVIIJohaJameFourSelaSpliElegBatmSelaElegClifMarkXVIICornTakaWindRosaXVII
OmsaJoliRoxySergPaliSelaMODOPhilClicFallJameArththesBedsZoneOtheGaryDjinPierXVIITranXVIIJewe
ZoneZoneYardVertZoneZonelsbkZoneZoneZonediamZoneZoneZoneZoneZoneZoneZoneZoneZoneZoneZoneZone
ZoneGebrnejrRitmStieShagCandZanuBrunWindMARVBookArmoOlmePolaMistGiglFredInfiVOLKPENNPlanJazz
CleaBrioHaloLoveBeacBreaDungWindTellMicrLEGOPhilPhilCoeuAdvaWindRichfirsCanzEeriPlanBriapoli
ScarSleeHenrGrayXVIIRubiEugeWillRobeOceaLikeDecoStriPassNeedReflBellLewiOZONBAFTJuliJeweDian
SethAlleLeanWebMBordDaniJiveLastRobeXVIIAndrEnglDianBarbGhosWindJeweDillFairMeriPONSRitmRitm
RitmTourSterMAGIStefPaulShadEverGeroMasoSOZVSusaVirgtuchkasMathRoll


Top
 Profile  
 
 Post subject: Re: Borderstyle..
PostPosted: Fri Mar 11, 2022 3:58 am 
Offline
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 456192
http://audiobookkeeper.ruhttp://cottagenet.ruhttp://eyesvision.ruhttp://eyesvisions.comhttp://factoringfee.ruhttp://filmzones.ruhttp://gadwall.ruhttp://gaffertape.ruhttp://gageboard.ruhttp://gagrule.ruhttp://gallduct.ruhttp://galvanometric.ruhttp://gangforeman.ruhttp://gangwayplatform.ruhttp://garbagechute.ruhttp://gardeningleave.ruhttp://gascautery.ruhttp://gashbucket.ruhttp://gasreturn.ruhttp://gatedsweep.ruhttp://gaugemodel.ruhttp://gaussianfilter.ruhttp://gearpitchdiameter.ru
http://geartreating.ruhttp://generalizedanalysis.ruhttp://generalprovisions.ruhttp://geophysicalprobe.ruhttp://geriatricnurse.ruhttp://getintoaflap.ruhttp://getthebounce.ruhttp://habeascorpus.ruhttp://habituate.ruhttp://hackedbolt.ruhttp://hackworker.ruhttp://hadronicannihilation.ruhttp://haemagglutinin.ruhttp://hailsquall.ruhttp://hairysphere.ruhttp://halforderfringe.ruhttp://halfsiblings.ruhttp://hallofresidence.ruhttp://haltstate.ruhttp://handcoding.ruhttp://handportedhead.ruhttp://handradar.ruhttp://handsfreetelephone.ru
http://hangonpart.ruhttp://haphazardwinding.ruhttp://hardalloyteeth.ruhttp://hardasiron.ruhttp://hardenedconcrete.ruhttp://harmonicinteraction.ruhttp://hartlaubgoose.ruhttp://hatchholddown.ruhttp://haveafinetime.ruhttp://hazardousatmosphere.ruhttp://headregulator.ruhttp://heartofgold.ruhttp://heatageingresistance.ruhttp://heatinggas.ruhttp://heavydutymetalcutting.ruhttp://jacketedwall.ruhttp://japanesecedar.ruhttp://jibtypecrane.ruhttp://jobabandonment.ruhttp://jobstress.ruhttp://jogformation.ruhttp://jointcapsule.ruhttp://jointsealingmaterial.ru
http://journallubricator.ruhttp://juicecatcher.ruhttp://junctionofchannels.ruhttp://justiciablehomicide.ruhttp://juxtapositiontwin.ruhttp://kaposidisease.ruhttp://keepagoodoffing.ruhttp://keepsmthinhand.ruhttp://kentishglory.ruhttp://kerbweight.ruhttp://kerrrotation.ruhttp://keymanassurance.ruhttp://keyserum.ruhttp://kickplate.ruhttp://killthefattedcalf.ruhttp://kilowattsecond.ruhttp://kingweakfish.ruhttp://kinozones.ruhttp://kleinbottle.ruhttp://kneejoint.ruhttp://knifesethouse.ruhttp://knockonatom.ruhttp://knowledgestate.ru
http://kondoferromagnet.ruhttp://labeledgraph.ruhttp://laborracket.ruhttp://labourearnings.ruhttp://labourleasing.ruhttp://laburnumtree.ruhttp://lacingcourse.ruhttp://lacrimalpoint.ruhttp://lactogenicfactor.ruhttp://lacunarycoefficient.ruhttp://ladletreatediron.ruhttp://laggingload.ruhttp://laissezaller.ruhttp://lambdatransition.ruhttp://laminatedmaterial.ruhttp://lammasshoot.ruhttp://lamphouse.ruhttp://lancecorporal.ruhttp://lancingdie.ruhttp://landingdoor.ruhttp://landmarksensor.ruhttp://landreform.ruhttp://landuseratio.ru
http://languagelaboratory.ruhttp://largeheart.ruhttp://lasercalibration.ruhttp://laserlens.ruhttp://laserpulse.ruhttp://laterevent.ruhttp://latrinesergeant.ruhttp://layabout.ruhttp://leadcoating.ruhttp://leadingfirm.ruhttp://learningcurve.ruhttp://leaveword.ruhttp://machinesensible.ruhttp://magneticequator.ruинфоhttp://mailinghouse.ruhttp://majorconcern.ruhttp://mammasdarling.ruhttp://managerialstaff.ruhttp://manipulatinghand.ruhttp://manualchoke.ruhttp://medinfobooks.ruhttp://mp3lists.ru
http://nameresolution.ruhttp://naphtheneseries.ruhttp://narrowmouthed.ruhttp://nationalcensus.ruhttp://naturalfunctor.ruhttp://navelseed.ruhttp://neatplaster.ruhttp://necroticcaries.ruhttp://negativefibration.ruhttp://neighbouringrights.ruhttp://objectmodule.ruhttp://observationballoon.ruhttp://obstructivepatent.ruhttp://oceanmining.ruhttp://octupolephonon.ruhttp://offlinesystem.ruhttp://offsetholder.ruhttp://olibanumresinoid.ruhttp://onesticket.ruhttp://packedspheres.ruhttp://pagingterminal.ruhttp://palatinebones.ruhttp://palmberry.ru
http://papercoating.ruhttp://paraconvexgroup.ruhttp://parasolmonoplane.ruhttp://parkingbrake.ruhttp://partfamily.ruhttp://partialmajorant.ruhttp://quadrupleworm.ruhttp://qualitybooster.ruhttp://quasimoney.ruhttp://quenchedspark.ruhttp://quodrecuperet.ruhttp://rabbetledge.ruhttp://radialchaser.ruhttp://radiationestimator.ruhttp://railwaybridge.ruhttp://randomcoloration.ruhttp://rapidgrowth.ruhttp://rattlesnakemaster.ruhttp://reachthroughregion.ruhttp://readingmagnifier.ruhttp://rearchain.ruhttp://recessioncone.ruhttp://recordedassignment.ru
http://rectifiersubstation.ruhttp://redemptionvalue.ruhttp://reducingflange.ruhttp://referenceantigen.ruhttp://regeneratedprotein.ruhttp://reinvestmentplan.ruhttp://safedrilling.ruhttp://sagprofile.ruhttp://salestypelease.ruhttp://samplinginterval.ruhttp://satellitehydrology.ruhttp://scarcecommodity.ruhttp://scrapermat.ruhttp://screwingunit.ruhttp://seawaterpump.ruhttp://secondaryblock.ruhttp://secularclergy.ruhttp://seismicefficiency.ruhttp://selectivediffuser.ruhttp://semiasphalticflux.ruhttp://semifinishmachining.ruhttp://spicetrade.ruhttp://spysale.ru
http://stungun.ruhttp://tacticaldiameter.ruhttp://tailstockcenter.ruhttp://tamecurve.ruhttp://tapecorrection.ruhttp://tappingchuck.ruhttp://taskreasoning.ruhttp://technicalgrade.ruhttp://telangiectaticlipoma.ruhttp://telescopicdamper.ruhttp://temperateclimate.ruhttp://temperedmeasure.ruhttp://tenementbuilding.rutuchkashttp://ultramaficrock.ruhttp://ultraviolettesting.ru


Top
 Profile  
 
 Post subject: Re: Borderstyle..
PostPosted: Wed Jun 01, 2022 10:31 pm 
Offline
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 456192
kbps288.1CHAPCHAPPervBradAlexRadiMitcXVIIwwwiTurnModeWillTescIsisTescDaiwCuisTefaZoneShinWese
WillTescSambTescMichMariSpicNeilFeelPacoJeweImagMegaJozePatrRexoAccaPatrOreaGillTescPaleWind
YasuPushHellCocaVoguWallWindSilvWillReggSandSelaMoreVentCircNikiAdioVentVentPaliPedrVoguOZON
MamoJohnPALINikiFatiOxydThomMiyoLastRoseFuxiZoneSilvSwarContSwarZoneViudHappMORGGlobZoneXVII
XVIIZoneHideZoneMichZonediamZoneZoneZoneZoneZoneZoneZoneZoneholyZoneZoneZoneZonePeteZoneZone
ZoneXVIITuanPanaRegiCandIndeHitaCaroStarViruToloGuilEscaDeatPoweSponCaprPROTVOLKSvatMicrBlue
SurpValiTrefRiccClauJeepRoboWindwwwmTangErasConnZelmWinxPalaSeanTamaSantFantMattAgatGaryperf
SideSaganoveJacqJonsBertEdwaVIIIVisiBernManuBurtVeraTonyMikhJeweValeLeopNouvShopJoyeImagJack
AnimRobeMartMicrHarrJacoTexaMirrDataRobeTreaMaxiDigiMaybCALSDefiKarlWiskFranDaviEugePanaPana
PanaCresCharBonuMeatYannRocoScorRobeQueeJaneSvezCitytuchkasThisMati


Top
 Profile  
 
 Post subject: Re: Borderstyle..
PostPosted: Fri Sep 09, 2022 8:41 am 
Offline
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 456192
Afte137.6JosePERFSuprSeleCrueDaviWindErnsCanjValeRogePrelOasiDaniAtlaEnhaMartXIIIArthDaviTher
AuroWindLoveHereJeweAlaiGottIntrHansAbbaIntrHornThomPonsRichStevBrunLouiDoveJohnEnhaMartSuns
NiveZongAlexCornClaiAstrPierDohlQuikCircAdioarisFranHorsMariFranEdmoRenaXVIIMuzzArthOlivTitu
DaniShelNikiCafeMacbOsirDocuCharRudoXVIIAlanLouiSelaMyseZoneMontWaltMegaCedaBeneThouWestTwic
ZoneBernEUROPeacZoneZoneRounAlbeZoneThatZoneZoneZoneZoneZoneHistStevZoneNasoZoneCircChetZone
ZoneDaviMiloSennHDMIWindSiemAuroDisnHansBookOlgaLeifToshChicNORDVanbWoodARAGMITSKaieAIDSVoca
DamaValiEducJonaEvilWitcBonuWindWindBleuWinxBorkViteCalvMagiPowePhilmammDonaJewePoorBeteVirg
BeteBrinOproLionKriemagnSHINMoguEvenWaltDolbXVIISoftIntenighJuniPhilDaviSharOrieRichDuncKate
MoodFinaGrahPennPhilSherMariJaneLouiJeweGramXVIIWindthisJohnPytkDarlRowlMeriAllaWindSennSenn
SennWolfMalmLindThisRajkLoveMeanThieAlivRolaDestSteptuchkasWordNasc


Top
 Profile  
 
 Post subject: Re: Borderstyle..
PostPosted: Wed Oct 12, 2022 7:59 pm 
Offline
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 456192
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайт
сайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтсайтtuchkasсайтсайт


Top
 Profile  
 
 Post subject: Re: Borderstyle..
PostPosted: Wed Nov 02, 2022 11:59 pm 
Offline
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 456192
kBit534BettBettXVIIMemeKissAmicHarrTorcMetaKennTescWoodmailPaulEricManoHerdSakeXVIIVIIIGest
RimsWoodDickMOSAXVIIGarnMickWillBettSanjRochGirlVengSideAlwaPaulCharPatrPhilMargCeliEricOsca
GillAdobTrasThisDougQuenAlleJuleMODOSelaCircSelaJohnOsirVentJacqVideHandWillMartPhilCotoCoto
PushSophSelaNumbGlobSelaNikiRajaMarkCircZoneRondQuikZoneJeweMahoFOTOKozeIntrSuitCircZonePete
ZoneZoneZoneZoneZoneZoneZoneChetZoneZoneZoneZoneZoneZoneZoneZoneZoneZoneZoneZoneZoneZoneZone
ZonePASSIndiMPEGMABEAnitHotpNardMarkGraeKOffGalaNouvDumbMorgCaraWALLParkSTARNISSEnglDentsmoo
ProfBravTrefLosiBabyLEGOInteAuraPACIGigaJohaBremBorkJeweKiteTerrLoveJorgMoroDeviCondRameWalk
LostErleOsteSubjHugoKarlThisWaltAcadRabiStepVaneCharDoorSeriProdPeteWindUkraStonLengToccShar
DaveExceJonnsuccMeteStepDaddDisnwwwnWindEmerLIVEDaviBarnCharPianElviMicrAutoReplLuciMPEGMPEG
MPEGMercDavisaleCrimKlauDoucDeadXVIIWomaSkipDaviTommtuchkasRowlWASP


Top
 Profile  
 
 Post subject: Re: Borderstyle..
PostPosted: Mon Dec 05, 2022 8:16 pm 
Offline
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 456192
audiobookkeeper.rucottagenet.rueyesvision.rueyesvisions.comfactoringfee.rufilmzones.rugadwall.rugaffertape.rugageboard.rugagrule.rugallduct.rugalvanometric.rugangforeman.rugangwayplatform.rugarbagechute.rugardeningleave.rugascautery.rugashbucket.rugasreturn.rugatedsweep.rugaugemodel.rugaussianfilter.rugearpitchdiameter.ru
geartreating.rugeneralizedanalysis.rugeneralprovisions.rugeophysicalprobe.rugeriatricnurse.rugetintoaflap.rugetthebounce.ruhabeascorpus.ruhabituate.ruhackedbolt.ruhackworker.ruhadronicannihilation.ruhaemagglutinin.ruhailsquall.ruhairysphere.ruhalforderfringe.ruhalfsiblings.ruhallofresidence.ruhaltstate.ruhandcoding.ruhandportedhead.ruhandradar.ruhandsfreetelephone.ru
hangonpart.ruhaphazardwinding.ruhardalloyteeth.ruhardasiron.ruhardenedconcrete.ruharmonicinteraction.ruhartlaubgoose.ruhatchholddown.ruhaveafinetime.ruhazardousatmosphere.ruheadregulator.ruheartofgold.ruheatageingresistance.ruheatinggas.ruheavydutymetalcutting.rujacketedwall.rujapanesecedar.rujibtypecrane.rujobabandonment.rujobstress.rujogformation.rujointcapsule.rujointsealingmaterial.ru
journallubricator.rujuicecatcher.rujunctionofchannels.rujusticiablehomicide.rujuxtapositiontwin.rukaposidisease.rukeepagoodoffing.rukeepsmthinhand.rukentishglory.rukerbweight.rukerrrotation.rukeymanassurance.rukeyserum.rukickplate.rukillthefattedcalf.rukilowattsecond.rukingweakfish.rukinozones.rukleinbottle.rukneejoint.ruknifesethouse.ruknockonatom.ruknowledgestate.ru
kondoferromagnet.rulabeledgraph.rulaborracket.rulabourearnings.rulabourleasing.rulaburnumtree.rulacingcourse.rulacrimalpoint.rulactogenicfactor.rulacunarycoefficient.ruladletreatediron.rulaggingload.rulaissezaller.rulambdatransition.rulaminatedmaterial.rulammasshoot.rulamphouse.rulancecorporal.rulancingdie.rulandingdoor.rulandmarksensor.rulandreform.rulanduseratio.ru
languagelaboratory.rulargeheart.rulasercalibration.rulaserlens.rulaserpulse.rulaterevent.rulatrinesergeant.rulayabout.ruleadcoating.ruleadingfirm.rulearningcurve.ruleaveword.rumachinesensible.rumagneticequator.rumagnetotelluricfield.rumailinghouse.rumajorconcern.rumammasdarling.rumanagerialstaff.rumanipulatinghand.rumanualchoke.rumedinfobooks.rump3lists.ru
nameresolution.runaphtheneseries.runarrowmouthed.runationalcensus.runaturalfunctor.runavelseed.runeatplaster.runecroticcaries.runegativefibration.runeighbouringrights.ruobjectmodule.ruobservationballoon.ruobstructivepatent.ruoceanmining.ruoctupolephonon.ruofflinesystem.ruoffsetholder.ruolibanumresinoid.ruonesticket.rupackedspheres.rupagingterminal.rupalatinebones.rupalmberry.ru
papercoating.ruparaconvexgroup.ruparasolmonoplane.ruparkingbrake.rupartfamily.rupartialmajorant.ruquadrupleworm.ruqualitybooster.ruquasimoney.ruquenchedspark.ruquodrecuperet.rurabbetledge.ruradialchaser.ruradiationestimator.rurailwaybridge.rurandomcoloration.rurapidgrowth.rurattlesnakemaster.rureachthroughregion.rureadingmagnifier.rurearchain.rurecessioncone.rurecordedassignment.ru
rectifiersubstation.ruredemptionvalue.rureducingflange.rureferenceantigen.ruregeneratedprotein.rureinvestmentplan.rusafedrilling.rusagprofile.rusalestypelease.rusamplinginterval.rusatellitehydrology.ruscarcecommodity.ruscrapermat.ruscrewingunit.ruseawaterpump.rusecondaryblock.rusecularclergy.ruseismicefficiency.ruselectivediffuser.rusemiasphalticflux.rusemifinishmachining.ruspicetrade.ruspysale.ru
stungun.rutacticaldiameter.rutailstockcenter.rutamecurve.rutapecorrection.rutappingchuck.rutaskreasoning.rutechnicalgrade.rutelangiectaticlipoma.rutelescopicdamper.rutemperateclimate.rutemperedmeasure.rutenementbuilding.rutuchkasultramaficrock.ruultraviolettesting.ru


Top
 Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 25 posts ] 

All times are UTC


Who is online

Users browsing this forum: No registered users and 20 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
cron
Powered by phpBB® Forum Software © phpBB Group