Zum Inhalt springen

kandi_44

Mitglieder
  • Gesamte Inhalte

    64
  • Benutzer seit

  • Letzter Besuch

    Nie

Beiträge von kandi_44

  1. Hi valentin, hier ein lösungsvorschlag:

    nimm eine html-tabelle!

    Ich nehme mal an das deine links in einem

    array gespeichert sind.

    Ich glaube du benutzt ein etwas anderes PHP. Das unterscheidet sich aber nur in detais wie echo/print. CU und viel spass noch

    PS: das war meine mittagspause :-)))

    ---------------------------------------------

    $links[] //ursprünglicher Katalog;

    //neuer Katalog

    $links2[1] ==zeile1

    $links2[2] ==zeile1

    $links2[3] ==zeile1

    $links2[..] ==zeile..

    $links2[10] ==zeile10

    $x=0;

    for ($y=1,$y<=10;$y++)

    {

    $links2[$y][$x]=$links[$x*10+$y];

    if ($y=10) $x++;

    }

    echo "<table>";

    for ($y=1,$y<=10;$y++)

    {

    echo "<tr>";

    for ($i=0;$i<=x;$i++)

    {

    echo "<td><A HREF=".$links2[$y][$i].">".$links2[$y][$i]."</A></td>\n";

    }

    echo "/<tr>";

    }

    echo "</table>";

    --------

    mfg andi

    [Dieser Beitrag wurde von kandi_44 am 01. Dezember 2000 editiert.]

    [Dieser Beitrag wurde von kandi_44 am 01. Dezember 2000 editiert.]

  2. Sorry da du keine eMail addy hast:

    ---------------------------------------------

    Private Sub UserForm_Initialize()

    Label1.Left = 18

    Label1.Top = 12

    Label1.Height = 12

    Label1.Width = 190

    Label1.Caption = "Select picture placement " _

    & "relative to the caption."

    'Add list entries to combo box. The value of each

    'entry matches the corresponding ListIndex value

    'in the combo box.

    ComboBox1.AddItem "Left Top" 'ListIndex = 0

    ComboBox1.AddItem "Left Center" 'ListIndex = 1

    ComboBox1.AddItem "Left Bottom" 'ListIndex = 2

    ComboBox1.AddItem "Right Top" 'ListIndex = 3

    ComboBox1.AddItem "Right Center" 'ListIndex = 4

    ComboBox1.AddItem "Right Bottom" 'ListIndex = 5

    ComboBox1.AddItem "Above Left" 'ListIndex = 6

    ComboBox1.AddItem "Above Center" 'ListIndex = 7

    ComboBox1.AddItem "Above Right" 'ListIndex = 8

    ComboBox1.AddItem "Below Left" 'ListIndex = 9

    ComboBox1.AddItem "Below Center" 'ListIndex = 10

    ComboBox1.AddItem "Below Right" 'ListIndex = 11

    ComboBox1.AddItem "Centered" 'ListIndex = 12

    'Use drop-down list

    ComboBox1.Style = fmStyleDropDownList

    'Combo box values are ListIndex values

    ComboBox1.BoundColumn = 0

    'Set combo box to first entry

    ComboBox1.ListIndex = 0

    ComboBox1.Left = 18

    ComboBox1.Top = 36

    ComboBox1.Width = 90

    ComboBox1.ListWidth = 90

    'Initialize CommandButton1

    CommandButton1.Left = 230

    CommandButton1.Top = 36

    CommandButton1.Height = 120

    CommandButton1.Width = 120

    'Note: Be sure to refer to a bitmap file that is

    'present on your system, and to include the path

    'in the filename.

    CommandButton1.Picture = _

    LoadPicture("c:\windows\argyle.bmp")

    CommandButton1.PicturePosition = ComboBox1.Value

    End Sub

    Private Sub ComboBox1_Click()

    Select Case ComboBox1.Value

    Case 0 'Left Top

    CommandButton1.Caption = "Left Top"

    CommandButton1.PicturePosition = _

    fmPicturePositionLeftTop

    Case 1 'Left Center

    CommandButton1.Caption = "Left Center"

    CommandButton1.PicturePosition = _

    fmPicturePositionLeftCenter

    Case 2 'Left Bottom

    CommandButton1.Caption = "Left Bottom"

    CommandButton1.PicturePosition = _

    fmPicturePositionLeftBottom

    Case 3 'Right Top

    CommandButton1.Caption = "Right Top"

    CommandButton1.PicturePosition = _

    fmPicturePositionRightTop

    Case 4 'Right Center

    CommandButton1.Caption = "Right Center"

    CommandButton1.PicturePosition = _

    fmPicturePositionRightCenter

    Case 5 'Right Bottom

    CommandButton1.Caption = "Right Bottom"

    CommandButton1.PicturePosition = _

    fmPicturePositionRightBottom

    Case 6 'Above Left

    CommandButton1.Caption = "Above Left"

    CommandButton1.PicturePosition = _

    fmPicturePositionAboveLeft

    Case 7 'Above Center

    CommandButton1.Caption = "Above Center"

    CommandButton1.PicturePosition = _

    fmPicturePositionAboveCenter

    Case 8 'Above Right

    CommandButton1.Caption = "Above Right"

    CommandButton1.PicturePosition = _

    fmPicturePositionAboveRight

    Case 9 'Below Left

    CommandButton1.Caption = "Below Left"

    CommandButton1.PicturePosition = _

    fmPicturePositionBelowLeft

    Case 10 'Below Center

    CommandButton1.Caption = "Below Center"

    CommandButton1.PicturePosition = _

    fmPicturePositionBelowCenter

    Case 11 'Below Right

    CommandButton1.Caption = "Below Right"

    CommandButton1.PicturePosition = _

    fmPicturePositionBelowRight

    Case 12 'Centered

    CommandButton1.Caption = "Centered"

    CommandButton1.PicturePosition = _

    fmPicturePositionCenter

    End Select

    End Sub

    ---------------------------------------------

    greetz andreas

  3. tralala -- tralala

    ahoi web!

    ich habe bereits ein PHP skript das die tabelleneintrage aus einer datenbank liest.

    nur zu anfangs hatte ich halt gedacht, dass ich auch verschied. abkürzungen benutzen kann.

    zb: für "<img src=....>" => $abk1

    wenn dass jetzt auf der user seite praktisch substituiert wird, spare ich eine menge html code, der über die leitung übertragen werden muss.

    ok vielleicht ein neus feature für html 5.0 ???? wer weiss..

    und wech....

  4. Hi leutchens!

    ich hab hier eine dyn.generierte tabelle der größe 100kb vor mir. in dieser tabelle kann man jede zelle anklicken, und dahinterverbirgt sich ein link.

    wie kann ich code sparen???

    durch alias'e am anfang der html datei vielleicht, welche dann autom. vom webbrowser (damit die daten nicht über die leitung müssen:-)) an der gewünschten stelle eingefügt werden?

    ich brauch dringends hilfe...

  5. um das hinzufügen einer spalte wirst du nicht drumrum können. denn irgendwie musst du ja die informationen aus deiner personentabelle mit dem datum verbinden.

    entweder du legst eine spalte mit dem -Änderungsdatum- an, oder eine spalte -datumsID-. das machst du mit alter table....

    wenn du datumsid angelegt hast machst du eine neue tabelle mit (ID,DATUM). Somit verknüpfst du die informationen der Personen (personentabelle) mit hilfe der ID mit den Datumsinformationen!

    Wenn du fragen hast frag.

    CU andreas

    PS. Wie du siehst ist es nicht sehr sinnvoll eine extra Tabelle anzulegen. Aber wenn es die aufgabenstellung verlangt....

  6. ihr kennt bestimmt das leidliche Thema:

    ihr wollt den quellcode einer html-datei anschauchen, doch ihr seht nichts ausser einer zeile in der der gesamte quellcode steht?

    habt ihr eine lösung (prog,makro) um die html datei zu einer lesbar gegliederten datei umzuformen??

    ciao**** andi

  7. Zitat:

    --------------------------------------------------------------------------------

    - trittst vor die Haustüre, es kommen dir fröhlich singende Kinder entgegen

    --------------------------------------------------------------------------------

    schlimmer

    --------------------------------------------------------------------------------

    Du tritts vor dir türe, und [deine] drei kinder stehen hinter dir und wollen zur schule

    --------------------------------------------------------------------------------

Fachinformatiker.de, 2024 by SE Internet Services

fidelogo_small.png

Schicke uns eine Nachricht!

Fachinformatiker.de ist die größte IT-Community
rund um Ausbildung, Job, Weiterbildung für IT-Fachkräfte.

Fachinformatiker.de App

Download on the App Store
Get it on Google Play

Kontakt

Hier werben?
Oder sende eine E-Mail an

Social media u. feeds

Jobboard für Fachinformatiker und IT-Fachkräfte

×
×
  • Neu erstellen...