You are not logged in.

wcf.regNote.message

Hexo

Intermediate

  • "Hexo" started this thread

Posts: 297

  • Send private message

1

Saturday, April 7th 2007, 11:38am

Druckhack für Beiträge

Hey.

Also es gibt vom WBB ja die Druckvorschau, bzw. die Druckfunktion um ein Thema komplett auszudrucken. Leider find ich das nicht immer Zweckmäßig.
Deswegen hab ich mal was ausprobiert, wie man einen Beitrag nur alleine Ausdrucken kann.

Dafür hab ich die Print.php vom wbb ein wenig geändert und sie beitragsprint.php getauft:

Source code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
$filename="beitragsprint.php";

require("./global.php");
require("./acp/lib/class_parse.php");

if(!isset($_GET['postid'])) eval("error(\"".$tpl->get("error_falselink")."\");");

$parse = new parse($docensor,75,$board['allowsmilies'],$board['allowbbcode'],$wbbuserdata['showimages'],$usecode,0);

$result = $db->query("SELECT p.*, t.topic FROM bb".$n."_posts p
LEFT JOIN bb".$n."_users u USING (userid) LEFT JOIN bb".$n."_threads t ON (p.threadid=t.threadid)
WHERE p.postid = '".intval($_GET['postid'])."'");
$posts = $db->fetch_array($result);
$posts['message']=$parse->doparse($posts['message'],1,$board['allowhtml'],$board['allowbbcode'],$board['allowimages']);
$postdate=formatdate($dateformat,$posts['posttime']);
$posttime=formatdate($timeformat,$posts['posttime']);
$postername = stripslashes($posts['username']);
$topic = stripslashes($posts['topic']);
eval("\$tpl->output(\"".$tpl->get("print_post")."\");");
?>


Passend dazu hab ich ein Template erstellt (print_post.tpl):

Source code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
<?xml version="1.0" encoding="{$lang->items['LANG_GLOBAL_ENCODING']}"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="{$lang->items['LANG_GLOBAL_DIRECTION']}" lang="{$lang->items['LANG_GLOBAL_LANGCODE']}" xml:lang="{$lang->items['LANG_GLOBAL_LANGCODE']}">
<head>
<title>$master_board_name | $posts[posttopic] | Druckansicht</title>
<style type="text/css">
 <!--
@media print,screen
{
body {
 color: #000000;
 font-family: tahoma,helvetica;
}
body a:link, body a:visited, body a:active {
 color: #000000;
 text-decoration: underline;
}
table.print {
cellspacing:0;
cellpadding:5px;
font-size: 13px;
font-family: Tahoma,Helvetica;
}
td.title a:link, .tabletitle a:visited, .tabletitle a:active {
color: #000000;
text-decoration: none;
}
td.titlea {
background-color: #FF9933;
background-image: url(images/cellpic.gif);
text-align:left;
}
td.titleb {
background-color: #FF9933;
background-image: url(images/cellpic.gif);
text-align:right;
font-size:11px;
}
.time {
 color: #666686;
}
}
-->
</style>
</head>

<body>
<table class="print">
  <tr>
    <td class="titlea"><strong>$posts[posttopic]</strong></td>
    <td class="titleb"><smallfont>Gepostet am $postdate um $posttime von: <br />Benutzer: <b>$postername</b></font></td>
  </tr>
  <tr>
  <td colspan="2">$posts[message]</td>
 </tr>
 <tr>
 <td>
<br/>
<hr noshade size="2">
<br/>
<span class="smallfont">URL zum nachlesen= <br/>
<a href="$url2board/thread.php?postid=$postid#post$postid">$url2board/thread.php?postid=$postid#post$postid</a></span></td>
 </tr>
 </table>
<br />
<a href="javascript:window.print()">Diese Seite drucken</a> <br/ >
<br/>
<br/>
<span class="smallfont"><font size="-2">Copyright by $url2board</font></span>
</body></html>


In dem Template thread_postbit hab ich dann noch einen Textlink
für die Druckfunktion beigefügt:

Source code

1
<left><a href="beitragsprint.php?postid=$posts[postid]" target="_blank" style="text-decoration: none"><span class="smallfont">Beitrag drucken</span></a></left>


Bin richtig Happy. Der Beitrag wird korrekt ausgegeben. ABER: Textformatierungen sowie evtl. eingebungene Bilder (per [img]) fehlen. Die werden nicht ausgegeben. Warum? Ich bin kein Coder und weiß absolut nicht weiter. Hab schon alles mögliche ausprobiert. Ich vermute mal ganz stark, dass in der beitragsprint.php der fehler liegt. Hab auch schon ewigkeiten gebraucht das so hinzubekommen, dass keine Fehlermeldungen mehr kommen..[/img]

This post has been edited 1 times, last edit by "Hexo" (Apr 7th 2007, 11:39am)


Hexo

Intermediate

  • "Hexo" started this thread

Posts: 297

  • Send private message

2

Sunday, April 8th 2007, 9:34pm

Hat keiner eine Idee?

Lady09

Trainee

Posts: 130

Occupation: Akustikbauer/ Trockenbauer

  • Send private message

3

Tuesday, April 10th 2007, 7:32pm

Hallo

hab das ganze mal überarbeitet fehlt nur noch das mit den Bildern


hier ist schon mal der Button
Lady09 has attached the following file:
  • druck.gif (1.51 kB - 132 times downloaded - latest: Nov 4th 2011, 6:45am)

Hexo

Intermediate

  • "Hexo" started this thread

Posts: 297

  • Send private message

4

Tuesday, April 10th 2007, 7:36pm

Danke für den Button ^^ aber ich wollte schon das ganze als Textlink behalten. Wo find ich den Deine Überarbeitete Version?

Lady09

Trainee

Posts: 130

Occupation: Akustikbauer/ Trockenbauer

  • Send private message

5

Tuesday, April 10th 2007, 8:07pm

Hier

ist aber noch nicht ganz fertig

Source code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
<?xml version="1.0" encoding="{$lang->items['LANG_GLOBAL_ENCODING']}"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="{$lang->items['LANG_GLOBAL_DIRECTION']}" lang="{$lang->items['LANG_GLOBAL_LANGCODE']}" xml:lang="{$lang->items['LANG_GLOBAL_LANGCODE']}">
<head>

<title>$master_board_name | {$lang->items['LANG_START_TITLE']}</title>
$headinclude
</head>

<body>
 $header

<title>$master_board_name | $posts[posttopic] | Druckansicht</title>
<style type="text/css">
 <!--
@media print,screen
{
body {
 color: #000000;
 font-family: tahoma,helvetica;
}
body a:link, body a:visited, body a:active {
 color: #000000;
 text-decoration: underline;
}
table.print {
cellspacing:0;
cellpadding:5px;
font-size: 13px;
font-family: Tahoma,Helvetica;
}
td.title a:link, .tabletitle a:visited, .tabletitle a:active {
color: #000000;
text-decoration: none;
}
td.titlea {
background-color: #FF9933;
background-image: url(images/cellpic.gif);
text-align:left;
}
td.titleb {
background-color: #FF9933;
background-image: url(images/cellpic.gif);
text-align:right;
font-size:11px;
}
.time {
 color: #666686;
}
}
-->
</style>
</head>

<body>
<table class="print">

  <tr>
 <td class="tabletitle">
   <table cellpadding="0" cellspacing="0" border="0" style="width:100%">
<td align="left"><b>$posts[posttopic]:</strong></b><smallfont>Gepostet am: $postdate um $posttime  </span></td>
      <td align="right"> von: Benutzer: <b>$postername</a></b></span></td>
 </tr>
   </table>
  </td>
 </tr>
</tableb>

    
  </tr>
  <tr>

  <td colspan="2">$posts[message]</td>
 </tr>
 <tr>
 <td>
<br/>
<hr noshade size="2">
<br/>
<span class="smallfont">URL zum nachlesen= <br/>
<a href="$url2board/thread.php?postid=$postid#post$postid">$url2board/thread.php?postid=$postid#post$postid</a></span></td>
 </tr>
 </table>
<br />
<a href="javascript:window.print()">Diese Seite drucken</a> <br/ >
<br/>
<br/>
<span class="smallfont"><font size="-2">Copyright by $url2board</font></span>
</body></html>



die php

Source code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
<?php
$filename="beitragsprint.php";

require("./global.php");
require("./acp/lib/class_parse.php");

if(!isset($_GET['postid'])) eval("error(\"".$tpl->get("error_falselink")."\");");
$parse = &new parse($docensor, 75, $wbbuserdata['showimages'], "", $usecode, 0);
$parse = new parse($docensor,75,$board['allowsmilies'],$board['allowbbcode'],$wbbuserdata['showimages'],$usecode,0);

$result = $db->query("SELECT p.*, t.topic FROM bb".$n."_posts p
LEFT JOIN bb".$n."_users u USING (userid) LEFT JOIN bb".$n."_threads t ON (p.threadid=t.threadid)
WHERE p.postid = '".intval($_GET['postid'])."'");
$posts = $db->fetch_array($result);
$posts['message']=$parse->doparse($posts['message'],1,$board['allowhtml'],$board['allowbbcode'],$board['allowimages']);
$postdate=formatdate($dateformat,$posts['posttime']);
$posttime=formatdate($timeformat,$posts['posttime']);
$postername = stripslashes($posts['username']);
$topic = stripslashes($posts['topic']);
eval("\$tpl->output(\"".$tpl->get("print_post")."\");");
?>


das mit den bildern komt noch

Hexo

Intermediate

  • "Hexo" started this thread

Posts: 297

  • Send private message

6

Tuesday, April 10th 2007, 8:37pm

Dann bin ich mla gespannt. Danke schonmal im vorraus!

Lady09

Trainee

Posts: 130

Occupation: Akustikbauer/ Trockenbauer

  • Send private message

7

Tuesday, April 10th 2007, 11:33pm

Das neue ist im anhang


sollte nun klappen
Lady09 has attached the following file:
  • Print.rar (2.07 kB - 8 times downloaded - latest: Aug 14th 2009, 2:41pm)

Hexo

Intermediate

  • "Hexo" started this thread

Posts: 297

  • Send private message

8

Wednesday, April 11th 2007, 6:10am

Coole Sache aber leider ist das irgendwie nicht mehr so, wie ich mir das vorgestellt habe. Jetzt wird das komplette Thema ausgedruckt. Ich wollte ja nur den einzelnen Beitrag ausdrucken. Zusätzlich bin ich für das "Print Layout" von dem SeitenLayout weggegagen. Bei Deiner post_print.tpl wird das SeitenLayout übernommen.
Ansonten klappt das schonmal, dass die BB-Codes übernommen werden. ;-)

Lady09

Trainee

Posts: 130

Occupation: Akustikbauer/ Trockenbauer

  • Send private message

9

Wednesday, April 11th 2007, 10:33am

Hallo


teste mal diese php

Source code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
<?php
$filename="beitragsprint.php";
require('./global.php');
require('./acp/lib/class_parse.php');
$lang->load('THREAD');

if (!isset($threadid)) error($lang->get("LANG_GLOBAL_ERROR_FALSELINK", array('$adminmail' => $adminmail)));
if (!checkpermissions("can_read_thread")) access_error();

if (isset($_GET['page'])) {
	$page = intval($_GET['page']);
	if ($page < 1) $page = 1;
}
else $page = 1;

if ($wbbuserdata['umaxposts']) $postsperpage = $wbbuserdata['umaxposts'];
elseif ($board['postsperpage']) $postsperpage = $board['postsperpage'];
else $postsperpage = $postsperpage="1";
$postorder = $board['postorder'];

list($postcount) = $db->query_first("SELECT COUNT(*) FROM bb".$n."_posts WHERE postid = '$postid' AND visible = 1");

$parse = &new parse($docensor, 75, $wbbuserdata['showimages'], "", $usecode, 0);

$postids = '';
$result = $db->query("SELECT postid FROM bb".$n."_posts WHERE postid = '$postid' AND visible = 1 ORDER BY posttime ".(($postorder) ? ("DESC") : ("ASC")), $postsperpage, $postsperpage * ($page - 1));
while ($row = $db->fetch_array($result)) $postids .= ",".$row['postid'];

$result = $db->query("SELECT
p.*,
u.signature, i.iconpath, i.icontitle
FROM bb".$n."_posts p 
LEFT JOIN bb".$n."_users u USING (userid)
LEFT JOIN bb".$n."_icons i ON (p.iconid=i.iconid)
WHERE p.postid IN (0$postids)
ORDER BY p.posttime ".(($postorder) ? ("DESC") : ("ASC")));

while ($posts = $db->fetch_array($result)) {
	unset($signature);
	if ($posts['iconid']) $posticon = makeimgtag($posts['iconpath'], getlangvar($posts['icontitle'], $lang), 0);
	else $posticon = "&nbsp;";
	if ($posts['posttopic']) $posts['posttopic'] = htmlconverter(textwrap($posts['posttopic']));
	
	$posts['message'] = $parse->doparse($posts['message'], $posts['allowsmilies'], $posts['allowhtml'], $posts['allowbbcode'], $posts['allowimages']);
	
	$postdate = formatdate($wbbuserdata['dateformat'], $posts['posttime']);
	$posttime = formatdate($wbbuserdata['timeformat'], $posts['posttime']);
	
	$posts['username'] = htmlconverter($posts['username']);
	$LANG_THREAD_PRINT_POSTED_ON = $lang->get("LANG_THREAD_PRINT_POSTED_ON", array('$username' => $posts['username'], '$postdate' => $postdate, '$posttime' => $posttime));
	eval("\$print_postbit .= \"".$tpl->get("print_postbit")."\";");
}
$thread['topic'] = htmlconverter(textwrap($thread['topic']));
eval("\$tpl->output(\"".$tpl->get("print_post")."\");");
?>

This post has been edited 2 times, last edit by "Lady09" (Apr 11th 2007, 2:07pm)


Hexo

Intermediate

  • "Hexo" started this thread

Posts: 297

  • Send private message

10

Wednesday, April 11th 2007, 7:59pm

Ok, jetzt klappt es, dass ich nur den Beitrag sehe. Ich musste in der TPL noch den Header wegnehmen sowie die Headerinclude da sonst alles in grau (Hintergrundfarbe) rauskommt. Wie kann ich das jetzt noch machen, das es ausieht wie bei meinme Lexicon? So wollt ich vom Desing auch die Druckansicht haben:

Bsp: http://www.auf-passen.de/lexicon.php?act…tter=B&id=14#14

Lady09

Trainee

Posts: 130

Occupation: Akustikbauer/ Trockenbauer

  • Send private message

11

Wednesday, April 11th 2007, 9:36pm

nim mal das tpl
hab nochmal was geändert


Source code

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
<?xml version="1.0" encoding="{$lang->items['LANG_GLOBAL_ENCODING']}"?>
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="{$lang->items['LANG_GLOBAL_DIRECTION']}" lang="{$lang->items['LANG_GLOBAL_LANGCODE']}" xml:lang="{$lang->items['LANG_GLOBAL_LANGCODE']}">
<head>

<title>$master_board_name | {$lang->items['LANG_START_TITLE']}</title>
$headinclude
</head>

<body>
 

<title>$master_board_name | $posts[posttopic] | Druckansicht</title>
<style type="text/css">
 <!--
@media print,screen
{
body {
 color: #000000;
 font-family: tahoma,helvetica;
}
body a:link, body a:visited, body a:active {
 color: #000000;
 text-decoration: underline;
}
table.print {
cellspacing:0;
cellpadding:5px;
font-size: 13px;
font-family: Tahoma,Helvetica;
}
td.title a:link, .tabletitle a:visited, .tabletitle a:active {
color: #000000;
text-decoration: none;
}
td.titlea {
background-color: #FF9933;
background-image: url(images/cellpic.gif);
text-align:left;
}
td.titleb {
background-color: #FF9933;
background-image: url(images/cellpic.gif);
text-align:right;
font-size:11px;
}
.time {
 color: #666686;
}
}
-->
</style>
</head>

<body>
<table class="print">

  <tr>
 <td class="tabletitle">
   <table cellpadding="0" cellspacing="0" border="0" style="width:100%">




<td align="left"><b>$posts[posttopic]</b><smallfont>Gepostet am: $postdate um $posttime  </span></td>
      <td align="right"> von: User: <b>$postername</b></span></td>
 </tr>
   </table>
  </td>
 </tr>
</tableb>

    
  </tr>
  <tr>

  <td colspan="2">$posts[message]</td>
 </tr>
 <tr>
 <td>
<br/>
$print_msgs
<hr noshade size="2">
<br/>
<span class="smallfont">URL zum nachlesen= <br/>
<a href="$url2board/thread.php?postid=$postid#post$postid">$url2board/thread.php?postid=$postid#post$postid</a></span></td>
 </tr>
 </table>
<br />
<a href="javascript:window.print()">Diese Seite drucken</a> <br/ >
<br/>
<br/>
<span class="smallfont"><font size="-2">Copyright by $url2board</font></span>
</body></html>


dann noch das print_msgs.tpl anlegen

Source code

1
2
3
4
<div class="normalfont">
$posticon <b>$posts[posttopic]
</b><br /><br />
$posts[message]</div><br /><br />

This post has been edited 1 times, last edit by "Lady09" (Apr 11th 2007, 10:19pm)


Hexo

Intermediate

  • "Hexo" started this thread

Posts: 297

  • Send private message

12

Wednesday, April 11th 2007, 10:24pm

Sorry, klappt so nicht:

Der Beitrag an sich fehlt:
http://www.auf-passen.de/beitragsprint.php?postid=538

Das neue tpl. hab ich auch angelegt.

This post has been edited 1 times, last edit by "Hexo" (Apr 11th 2007, 10:24pm)


Lady09

Trainee

Posts: 130

Occupation: Akustikbauer/ Trockenbauer

  • Send private message

13

Wednesday, April 11th 2007, 10:35pm

Ups

was vergessen

und zwar mus noch das ersetzt werden

in der beitragsbrint.php
eval("\$print_postbit .= \"".$tpl->get("print_postbit")."\";");

durch das ersetzen

eval("\$print_msgs .= \"".$tpl->get("print_msgs")."\";");

Hexo

Intermediate

  • "Hexo" started this thread

Posts: 297

  • Send private message

14

Wednesday, April 11th 2007, 10:45pm

Coole Sache. So, es ist fast geschafft ^^ Es sieht jetzt schon super gut aus.
Allerdings fehler noch der Username und die Postzeit in der Druckansicht. Sonst ist es schon ziemlich geil!!!

Lady09

Trainee

Posts: 130

Occupation: Akustikbauer/ Trockenbauer

  • Send private message

15

Wednesday, April 11th 2007, 10:53pm

das sind die wo bei mir gehen

im angang
Lady09 has attached the following file:
  • Print.rar (2.37 kB - 9 times downloaded - latest: Aug 14th 2009, 2:29pm)

Hexo

Intermediate

  • "Hexo" started this thread

Posts: 297

  • Send private message

16

Wednesday, April 11th 2007, 10:59pm

Hab gerade nochmal Deine Beitragsprint.php reingesetzt und siehe da: Es funzt. Hammer. Genial. Danke schön. Ich kann ja mal ne kleine Anleitung schreiben und das hier als Hack reinsetzen :P

1000% für die Geduld !!!!!!!!!!!!!!!

Lady09

Trainee

Posts: 130

Occupation: Akustikbauer/ Trockenbauer

  • Send private message

17

Wednesday, April 11th 2007, 11:06pm

Hallo

nix zu danken

wenn sonst was ist findeste mich auf meinem Board

Steht in der Sig..

Prometheus

Administrator

Posts: 3,278

  • Send private message

18

Wednesday, April 11th 2007, 11:11pm

Nunja, wenn das ganze als Hack raus gegeben werden soll hätte ich noch Ideen was man verbessern könnte um das ganze auf die Spitze zu treiben.

1. Berechtigungen
Im ACP einstellbar welche Benutzergruppe das Recht hat überhaupt zu drucken über den Hack. Mann kann sowas zwar natürlich immer umgehen indem man über den Browser druckt aber dann hat man nicht den Vorteil den der Hack bietet.

2. Color / SW Druck
Sofort beim Drucken schon auswählen können ob der Beitrag in Farbe oder schwarz-weiß gedruckt wird. Man müsste im sw Modus eigentlich nur aus den Vorgaben die Farbe raus nehmen und sich auf Grautöne beschränken.

3. Ausgabe als PDF
Es gibt die Möglichkeit mit PHP ein PDF Dokument zu erzeugen. Das könnte man so machen, dass das Dokument in einem temporären Ordner vorbereitet wird und der User es dann downloader bzw. sofort nach dem Generieren als Download angeboten bekommt (wie wenn ich auf einen Download Link klicke). Das Dokument kann man dann in der global.php alle 24 Stunden löschen so das der Ordner nicht irgendwann alle Beiträge aus dem Forum fasst.

4. Beitragsersteller sowie Forum als festen Bestandteil oder wahlweise ohne beim Ausdruck. Wo man diese Option einbringen könnte weiß ich auch nicht aber ne Idee wäre es.

5. Bei der Forenerstellung und Änderung auswählen können ob dieser Druckmodus unterstützt wird oder nicht. Am besten auch ob man nur Standard Druck nutzen darf oder PDF Druck.

6. Die Bilder und alle Elemente eines Beitrags so ausgeben damit sie optimal auf das Papier passen. Sofern es jpg oder png grafiken sind könnte man diese direkt von PHP anpassen lassen. Man müsste dann natürlich die Bilder von externen Seiten irgendwie mit einbauen. Würde denke ich am einfachsten gehen wenn man erst ein PDF erzeugt und dieses dann an den Drucker schickt oder so.
Jedwege Anfragen bitte an Technomausi oder ShaoKhan richten. Dieses Konto ist und bleibt inaktiv.

Hexo

Intermediate

  • "Hexo" started this thread

Posts: 297

  • Send private message

19

Wednesday, April 11th 2007, 11:16pm

Alter, die PDF ausgabe ist ne sau geniale Idee.

Punkt 1: Kann man machen, muss aber nicht.

Punkt 2: Eher unzweckmäßig, da man das eh über besser über den Drucker steuert.

Punkt 3: Wie ich schon gesagt hab: Geniale Idee.

Punkt 4: Beitragssteller sollte immer zu sehen sein. Alleine aus dem copyrightsinn. Deswegen kann man den Punkt eher zurückstellen.

Punkt 5: Wäre ne gute Option.

Punkt 6: Sehr zweckmäßig. Wäre schon super, wenn sich Grafiken auf das Seitenformat anpassen würde.

Aber der wichtigste Punkt: Ist dat viel Aufwand?

Lady09

Trainee

Posts: 130

Occupation: Akustikbauer/ Trockenbauer

  • Send private message

20

Wednesday, April 11th 2007, 11:17pm

Hallo

keine schlechte Idee
aber das bekomme ich nicht hin so gut kann ich leider nicht proggen.

aber du köntest das umsetzen...

wcf.user.socialbookmarks.titel