06-12-2023, 12:35 AM
(06-11-2023, 04:57 PM)Kernelpanic Wrote: Now everything works again. The plugin in question is like a Stardiva.I remember those days! Allaire Homesite was great for sure. The forum is MyBB and is a PHP backed dynamic web app. The pages are dynamic. They also use templates. The forum itself is very good. Plug-ins will never be as good unless made by same caliber of developer as that which they plug-in to.
In connection with websites, the only plugins I know of are ActiveX controls that I used to work with at the time; a good three years as a web designer and web programmer (Java Applets). It was actually a great thing, ActiveX, but a lot of people didn't understand it, and unfortunately MS wasn't as violent as usual here, and it doesn't work that way anymore - this also applies to VB-Script.
The source text of the page looks clean, not a mess like with Dreamweaver & Co. What kind of editor was it created with? I have always worked with Homesite, the best there was in that regard.
This is an ActiveX control in a website that calls a Java class file in which the calculation is carried out and is returned to a VB script on the website.
And this is the class file.Code: (Select All)<TD>
<APPLET CODE="EffuntZinsAufgeld.class" CODEBASE="../ClassDateien" ID="effZinsAufgeld"
WIDTH=80 HEIGHT=29>
</APPLET>
</TD>
<TD>
<OBJECT ID="Label1" WIDTH=38 HEIGHT=19
CLASSID="CLSID:978C9E23-D4B0-11CE-BF2D-00AA003F40D0"
>
<PARAM NAME="ForeColor" VALUE="8388736">
<PARAM NAME="BackColor" VALUE="16777215">
<PARAM NAME="VariousPropertyBits" VALUE="276824091">
<PARAM NAME="Caption" VALUE=" %">
<PARAM NAME="Size" VALUE="1164;494">
<PARAM NAME="SpecialEffect" VALUE="1">
<PARAM NAME="FontEffects" VALUE="1073741825">
<PARAM NAME="FontHeight" VALUE="200">
<PARAM NAME="FontCharSet" VALUE="0">
<PARAM NAME="FontPitchAndFamily" VALUE="2">
<PARAM NAME="FontWeight" VALUE="700">
</OBJECT>
</TD>
Code: (Select All)//Effektivzins von Wertpapieren mit unterj. Zinsperioden und Aufgeld
//Die Argumente werden durch ein VBScript in der HTML-Datei übergeben.
//Ausgabe erfolgt dort in einem Textfeld. - 17.9.1997
import java.applet.*;
import java.awt.*;
import java.util.*;
public class EffuntZinsAufgeld extends Applet
{
TextField txtEffZinsAusgabe = new TextField(11);
String s, str;
String vor, nach;
public void init()
{
add(txtEffZinsAusgabe);
}
//Parameter lassen sich nur so übergeben
public void berechnen(String arg1, String arg2, String arg3, String arg4, String arg5)
{
Float d1 = new Float(arg1);
double nominalZins = d1.doubleValue();
. . .
The good old times!