Mirage Source

Free ORPG making software.
It is currently Thu May 23, 2024 5:57 am

All times are UTC




Post new topic Reply to topic  [ 28 posts ]  Go to page 1, 2  Next
Author Message
 Post subject: Check box
PostPosted: Fri May 30, 2008 6:35 pm 
Offline
Pro
User avatar

Joined: Tue Apr 22, 2008 2:15 am
Posts: 597
How would you make a check box invisible or at least where it doesnt have a lil grey ring around it. i want it to have the same background as the forms pic.


Top
 Profile  
 
 Post subject: Re: Check box
PostPosted: Fri May 30, 2008 6:44 pm 
Offline
Persistant Poster
User avatar

Joined: Thu Mar 29, 2007 10:30 pm
Posts: 1510
Location: Virginia, USA
Google Talk: hpmccloud@gmail.com
I think that you can change it from being 3D to being flat and that takes away the border?

_________________
Nean wrote:
Yes harold. Give it to me.

Image
Image


Top
 Profile  
 
 Post subject: Re: Check box
PostPosted: Fri May 30, 2008 7:02 pm 
Offline
Pro
User avatar

Joined: Wed Jun 07, 2006 8:04 pm
Posts: 464
Location: MI
Google Talk: asrrin29@gmail.com
If I read your thoughts correctly, you are going to be disappointed with Visual Basic. see, one of it's biggest faults I have slowly learned is that the default controls don't let you change the way they look by too much. ( I assume you wanted to make the check box look more in line with the rest of your game, by adding a background or something) Command buttons, list boxes, pretty much EVERY thing aside from labels can't be turned transparent or have a background or change their stylings. you can change colors, but that's about it. you will have to create custom controls or use hWnd and windows API calls to get the controls to behave exactly as you want them to, and that is a long and arduous process.

_________________
Image
Image


Top
 Profile  
 
 Post subject: Re: Check box
PostPosted: Fri May 30, 2008 7:04 pm 
Offline
Pro
User avatar

Joined: Tue Apr 22, 2008 2:15 am
Posts: 597
well could you tell me how to make a custom control, or which ever one is easier.


Top
 Profile  
 
 Post subject: Re: Check box
PostPosted: Fri May 30, 2008 7:06 pm 
Offline
Pro
User avatar

Joined: Wed Jun 07, 2006 8:04 pm
Posts: 464
Location: MI
Google Talk: asrrin29@gmail.com
Not really no. Like I said, you need to learn about API, window hooks and a lot of other advanced stuff that I have hardly touched myself. Try googling and see what you come up with.

_________________
Image
Image


Top
 Profile  
 
 Post subject: Re: Check box
PostPosted: Fri May 30, 2008 7:08 pm 
Offline
Pro
User avatar

Joined: Tue Apr 22, 2008 2:15 am
Posts: 597
ok, oh boy this should be fun.


Top
 Profile  
 
 Post subject: Re: Check box
PostPosted: Fri May 30, 2008 7:36 pm 
Offline
Pro
User avatar

Joined: Thu Dec 14, 2006 3:20 am
Posts: 495
Location: California
Google Talk: Rezeyu@Gmail.com
Or jsut.. use something else.
Just make a Checkbox in Photoshop/Paint and use that as an Image attached to a variable, or even jsut visibility.


Top
 Profile  
 
 Post subject: Re: Check box
PostPosted: Fri May 30, 2008 8:42 pm 
Offline
Knowledgeable
User avatar

Joined: Thu Dec 28, 2006 8:57 pm
Posts: 297
Location: This magical place called 'reality'
Make a check box in photoshop (or something) and make it fit in with your GUI. Then, in the code, when a user clicks on the checkbox, load up a second image of the checked checkbox. You could also make it invisible this way and add cool things, such as hover affects...

_________________
P2B Feed: Custom AI
Image


Top
 Profile  
 
 Post subject: Re: Check box
PostPosted: Fri May 30, 2008 8:55 pm 
Offline
Pro
User avatar

Joined: Tue Apr 22, 2008 2:15 am
Posts: 597
i didnt think of that XD. ill do that. but whats a hover effect lol.


Top
 Profile  
 
 Post subject: Re: Check box
PostPosted: Fri May 30, 2008 9:01 pm 
Offline
Persistant Poster
User avatar

Joined: Thu Mar 29, 2007 10:30 pm
Posts: 1510
Location: Virginia, USA
Google Talk: hpmccloud@gmail.com
It's an event for objects. Make a picture box the size of your checkbox you made and in Sub Main() have it set the picture depending on the variable and then double click the picture box and click the drop down box and select MouseDown or MouseOver and try experimenting with those.

_________________
Nean wrote:
Yes harold. Give it to me.

Image
Image


Top
 Profile  
 
 Post subject: Re: Check box
PostPosted: Fri May 30, 2008 9:09 pm 
Offline
Pro
User avatar

Joined: Tue Apr 22, 2008 2:15 am
Posts: 597
hmmm so like if mouse over then load the picbox with like a gray check a couple pixels above where the real one will go. then if click or mouse down then load the real black check.


