eben.. wenn man sowas anbietet, sollte man das schon selber machen. geh davon aus, dass du nicht der einzige bist mit den dingern. individualität ist ehrensache!
Beiträge von jaaam
-
-
von mir auch, ja?
-
Zitat
Fehlermeldung:
Microsoft OLE DB Provider for ODBC Drivers error '80004005'
[Microsoft][ODBC Microsoft Access 97 Driver] Operation must use an updateable query.CAUSE
This article explains the four primary causes of this error and the corresponding workarounds. Although this article refers to Microsoft Access databases, the information provided here also applies to other types of databases.RESOLUTION
This error is typically encountered when your script attempts to perform an UPDATE or some other action that alters the information in the database. This error occurs because ADO is unable to write to the database for one of the following reasons:The most common reason is that the Internet Guest account (IUSR_MACHINE), which is by default part of the "Everyone" group, does not have Write permissions on the database file (.mdb). To fix this problem, use the Security tab in Explorer to adjust the properties for this file so that the Internet Guest account has the correct permissions.
NOTE: When using Microsoft Access databases with ADO, it is also necessary to give the Internet Guest account Write permissions on the directory containing the .mdb file. This is because Jet creates an .ldb file to handle database locking. You may also need to give read/write permission on the "Temp" folder because Jet may create temporary files in this directory.
A second cause of this error is that the database was not opened with the correct MODE for writing. If you perform the Open on the Connection object, you use the Mode property to indicate the permissions on the connection as shown here:
SQL = "UPDATE Products Set UnitPrice = 2;"
Set Conn = Server.CreateObject("ADODB.Connection")
Conn.Mode = 3 '3 = adModeReadWrite
Conn.Open "myDSN"
Conn.Execute(SQL)
Conn.CloseNOTE: By default, the MODE is set to 0(adModeUnknown), which generally allows updates.
Another cause of this error is that the "Read Only" setting may be checked in the Options page for this DSN in the ODBC Manager.
The last issue and work around pertains to any SQL data source. The error can be caused by SQL statements that violate referential integrity of the database. Here are a few of the most common queries that fail:
The simplest group to deal with are those you cannot change: crosstab, SQL pass-through, union, or update (or make-table) action queries that have UniqueValue properties set to Yes.
Another very common cause is when the join includes linked ODBC tables that do not have unique indexes. In this case, there is no way for SQL to guarantee that records are unique in a table that has fields whose value will change with the query.
One cause does have a robust workaround. If you try to update a join field on the "one" side of a "one-to-many" query it will fail unless you turn on cascading updates. This way, you delegate referential integrity to the JET engine.
hat dein provider irgendwelche schreibrechte nicht vergeben?
-
hm.. lucky und beatz.. ihr kennt euch nicht zufällig privat? frag mich nicht, wie ich darauf komme.
-
findest du hier was? hab nicht genau nachgesehen, wegen werbung, etc. aber vielleicht hilfts erstmal.
-
.. mal den link dahin bitte.
-
der pfad zur "training_bt.asp" ist wahrscheinlich falsch. musst du den irgendwie in der file "training_registration.asp" angeben? vielleicht hast du die ordnerstruktur verändert, und deshalb spinnt das ding.. guck mal in diesen dateien.
-
haaallloooo..
also - zwar nicht der richtige bereich - aber finde, dass die blume des logos über dem header sein müsste.. so ganz intuitiv.
ansonsten nicht schlecht.
-
Code
Alles anzeigen<object id="mediaplayer" border=0 width="160" height="168" classid="CLSID:22d6f312-b0f6-11d0-94ab-0080c74c7e95" codebase="http://activex.microsoft.com/activex/controls/ mplayer/en/nsmp2inf.cab#Version=5,1,52,701" standby="Loading Microsoft Windows Media Player components..." type="application/x-oleobject"> <param name="FileName" value="Video Pfad"> <param name="ShowControls" value="1"> <param name="EnableFullScreenControls" value="0"> <param name="AllowChangeDisplaySize" value="0"> <param name="AutoStart" value="true"> <embed type="application/x-mplayer2" pluginspage="http://www.microsoft.com/windows95/downloads/contents/ wurecommended/s_wufeatured/mediaplayer/default.asp" src="Video Pfad" width="160" height="168" border="0" animationatstart="1" showcontrols="1" autostart="1"> </embed> </object>
object id - kann beliebiger name angg. werden
classid - identifiziert standardplayer
video pfad - logisch -
das geht, ja. aber du musst dabei trotzdem die proporzionen einhalten.. da muss man etwas fummeln.
-
"gif" ist, wie "jpg" auch, ein bildformat, was im web verwendet wird. das format sollte daher keine "rechtlichen" konsequenzen mit sich ziehen, solltest du es verweden..
wie ist die textpassage genau? (die, mit dem "gif")
-
-
machst doch nix falsch! habs mir angesehen und fand es ok. der rest kommt.. wie admin schon sagt .. irgendwann.
-
meinst du jetzt die zoll-größe des monitors oder die auflösung, die er fährt.. ersteres lässt sich nicht bewerkstelligen. beim zweiten wirst du woll verschiedene seiten basteln müssen, angepasst an diverse auflösungsmodis. davor schaltest du ne auflösungsabfrage..
-
Code
Alles anzeigen<script type="text/javascript" language="JavaScript"> <!-- var Vorgabe ="0:20" var Zeit =""; function Minuten(wert) { for (var i = 0; i < wert.length; i++) if (wert.substring(i, i + 1) == ":") break; return (wert.substring(0, i)); } function Sekunden(wert) { for (var i = 0; i < wert.length; i++) if (wert.substring(i, i + 1) == ":") break; return (wert.substring(i + 1, wert.length)); } function Display(min, sec) { var disp; if (min <= 9) disp = " 0"; else disp = " "; disp += min + ":"; if (sec <= 9) disp += "0" + sec; else disp += sec; return (disp); } function Down() { sec--; if (sec == -1) { sec = 59; min--; } Zeit = Display(min, sec); // statuszeilen-info window.status = "Fenster wird geschlossen in : " + Display(min, sec) + " s"; if (min == 0 && sec == 0) { // alert-meldung bei timeout hier deaktiviert //alert("timeout erreicht"); // schließen bei timeout window.close(); } else down = setTimeout("Down()", 1000); } function clock() { if (!document.layers && !document.all) return; if (document.layers) { document.layers.uhr.document.write("Fenster wird geschlossen in: " + Zeit + " s"); document.layers.uhr.document.close(); } else if (document.all) uhr.innerHTML = "Fenster wird geschlossen in: " + Zeit + " s"; setTimeout("clock()", 1000); } function zaehlen() { min = 1 * Minuten(Vorgabe); sec = 0 + Sekunden(Vorgabe); clock(); //min = 1 * Minuten(document.timerform.clock.value); //sec = 0 + Sekunden(document.timerform.clock.value); Down(); } // End --> </script>
benutze google..
-
wegen der filmrolle:
wie findest du die:
http://home.arcor.de/rayk.buergel/images/filmrolle.jpg
[Blockierte Grafik: http://home.arcor.de/rayk.buergel/images/filmrolle.jpg] -
oder meinst du weiße schrift auf weißem hintergrund??
kann ja sein.
-
-
du kannst eine externe seite zb. mit frames oder iframes in eine andere seite integrieren.
mit iframes wäre dir, denke ich, am besten geholfen.
den iframe bindest du in deiner inhaltstabelle ein. den iframe kannst du noch mittels css-tags formatieren.
musst aber bedenken, dass das board bestimmt so 600 oder 700 px breit ist.. musst du bei deiner tabelle berücksichtigen. -
also, ich hab da flash lieber. geht alles auch mit diesem programm. hatte swish mal kurz getestet, war nicht zufrieden. die resultate waren eher laienhaft.