XProfan.Com aktuelle Forenbeiträge http://xprofan.com/index.php Dieser Channel gibt Hinweise über aktuelle Beiträge aus. de Thu, 01 Jan 1970 01:00:00 +0100 Copyright: (C) XProfan.Com, http://xprofan.com/impressum.htmlAnregungen und Vorschlägehttp://xprofan.com/thread.core?t=858&rd=rssNeuer Beitrag von iF (09.03.2010 18:00): Die Eingabe vom Geburtsdatumfeld in den Profilangaben [...]  wurde nicht gespeichert (Danke an Stefan für den Hinweis!), seit ich auf SSL für personenbezogene Daten umgestellt hatte. Der Fehler ist behoben, die Altersanzeige im Profil lässt sich nun wieder korrekt aktivieren.http://xprofan.com/thread.core?t=858&rd=rssTue, 09 Mar 2010 18:00:52 +0100PostingSerielle Schnittstelle zu langsamhttp://xprofan.com/thread.core?t=8127&rd=rssNeuer Beitrag von E.T. (09.03.2010 16:40): Würd ich eher auf den Adapter / zugehörigen Treiber tippen. Ich hatte auch mal so ein Teil, da wurde von der Gegenstelle am RS sogar immer abgebrochen, weil die Daten einfach zu langsam angekommen sind.Adapter incl. gerätespezifischer Treiber ausgetauscht, und schon hat's funktioniert. ...und der Adapter merkt auch nicht, wenn du das RS-Gerät abziehst ?? Also meiner "mault", wenn er die Daten nicht "weiterschicken" kann...http://xprofan.com/thread.core?t=8127&rd=rssTue, 09 Mar 2010 16:40:08 +0100PostingUpdates Anmerkungenhttp://xprofan.com/thread.core?t=6609&rd=rssNeuer Beitrag von iF (08.03.2010 07:56): Update auf Version V11.2.1.8a.56: [...]  - einige Fehlerbehebungen.Diese und andere neue Funktionen: date$, setbit, time, unixtime, word... Details unter [...]  .http://xprofan.com/thread.core?t=6609&rd=rssMon, 08 Mar 2010 07:56:33 +0100Posting04 06 2010 3 XProfaner-Treffen in der Lausitzhttp://xprofan.com/thread.core?t=7828&rd=rssNeuer Beitrag von Nico Madysa (07.03.2010 22:35): Laut XProfan-Karte [...]  ist noch ein Clemens Meier aus der Schweiz hier im Forum. http://xprofan.com/thread.core?t=7828&rd=rssSun, 07 Mar 2010 22:35:01 +0100PostingErledigt Assembler Byte in Float umwandelnhttp://xprofan.com/thread.core?t=8124&rd=rssNeuer Beitrag von Andreas Gaida (06.03.2010 17:55): Viellen Dank iF .Das hilf mir sehr.http://xprofan.com/thread.core?t=8124&rd=rssSat, 06 Mar 2010 17:55:13 +0100PostingBitmap Größe Ermitteln getBmpSizeByHeaderhttp://xprofan.com/thread.core?t=2396&rd=rssNeuer Beitrag von iF (06.03.2010 15:39): Include für weitere Dateiformate: [...] http://xprofan.com/thread.core?t=2396&rd=rssSat, 06 Mar 2010 15:39:11 +0100PostingEin Zeichen quot schlechter quot programmierunghttp://xprofan.com/thread.core?t=8123&rd=rssNeuer Beitrag von iF (06.03.2010 04:38): Die WProc ist halt einfach beschäftigt und arbeitet deshalb z.B. nicht wm_paint ab. Schlechte Programmierung, hängt von ab... wenn absehbar ist, dass ein Vorgang länger dauert, als man auf die Antwortfähigkeit der GUI verzichten möchte, sollte man schon einen neuen Thread starten, weshalb man in einigen Fällen wohl schon von ""schlechter" programmierung" reden könnte.Wenn Du Prozess mit CreateProcess [...]  erzeugst und in eigener Schleife wartest bis Prozessende (z.B. per ExitCode), gibt es diesen "Anzeigefehler" imho nicht.http://xprofan.com/thread.core?t=8123&rd=rssSat, 06 Mar 2010 04:38:16 +0100PostingBildgrößen aus Bilddatei Includehttp://xprofan.com/thread.core?t=8122&rd=rssNeuer Beitrag von iF (05.03.2010 20:00): Tolle Include von Dieter Zornow, um Bildausmasse von Bildern aus Dateien zu laden, ohne die Bilder vollständig einladen zu müssen.Zitat: ('Dieter Zornow, URL=www.rgh-soft.de/forum01/read.php?f=7&i=14767&t=14756, Zeitpunkt=05.03.2010')Quelltext: ()'2010 Autor Dieter Zornow 'Teile des Codes basieren auf dem Verfahren aus der Include von Thomas Hölzer, Andreas Miethe, Hans-Jürgen Trog 'Freeware DEF MakeWord(2) (%(1) | (%(2)*$100)) Proc picturetype parameters file$ declare mem# dim mem#,50 'Set("Filemode", 0) blockread(file$,mem#,0,50) 'Set("Filemode", 2) var typ$ = char$(mem#,0,50) dispose mem# if Left$(typ$,2) = "BM" ifnot mid$(typ$,3,2) = chr$(142)+chr$(3) return ".bmp" else return ".rle" endif elseif left$(typ$,2) = "II" return ".tif" endif typ$= upper$(typ$) If instr("JFIF",typ$) return ".jpg" elseif instr("PNG",typ$) return ".png" elseif instr("GIF",typ$) return ".gif" elseif instr("EMF",typ$) return ".emf" else return ".ico" endif endproc PROC IconDim Parameters file$ Declare Icons&,size#,return$ Dim size#,filesize(file$) var x% = 0 'Set("Filemode", 0) BlockRead(file$,Size#,0,filesize(file$)) 'Set("Filemode", 2) Icons& = @Word(Size#,4) if icons& = 1 return$ = str$(icons&)+"|"+str$(Byte(size#,6))+"|"+str$(Byte(size#,7)) else return$ = str$(icons&)+"|" WHILENOT x% = Icons& return$ = return$+str$(Byte(size#,6+(x%*16)))+"|"+str$(Byte(size#,6+(x%*16+1)))+"|" inc x% EndWhile endif DISPOSE Size# case right$(return$,1) = "|":return$ = left$(return$,len(return$)-1) return return$ EndProc Proc GifDim parameters file$ declare mem# dim mem#,10 'Set("Filemode", 0) blockread(file$,mem#,0,10) 'Set("Filemode", 0) var b% = word(mem#,6) var h% = word(mem#,8) dispose mem# return str$(b%)+"|"+str$(h%) endproc PROC BMPRLEDim Parameters file$ declare size# DIM size#,24 'Set("Filemode", 0) BlockRead(file$,size#,0,24) 'Set("Filemode", 2) var return$ = str$(long(size#,18))+"|"+str$(long(size#,22)) DISPOSE size# return return$'B,H endproc PROC PNGDim Parameters file$ declare size#,mem# Dim size#,24 'set("Filemode",0) BlockRead(file$,size#,0,24) 'set("Filemode",2) var return$ = str$(makeword(byte(size#,19),byte(size#,18)))+"|"+str$(makeword(byte(size#,23),byte(size#,22))) DISPOSE size#,mem# return return$ EndProc PROC JPGDim Parameters File$ declare size# Dim size#,filesize(file$) 'Set("Filemode", 0) blockread(file$,size#,0,filesize(file$)) 'Set("Filemode", 2) return GetJPGDIM(size#) PROC GetJPGDimension Parameters size#,Match% var back$ = str$(Makeword(byte(size#,match%+3),byte(size#,match%+2))) + "|" + str$(Makeword(byte(size#,match%+1),byte(size#,match%))) DISPOSE size# RETURN back$ EndProc PROC GetJPGMatch Parameters size#,x% Declare fs%,y%,back$ fs% = sizeof(size#) WHILENOT x% = fs% IF ((MakeWord(Byte(size#,x%+1),Byte(size#,x%)) = 65472) | (MakeWord(Byte(size#,x%+1),Byte(size#,x%)) = 65474)) y%=x%+5'5 bytes dazu back$ = GetJPGDimension(size#,y%)' Groessenangaben lesen x%=fs%-1 endif inc x% EndWhile RETURN back$ EndProc PROC GetJPGDIM parameters size# Declare mem# dim mem#,65535 External("Kernel32","RtlMoveMemory",mem#,size#,65535) var aaa% = (Makeword(Byte(mem#,5),Byte(mem#,4))+4) DISPOSE mem# var back$ = GetJPGMatch(size#,aaa%)'Position ab Segmentende suchen RETURN back$ endproc EndProc PROC TGADim Parameters file$ declare size#,return$ DIM size#,16 'Set("Filemode", 0) BlockRead(file$,size#,0,16) 'Set("Filemode", 2) return$ = str$(Word(size#,12))+"|"+str$(Word(size#,14)) DISPOSE size# return return$ EndProc PROC EMFDim Parameters file$ declare size#,return$ DIM size#,24 'Set("Filemode", 0) BlockRead(file$,size#,0,24) 'Set("Filemode", 2) return$ = str$(Word(size#,16))+"|"+str$(Word(size#,20)) DISPOSE size# return return$ EndProc http://xprofan.com/thread.core?t=8122&rd=rssFri, 05 Mar 2010 20:00:17 +0100PostingSeiten aus den Internethttp://xprofan.com/thread.core?t=8121&rd=rssNeuer Beitrag von iF (05.03.2010 18:40): DownLoadFile(S1[, S2]) (in der Hilfe beschrieben) und Download.Inc [...]  fallen mir dazu ein.http://xprofan.com/thread.core?t=8121&rd=rssFri, 05 Mar 2010 18:40:00 +0100Postingrgb inchttp://xprofan.com/thread.core?t=6645&rd=rssNeuer Beitrag von iF (04.03.2010 22:48): Für pixels.inc aktualisiert.http://xprofan.com/thread.core?t=6645&rd=rssThu, 04 Mar 2010 22:48:58 +0100PostingStartPaint2 StartPaintStack Inchttp://xprofan.com/thread.core?t=4106&rd=rssNeuer Beitrag von iF (04.03.2010 22:46): Include aktualisiert.http://xprofan.com/thread.core?t=4106&rd=rssThu, 04 Mar 2010 22:46:09 +0100PostingPixels Inc-Pixeleffekte für hPic shttp://xprofan.com/thread.core?t=7933&rd=rssNeuer Beitrag von iF (04.03.2010 22:41): Include aktualisiert, ältere Codes dürften nicht mehr kompatibel sein.Demos und Codes werden nachgereicht.http://xprofan.com/thread.core?t=7933&rd=rssThu, 04 Mar 2010 22:41:52 +0100PostingSandhttp://xprofan.com/thread.core?t=8120&rd=rssNeuer Beitrag von Maik Finder (03.03.2010 00:40): Sandhttp://xprofan.com/thread.core?t=8120&rd=rssWed, 03 Mar 2010 00:40:50 +0100PostingWand Mauerhttp://xprofan.com/thread.core?t=8110&rd=rssNeuer Beitrag von Maik Finder (03.03.2010 00:31): Wand/ Mauerhttp://xprofan.com/thread.core?t=8110&rd=rssWed, 03 Mar 2010 00:31:37 +0100PostingFliesenhttp://xprofan.com/thread.core?t=8108&rd=rssNeuer Beitrag von Maik Finder (03.03.2010 00:16): Bei den Texturen ist kein Autor angegeben, die werden ja als Freeware auch für kommerzielle Nutzung überall verteilt. http://xprofan.com/thread.core?t=8108&rd=rssWed, 03 Mar 2010 00:16:46 +0100PostingBödenhttp://xprofan.com/thread.core?t=8095&rd=rssNeuer Beitrag von Maik Finder (02.03.2010 23:11): Bödenhttp://xprofan.com/thread.core?t=8095&rd=rssTue, 02 Mar 2010 23:11:51 +0100PostingXProfaner-Treffen 2010 Teilnahme-Threadhttp://xprofan.com/thread.core?t=8115&rd=rssNeuer Beitrag von iF (02.03.2010 18:40): "Wie die Zeit vergeht ..." wüsste ich auch gerne! http://xprofan.com/thread.core?t=8115&rd=rssTue, 02 Mar 2010 18:40:25 +0100Postingcontrol scrollControl Scrollwindow Scrollareahttp://xprofan.com/thread.core?t=6274&rd=rssNeuer Beitrag von iF (02.03.2010 13:21): {dontdisp.thismessage}http://xprofan.com/thread.core?t=6274&rd=rssTue, 02 Mar 2010 13:21:11 +0100PostingTexturensammlunghttp://xprofan.com/thread.core?t=3112&rd=rssNeuer Beitrag von iF (01.03.2010 17:35): Wie ich das sehe, sortiert Maik die Texturen bereits in entsprechend-namige Threads - ist doch IO?http://xprofan.com/thread.core?t=3112&rd=rssMon, 01 Mar 2010 17:35:52 +0100PostingNetzwerk-Traffichttp://xprofan.com/thread.core?t=8089&rd=rssNeuer Beitrag von E.T. (01.03.2010 04:24): Irgendwie gibt das WMI-Gedöns nur (für mich wirre) Zahlen zurück .@Andreas: Dein Code sieht vielerschreckend aus, leider läuft dieser bei mir nur bis zumersten Print "Verbindungen" ,CountConnections()  , dann beendet sich das Programm (XProfan 11.2a) .[offtopic]Man(n) müsste einfach mehr Zeit haben...[/offtopic]http://xprofan.com/thread.core?t=8089&rd=rssMon, 01 Mar 2010 04:24:11 +0100PostingWunsch Width Height 2 Paramhttp://xprofan.com/thread.core?t=8119&rd=rssNeuer Beitrag von iF (27.02.2010 23:26): Width( und Height( könnten einen opt. 2. Param erhalten, ist Param2 z.B. true, könnte statt getClientRect getWindowRect zurückliefern.http://xprofan.com/thread.core?t=8119&rd=rssSat, 27 Feb 2010 23:26:59 +0100PostingHilfedatei CHM-Bugshttp://xprofan.com/thread.core?t=8060&rd=rssNeuer Beitrag von iF (27.02.2010 19:13): WinProc fehlt in Liste:http://xprofan.com/thread.core?t=8060&rd=rssSat, 27 Feb 2010 19:13:46 +0100PostingHymshttp://xprofan.com/thread.core?t=8118&rd=rssNeuer Beitrag von iF (27.02.2010 02:24): Eher durch Zufall hübsche Hym, praktisch das Schlagzeug fürs Einspielen gleich mit auf die Tasten zu legen.http://xprofan.com/thread.core?t=8118&rd=rssSat, 27 Feb 2010 02:24:45 +0100PostingRechtsbündig DrawText setTextAlign Textausgabe Zentrierthttp://xprofan.com/thread.core?t=8117&rd=rssNeuer Beitrag von iF (26.02.2010 23:45): Rechtsbündig DrawText per setTextAlign [...]  ta_right - vorgemacht von Andreas Miethe .Quelltext: ()cls setTextAlign(hDC,ta_right) drawText 120,10,"1020.80" drawText 120,30,"120.80" line 120,10,120,46 waitInput end Quelltext: ()cls setTextAlign(hDC,ta_center) drawText 120,10,"1020.80" drawText 120,30,"120.80" line 120,10,120,46 waitInput end Quelltext: ()TA_BASELINE = { $18 | 24 } TA_BOTTOM = { $8 | 8 } TA_CENTER = { $6 | 6 } TA_LEFT = { $0 | 0 } TA_MASK = (TA_BASELINE + TA_CENTER + TA_UPDATECP + TA_RTLREADING) TA_NOUPDATECP = { $0 | 0 } TA_RIGHT = { $2 | 2 } TA_RTLREADING = { $100 | 256 } TA_TOP = { $0 | 0 } TA_UPDATECP = { $1 | 1 } Ab XProfan 12 kann man auch schreiben:Quelltext: () $H windows.ph cls DrawText 120,10,"1020.80",~TA_RIGHT DrawText 120,30,"120.80" DrawText 120,50,"12.80" DrawText 120,70,"120.80" DrawText 120,90,"1.80" DrawText 120,110,"0.80" waitinput end Bzw. mit XPSE:Quelltext: ()cls DrawText 120,10,"1020.80",ta_right DrawText 120,30,"120.80" DrawText 120,50,"12.80" DrawText 120,70,"120.80" DrawText 120,90,"1.80" DrawText 120,110,"0.80" waitinput end http://xprofan.com/thread.core?t=8117&rd=rssFri, 26 Feb 2010 23:45:37 +0100PostingIntro Synth Piano Indust Warn Futurehttp://xprofan.com/thread.core?t=7989&rd=rssNeuer Beitrag von iF (26.02.2010 22:10): intro heartbeathttp://xprofan.com/thread.core?t=7989&rd=rssFri, 26 Feb 2010 22:10:51 +0100PostingMagichttp://xprofan.com/thread.core?t=8112&rd=rssNeuer Beitrag von Maik Finder (25.02.2010 23:02): Magichttp://xprofan.com/thread.core?t=8112&rd=rssThu, 25 Feb 2010 23:02:14 +0100PostingVerschiedeneshttp://xprofan.com/thread.core?t=8114&rd=rssNeuer Beitrag von Maik Finder (25.02.2010 19:52): Verschiedeneshttp://xprofan.com/thread.core?t=8114&rd=rssThu, 25 Feb 2010 19:52:08 +0100PostingÜbersichtlichkeit von XProfan Comhttp://xprofan.com/thread.core?t=3933&rd=rssNeuer Beitrag von Maik Finder (25.02.2010 19:47): Ich zumindestens finde hier alles was ich brauche http://xprofan.com/thread.core?t=3933&rd=rssThu, 25 Feb 2010 19:47:40 +0100PostingWasserhttp://xprofan.com/thread.core?t=8113&rd=rssNeuer Beitrag von Maik Finder (25.02.2010 19:23): Wasserhttp://xprofan.com/thread.core?t=8113&rd=rssThu, 25 Feb 2010 19:23:34 +0100PostingPapierhttp://xprofan.com/thread.core?t=8109&rd=rssNeuer Beitrag von Maik Finder (25.02.2010 18:29): Papierhttp://xprofan.com/thread.core?t=8109&rd=rssThu, 25 Feb 2010 18:29:31 +0100Posting