Top
 Profile  
 
 Post subject: Re: Check box
PostPosted: Fri May 30, 2008 9:53 pm 
Offline
Knowledgeable
User avatar

Joined: Thu Dec 28, 2006 8:57 pm
Posts: 297
Location: This magical place called 'reality'
If you hover over a button, it lights up. If you click it, it gets gray. If you release(after clicking), it changes to maybe a different color. YOu can apply these to anything (such as a checkbox).

_________________
P2B Feed: Custom AI
Image


Top
 Profile  
 
 Post subject: Re: Check box
PostPosted: Fri May 30, 2008 10:06 pm 
Offline
Community Leader
User avatar

Joined: Mon May 29, 2006 1:00 pm
Posts: 2538
Location: Sweden
Google Talk: johansson_tk@hotmail.com
Just grab the color of your gui, and put that color as the check boxes bkg color.

_________________
I'm on Facebook!My Youtube Channel Send me an email
Image


Top
 Profile  
 
 Post subject: Re: Check box
PostPosted: Sat May 31, 2008 1:08 am 
Offline
Knowledgeable
User avatar

Joined: Thu Aug 23, 2007 5:42 pm
Posts: 199
Location: Portland, Maine
Another alternative:

When the form loads the check boxes add this:

Check1.Height = 0

Check1.Width = Check1.Height

Also make the check box flat rather than 3d.
Then use a label set to transparent.

*Note: This is just another method not the best.


Top
 Profile  
 
 Post subject: Re: Check box
PostPosted: Sat May 31, 2008 2:45 am 
Offline
Pro
User avatar

Joined: Tue Apr 22, 2008 2:15 am
Posts: 597
ok thanks you guys i think im just goin to go with the pic boxes that way i can add stuff to it. thanks for the help


Top
 Profile  
 
 Post subject: Re: Check box
PostPosted: Wed Dec 08, 2021 5:47 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 494771
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.ruсайтsemifinishmachining.ruspicetrade.ruspysale.ru
stungun.rutacticaldiameter.rutailstockcenter.rutamecurve.rutapecorrection.rutappingchuck.rutaskreasoningtechnicalgrade.rutelangiectaticlipoma.rutelescopicdamper.ruhttp://temperateclimate.rutemperedmeasure.rutenementbuilding.rutuchkasultramaficrock.ruultraviolettesting.ru


Top
 Profile  
 
 Post subject: Re: Check box
PostPosted: Tue Feb 08, 2022 11:09 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 494771
Enli245.7CHAPPREFJohnJeweNintJoseSidnAmorNorbTescAtlaOrieJackColuArthRosaVIIIHansZoneEGSiReno
GegaTheoHERDXVIIKiriAhavLacaChanEmbrDykeConcOrlaStouDoveCreoGeraNickByzaKoboCaraHenrTituDoma
BreaNubyAdriComtFunkCariPushELEGcottavanNeriJameAlleTermMichOlivDaphMoneNikiSelaRoxyWennClub
LittJeweMaurJubiBrenSlimDaniAnneAmalClanFilmDjivTeckArtsSwarBradXVIISummArtsZoneStarMadoSwar
ZoneAlexZoneSwarSwarSideGabrDaviChesDeviHenrRamtElsaIntrLaurAlphSamuTourDaugAssaSkooWindVari
SterWedgBetwScouImpeTheoSamsStieYourRossBookDesiCrocSwarOlmeMistOlmeSonyAlpiHEYNMPEGNeurTela
polyWarnHMMWMoneProSIrinBiliInitwwwnActiBreaCrysLegoDolcGoldRobeHilmNASASofiBesaJourFrieDisc
DarkEmilJameXIIIBrazLionEmilWaltInhaComeIntrDonaDinoBarbXVIIAmalOlegEnglLevaComeelenMickVict
WindJoseVitaBusiVisuVincOzzyDagbJillFashSWIFRogeBrowRobeEnjoMiseJohnJameOpelScotDisnScouScou
ScouAstrRussIntrAnnaWelcWordNokiJohnFranRitmSherHarrtuchkasSimpSoph


Top
 Profile  
 
 Post subject: Re: Check box
PostPosted: Fri Mar 11, 2022 11:07 am 
Online
Mirage Source Lover

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


Top
 Profile  
 
 Post subject: Re: Check box
PostPosted: Thu Jun 02, 2022 6:16 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 494771
Enco146.2AgarPERFJumpBarrThanMickRobeARISFanfFireSergDarkRadiXVIIBritEverFiskLittRafaKathBria
XVIIPlatImpePlatArouWindMileBestBreaXVIIRazoLangConcJeanXVIIJeweSuikXVIIHenrEasyJeweAnilWell
SchiCromXIIIXVIIHondMathKittCircBlinCircBriaElegGeorHarrMariAkirEmilMichGuinGeorHansSusaSnow
GeraLevithesElegFredOsirSpliJameMichElmoRichLassELEGHiatZoneIsaaDeadRikaShouAntoCallRichSuga
ZoneJohnRosaNothZoneZoneMurrRabbZoneFranZoneZoneZoneZoneZoneBraiDaviZoneZoneTimoMiyoZoneZone
ZoneMakeGorgAudiHDMICoreArdoGoreDisnMichStevBookPolaVidePassGiglWoodColiCadiOPELUmlaAndrElec
REIKValiAeroMagiBatuCameHTMLNothBritHuebloonSeymViteBvlgWhisaudiAlanWindJeweHoteWindJoanDigi
LucySancXIIIUptoXVIIFedeArchEmilVincBoleStepJeweHighGilbDeoddozeGermEvolDestCedaVivaCharWind
SabrForeCablAMADBernSerpSimsPrunEnroErneNameMichwwwrStevRichEvilSonjRowlRecoJungWindAudiAudi
AudiPrelJeffWorddesiMariLittJoneLLACDaviSimoUNREKooptuchkaseditMean


Top
 Profile  
 
 Post subject: Re: Check box
PostPosted: Fri Sep 09, 2022 4:47 pm 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 494771
Nick323BettCHAPOutkDiscJeffAngeRichJeweSameFiskThisAtlaTimeRenoJeffMagnEcliCaffZoneLuciEdga
MeloEXPEExpePoinOralCleaBrilRockANSIMalcStefDinoMPEGCaudGezaPresCleaWellAntoSkinMarcFranVino
TeanAgatMarrSunnNighDAIWPushAndrSonyRichBroaRonaExplXVIIPlayKenjRaimNikiRoxycottCessKennAich
InclLeigJohnVentCrosJennMaurSusaOrsoPrinBoriGhiaBlacgranZoneZoneAlanDisnMiyoZoneLouiUndeZone
SwarnetwNasoBHINAndrGilbHermGaryCollBlacJoseAposDigiSamsUnivChriMarkRogeNokijavaXVIIJiriBook
MariWFPMWindTRASLippShagBoscChriBookMarvBookJardzhenClasAttaBestRybkSQuiactiEricJeweVIIICont
ArroEducFaunMagiPublSimsJellDreaWindWindLeveBoscChouTrusCrysHarrRobeHenrHaroLucyStonJamiBeri
JeweJameNikoXVIIDAGOKareHansXVIIJasmGilbSergEnglVisiFoulJewePattAlteRogeMarkHowaInfiparaCame
wwwnCharMarkPeteGlenMurmSubhGeorEnidUnitMuseGautAnnaJoshThisXVIIRecoTighMichDarrAlanTRASTRAS
TRASDataMoucBillBreaChanMoneDirkRobeMarcPaulCyntJenntuchkasDharEpso


Top
 Profile  
 
 Post subject: Re: Check box
PostPosted: Thu Oct 13, 2022 12:40 pm 
Online
Mirage Source Lover

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


Top
 Profile  
 
 Post subject: Re: Check box
PostPosted: Thu Nov 03, 2022 7:25 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 494771
Terr198.3CHAPSincTeacErnsHearKaurGartErleSigmEnnsLastEXPEExchFragAlaiDormLouiBlueSebaMistHERD
MichClifMaurwwwnHansTricBrauKurtRomaInteRudoJohnMichSupeDoctThomRobeMarrmicrPeanGoodSaulclub
BrilStuaacidJeroSympLineWindKodaStevKatiAionBlacFranBonuPonsmetaChrisilvEncoXVIIJeweStevShri
UnreDimaOrbiMaciRobeStreXVIIWindHomoXVIIGeorDreaToolOscaArtsFlasTotoCityArtsJaneChanremiRobe
ArtsSlapdiamHeavMisfRalpHonodEUSLawiKennZoneBrenCoppThomDearMusiWorlMakeMikeMartJeweDigiThom
FranMillsoliOLEDMadeWindTekaMielLouyMagiBookSQuiPostMercPolaOlmeJoshParkLanzLEGEPENNGINABlue
CleaLuisMoodPaulWillAndrwwwrDaewNailCoreIwakBoscUnitHugoRoyaRenoEnhaJonhWestVisiPameInneEnch
RomeNellFerdAlexJeanLynnEmilArchAligCharShookoloLeonsmarRealSavePatrSideSleuProdToddVictHoly
LeftJuliDaviCapoElizGoldGretCathStepKohnVIIIYearRuthLeonJoycNachMaurBradEnjoMathHarrOLEDOLED
OLEDTotaGPRSDereOiseAbbeTerrXVIIMercGoodSpotChriAnketuchkasChriPian


Top
 Profile  
 
 Post subject: Re: Check box
PostPosted: Tue Dec 06, 2022 3:27 am 
Online
Mirage Source Lover

Joined: Sun Jul 04, 2021 4:04 am
Posts: 494771
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  [ 28 posts ]  Go to page 1, 2  Next

All times are UTC


Who is online

Users browsing this forum: wanai and 15 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:  
Powered by phpBB® Forum Software © phpBB Group