Jump to content
xisto Community

kvarnerexpress

Members
  • Content Count

    413
  • Joined

  • Last visited

Everything posted by kvarnerexpress

  1. First of all, bear with me. Only on my 3rd week of java programming, so stupid error will occuor Lets start with the code in question: Code: public Matrix multiplyMatrix(Matrix B) { if(coln != B.returnRowlength()) { Matrix local = new Matrix(rows, B.returnColnlength()); int value = 0; for(int i = 0; i < rows; i++) // Controls row count { for(int j = 0; j < B.returnColnlength(); j++) // Control coln count { for(int k = 0; k < coln; k++) { value = value + (array[i][k] * B.returnValue(k,j)); local[i][j] = value; } } } return local; } else { System.out.print("Dimension does not match. Multiplay function cannot be executed."); } } The problem is within the: local[j] = value;I get this error message: array required, But matrix found local is an array, so why does it say array required? Thanks,kvarnerexpress
  2. Have been trying to solve this for a long time now, so I thought I´d give you guys a chance to break it! I want to remove an object from an array that I store in a Session object. I´ve written a function that takes an array and an id as parameters. Checks if one of the objects has the id I want to remove and then it´s supposed to remove it. Quite simple, that´s why I cant see why it doesnt work! Here´s the code: function Remove_prod($id2,$AL){print_r($AL);foreach ($AL as $prod)if($prod->id == $id2){echo "REMOVING!<p><p>";unset($AL[$prod]);}print_r($AL);return $AL;} I get the same data before and after the execution of the code. I know that the unset function is executed but no value is changed. So, what say you? Thanks in advance! kvarnerexpress
  3. I am writing a program that needs to read/write to blocks on a floppy disk. I am using two functions (written by someone else) that are defined as follows: Code: int WriteBlock(int index, BYTE *buffer, int count);int ReadBlock(int index, BYTE *buffer, int count); I am making a call to ReadBlock() as follows: Code: BYTE record_stream[512];ReadBlock(some_index,&record_stream,1); My problem is that when I compile I get the following error: Code: no matching function for call to `disk::ReadBlock(int, BYTE (*)[512], int)'candidates are: int disk::ReadBlock(int, BYTE*, int) Not having very much experience with BYTE streams I am just treating them like char arrays. My questions are: 1-Am I right to think of BYTE arrays as being similar to char arrays? 2-(more importantly)How am I supposed to properly send in a BYTE array to this function? Do I need to create the BYTE array on the heap possibly? Anyways, thanks in advance for any help. kvarnerexpress
  4. For the past month or so I have been putting up with what I think are corrupted files within OutLook Express running Windows 2000 Pro. The source of this corruption is my ISP's virus, spy, firewall, along with pop-up blocker etc. package, called FREEDOM. Not a bad package but definitely aggressive. I arrived at this conclusion after talking to my ISP and studying the NET. .... What takes place is this, I send an E-mail and at the end of that transmission, I receive an OutLook error window which states Some errors occurred while processing the requested tasks. Please review the list of errors below for more details. When you look below there are NO errors listed. Now, during this transmission, the E-mail was passed to the folder Outbox and transmitted from there but when the transmission is completed it is NOT removed, just stays there. If I leave it there and send another E-mail the same process takes place as when I sent the first E-mail but this time both E-mails are transmitted, sending the first E-mail a second time. And if I do not remove these E-mails from the folder Outbox they will be transmitted again with the next sent E-mail. .... Because of the corruption, I generated an additional (named) folder and transferred each E-mail after transmission from the folder Outbox to the additional (named) folder and limped along until I had time to study this situation. .... What I have tried and have been unsuccessful with this so far, I ran sfc /scannow which checked all my protected files, this did NOT resolve the issue. I proceeded to reinstall both OutLook Express and Internet Explorer through regedit per Microsoft KB, https://support.microsoft.com/en-us . This still did not resolve the issue. This particular KB 318378 was recommended for this task in W2k Pro even though it was written for XP. .... So, if anyone can shed some light on this or come up with good thoughts at this point they sure would be well appreciated Thanks,kvarnerexpress
  5. Hi everyone,The last 3 games I have purchased (Blood Rayne 2, Prince of Persia2, and now Dragonshard) all fail to load. When I try to load the game, the cursor changes to the game cursor, but the rest of the screen goes blank. Dragonshard doesn't eve get that far. It gives me the same problem, but in the installation screen.If I do a clean book, which is outlined here , the games seem to work.I was just wondering if anyone out there know which "background programs" might be doing this.Many thanks,kvarnerexpress
  6. I have an idea for an EXCELLENT resource for web designers/developers. I've been developping for the web for quite some time, and never have I seen this. If this exists somewhere on the web, PLEASE let me know...But here's my idea. Somehow get a copy of the install file for ALL the major versions of ALL the most popular available browsers out there. Then, have it all on one webpage so that people can download whatever browser(version) they want/need.The problem is, as you're writing and testing your code, you want to be able to say "it works in IE 5.0" or "it works in Netscape 3 for the Mac", etc. However, a google search produces no results for these browsers. You would think that netscape and IE would post these previous versions up, but I can't find them anywhere. They seem to want people to forget that older versions exist and just download the latest version!It would be so much more convenient to have all this on one page, so whatever platform/version you need to test in, you just download the install file and go from there.Does anybody know where I can find this kind of resource? Or if not, will anybody help me make this resource possible? I'm willing to post it up on a website if I can get people to find and send me previous versions of popular browsers.Thanks,kvarnerexpress
  7. I'm making a game server browser that, when loaded, runs through an array of IP's and sends a query to each of them - each of these IP's returns some data. When I receive this data, I want to parse it and store it in to the arrayI'm making a game server browser that holds all the game data in an array which is a custom data structure. The array holds information like IP, number of players, name of server etc.When the program loads, I want it to loop through the servers array and query all the IP's in there (the IP's are pre-set). The game servers will send back some data, which I want to parse and stick back in to the right array value corresponding to the IP (ie information like game server name, number of players etc).What would be the best way to do this? At the moment, when the form loads I've got it looping through the array and sending off the query string, but when it returns, how do I find the right array etc? Would I be best off to just make a function that searches the array for the IP that has been returned, find the matching array value and enter the data in there using that? Or is there a better method?Another problem I have is that the Winsock control will not only be used for handling the return of query data from servers - it may also handle other data such as login information. How would I go about telling the Winsock control what sort of data it should be expecting? What I mean is, if I'm logging in, when data is returned, I want it to validate the user, but if I'm getting server query data back, I want it to parse it or something.thanks,kvarnerexpress
  8. We have a client-server application. Iam trying to take a screenshot from the web-client (using Robot class) for which iam using signed jars. Everything works fine for me.But this requires java-plugin to be installed in the client browsers. This is a usability issue for me. I dont want to ask my customers to install the plugin.IS THERE ANY OTHER WAY TO TAKE SCREENSHOTS OF CLIENT MACHINE?We are stuck in solving this issue since two weeks, and still haven't got any clue about a possible solution.Any feasible suggestion would be of great help. Thanks.kvarnerexpress
  9. Hi guys, the best way to describe what i want to do is by example so..Say I got a database of people. Say the name of the site is peopledatabase.com(So when u minimise it the site in the taskbar says peopledatabase.com -Microsoft Internet Explorer). Now when i search the db and find a person, i want the name of that page to change to the name of the person found. i.e Information about John Smith - Microsoft Internet Explorer.At the moment the name is the same for every page, anyone got any ideas or examples on solving this problem plz?Many thankskvarnerexpress
  10. I'm looking for an easy to use file version control system for all of our web development files.We have been using Adobe?s Version Cue for our projects that utilize Adobe products and love it. The problem is that Version Cue only works with Adobe products.In essence we are looking for a Version Cue for ?everything else?.We?ve tried tools like CVS and Subversion, but those are very difficult, seem to require a high degree of specialized knowledge and are not user friendly.On the other hand Version cue offers most of the same features, but has a very simple yet powerful and feature rich GUI.We need something that is usable by our programmers and designers alike.Any thoughts or suggestions?kvarnerexpress
  11. I have written two programs. Lets call them MAIN and SMALL . Program SMALL is supposed to eventually go inside program MAIN. Problem is that if I put the code inside of it, it will be extremely hard to read. Can I just compile the program and run it from inside the main one ? I've heard that you could. Both programs use identical variables and I wrote it this way intending to cut and paste the code into the main one but if I can do this without cutting and pasting 150 KB worth of source code then I'd like to learn how. I'm coding in C++ and am using functions and pointers but I haven't learned classes or templates yet. The code from program SMALL is too big to make a function I think. What do you think I should do ?kvarnerexpress
  12. I've just performed a near-complete upgrade of my main computer. New mobo, processor, more RAM. I kept both my HDs and would like to continue using the Windows install I was using before. While I have definitely not passed the hardware test (Windows's way of making sure you haven't borrowed a friend's HD by checking to see if the hardware is the same as when it was installed) I've read that SP1 and up will let you boot into safe mode and reactivate.The way it is now, all I get is the Safe Mode/LastKnown/Start normally screen. If I choose anything, the system reboots.I googled this problem and it seems a "repair install" of Windows does the trick, however, I really don't want to clear the registry. Will it?If it will, does anyone know of a tool that will create a Windows registry backup from Linux? I've got a Knoppix CD lying around...hanks SO much for any help you guys might offer.HardwareAsus P5P800 moboIntel P4 640 (3.2Ghz) +HT2GB Kingston DDR400 PC3200 ValueRAMATI A-I-W 9600onboard sound, IDE, network2x250GB HDs, 1 WD and 1 HitachiOld hardwarePCChips M938Intel P4 2.8Ghz 533Mhz FSB1GB Kingston DDR400 PC3200 ValueRAMATI A-I-W 9600onboard sound, IDE, networksame hard driveskvarnerexpress
  13. I've recently acquired DelphiX and have gone through multiple tutorials on how to use it efficiently. However, through programming, I've come across code from a tutorial that was discontinued and I'd like to finish it for learning. The code's for an isometric tiling engine for a game, but the problem is that the FPS rate is EXTREMELY slow come rendering extremely large maps. It crawls at a rate of 5-7FPS, even on pretty powerful machines. (I'll include the code below.) Now, the code itself draws out at each interval of the timer (which I know is a bad way to do things) but there are animated tiles (6 frames each tile), so I don't know any alternative method to bypass the drawing of unupdated tiles. I know that it should only redraw when it needs to, but this is for a game so it should be redrawing quite often. I have looked elsewhere, but found no solutions and I have probed at the code for a few days now. Any suggestions/fixes/sample code would be nice. Code: unit uGame;interfaceuses Windows, Messages, SysUtils, Classes, Graphics, Controls, Forms, Dialogs, DXDraws, StdCtrls, ExtCtrls, DXInput, DXClass;const TileHeight=15;type TTile = Record TileImage:Integer; Marked:Boolean; end;type TTileMap = Record Map:array[1..50,1..50]of TTile; end;type TMainForm = class(TDXForm) DXDraw: TDXDraw; TileMaps: TDXImageList; DXTimer: TDXTimer; DXInput: TDXInput; Panel: TPanel; Markers: TDXImageList; procedure DXTimerTimer(Sender: TObject; LagCount: Integer); procedure FormCreate(Sender: TObject); procedure DrawTiles(StartX,StartY:Integer); procedure CheckTiles(X,Y:Integer; var XTile, YTile: Integer); procedure DXDrawMouseMove(Sender: TObject; Shift: TShiftState; X, Y: Integer); procedure FormKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState); private { Private declarations } public { Public declarations } end;var Frame:Integer; MainForm: TMainForm; Map:TTileMap; StartX,StartY:Integer; TileX,TileY:Integer;implementation{$R *.DFM}procedure TMainForm.DrawTiles(StartX,StartY:Integer);var PosX,PosY,LoopX,LoopY,XTile,YTile,NumOfTilesY,TileImage:Integer;begin PosY:=0; PosX:=1; NumOfTilesY := 0; for LoopY := 1 to 49 do begin NumOfTilesY := NumOfTilesY + 1; XTile:=1; YTile:=LoopY; for LoopX := 1 to NumOfTilesY do begin TileImage:=Map.Map[XTile,YTile].TileImage; TileMaps.Items[TileImage].Draw(DXDraw.Surface,StartX+PosX+LoopX*64,StartY+LoopY*15,Frame); if Map.Map[XTile,YTile].Marked then begin //Markers.Items[0].Draw(DXDraw.Surface,StartX+PosX+LoopX*64,StartY+LoopY*15,0); end; XTile:=XTile+1; YTile:=YTile-1; end; PosX:=PosX-32; PosY:=PosY+15; end; for LoopY := 1 to 50 do begin XTile:=LoopY; YTile:=50; for LoopX := 1 to NumOfTilesY do begin TileImage:=Map.Map[XTile,YTile].TileImage; TileMaps.Items[TileImage].Draw(DXDraw.Surface,StartX+PosX+LoopX*64,StartY+PosY+LoopY*15,Frame); if Map.Map[XTile,YTile].Marked then begin //Markers.Items[0].Draw(DXDraw.Surface,StartX+PosX+LoopX*64,StartY+PosY+LoopY*15,0); end; XTile:=XTile+1; YTile:=YTile-1; end; NumOfTilesY:=NumOfTilesY-1; PosX:=PosX+32; end; // draw map marker here, above all tiles... //Markers.Items[0].Draw(DXDraw.Surface,StartX+PosX+LoopX*64,StartY+PosY+LoopY*15,0); end;procedure TMainForm.DXTimerTimer(Sender: TObject; LagCount: Integer);begin if not DXDraw.CanDraw then Exit; DXDraw.Surface.Fill(0); Panel.Caption:='FPS: '+IntToStr(DXTimer.FrameRate) +' TileX: '+IntToStr(TileX) +' TileY: '+IntToStr(TileY); DrawTiles(StartX,StartY); DXDraw.Flip; DXInput.Update; { Check for mouse input here } If isLeft in DXInput.States then StartX:=StartX+16; If isRight in DXInput.States then StartX:=StartX-16; If isUp in DXInput.States then StartY:=StartY+8; If isDown in DXInput.States then StartY:=StartY-8; If (Frame=5) then Frame:=0 else Frame:=Frame+1;end;procedure TMainForm.FormCreate(Sender: TObject);var i,ii: integer;begin Frame:=0; StartX:=0; StartY:=0; for i := 1 to 50 do for ii := 1 to 50 do Map.Map[i,ii].TileImage := Random(16); // 0-12 DXTimer.Enabled:=True;end;procedure TMainForm.CheckTiles(X,Y:Integer; var XTile,YTile:Integer);var LoopX,LoopY:Integer;begin for LoopY := 1 to 50 do begin if (Y-((0.46875)*(X-StartX)+StartY+(LoopY*30))<15) and (Y-((0.46875)*(X-StartX)+StartY+(LoopY*30))>(-15)) then begin YTile:=LoopY; end; end; for LoopX := 1 to 50 do begin if (-(0.46875)*(X-StartX)+StartY+(LoopX*30)-Y<15) and ((-0.46875)*(X-StartX)+StartY+(LoopX*30)-Y>(-15)) then begin XTile:=LoopX; end; end;end;procedure TMainForm.DXDrawMouseMove(Sender: TObject; Shift: TShiftState; X, Y: Integer);begin Map.Map[TileX,TileY].Marked:=False; CheckTiles(X-96,Y,TileX,TileY); Map.Map[TileX,TileY].Marked:=True;end;procedure TMainForm.FormKeyDown(Sender: TObject; var Key: Word; Shift: TShiftState);begin if key = 27 then Application.Terminate();end;end. Note: I've added the onKeyDown method for exiting. There used to be two buttons on the form, but that messed the control up when it came to scrolling with the keys. Note2: If anyone knows how to scroll with the mouse, I'd really like to learn that. Thanks to anyone that helps! Kvarnnerexpress
  14. i'm trying to have a user input a number between 1 to 5, and that number will be the number of times the program will print out random 10 digit integers. Example, if user inputs 3, then the program will print out 3 random 10 digit intergers. Here's what i have so far Code: import java.util.Scanner;import java.util.Random;public class test3{ public static void main (String[] args) { Scanner scan = new Scanner(System.in); Random generator = new Random(); int n=0, times; String number = ""; System.out.print ("Number of times: "); times = scan.nextInt(); for (int i=0; i<10; i++) { n = generator.nextInt(10); number += n * times; }System.out.println(number); }} I tried multiplying it by "times" but it just multiplies that random 10 digit interger by whatever the number the user inputs for "time". Anyone know what i'm doing wrong? Thanks,kvarnerexpress
  15. As anyone who works with user input knows, not everyone who submits information makes it look proper. One one of my web forms, I parse all the needed fields that I wish to be title cased; their name, address, city, etc. I use this to perform this action, which works nicely: PHP Code: $string = ucwords(strtolower($string)); This fixes the input if the user types in all caps or all lowercase. There is a problem I have been noticing about those who enter a generation after their name, such as "Bill Warner III". The above function changes it to "Bill Warner Iii", which is incorrect. I have been toying with a regular expression to catch these I's (or sometimes V's) and turn them all uppercase, but to no avail. Here are versions of my non-working code: PHP Code: $string = preg_replace("/\b([IiVv])+\b/e", strtoupper("$1"), $string);$string = preg_replace("/\b([IiVv]+)\b/e", strtoupper("$1"), $string);$string = preg_replace("/\b([IiVv]+)$/e", strtoupper("$1"), $string) Thanks,kivarnerexpress
  16. I have read pages about creating a domain controller on the web, in books, and even in classes. They all mostly use some sort of domain name example such as "microsoft.com" or "contorso.com" etc.. etc.. These examples are used in diagrams and doing any type of lab.From time to time and very rarely, in books or on the web, I will see someone indicating that it would be best to use a domain name such as "microsoft.local" or ".lan" or ".office".Their reason is to keep public domain names separate from local domain names. In which case the local domain will be more secure from the outside world.However, bouncing back, I have see corporate diagrams that list their domain controller ".com" or ".edu".My question is this: if it is more secure to use an non-internet domain extension, why does it seem that not everyone or hardly anyone is using this method.Is it better in one sense to use a public extension and in another sense in using a private extension?And which method would you most likely would use; public or private domain extension?kvarnerexpress
  17. i have never tried to have files uploaded and i am still not able to do so. here is the codes that i am using right out of the php manual and it still isnt working. i have also listed the warnings/errors listed on the resulting page. my permissions are set to 777 also. i have a folder set up on my server as "uploads". i am however not sure if i have a default temp folder on my server. can anyone help me figure out what i am not doing correctly or what my next step is? this is the form that i am using: html Code: <form enctype="multipart/form-data" action="upload.php" method="post"> <input type="hidden" name="MAX_FILE_SIZE" value="100000" /> Choose a file to upload: <input name="userfile" type="file" /> <input type="submit" value="Upload File" /></form> this is the php page "upload.php" php Code: # #<?php#$uploadDir = '/uploads/';#$uploadFile = $uploadDir . $_FILES['userfile']['name'];#print "<pre>";#if (move_uploaded_file($_FILES['userfile']['tmp_name'], $uploadFile))#{# print "File is valid, and was successfully uploaded. ";# print "Here's some more debugging info:\n";# print_r($_FILES);#}#else#{# print "Possible file upload attack! Here's some debugging info:\n";# print_r($_FILES);#}#print "</pre>";# this is the resulting error: Code: Warning: move_uploaded_file(/uploads/golf.jpg): failed to open stream: No such file or directory in /home/jesokcc/public_html/upload.php on line 5Warning: move_uploaded_file(): Unable to move '/tmp/php72OLgu' to '/uploads/golf.jpg' in /home/jesokcc/public_html/upload.php on line 5Possible file upload attack! Here's some debugging info:Array( [userfile] => Array ( [name] => golf.jpg [type] => image/pjpeg [tmp_name] => /tmp/php72OLgu [error] => 0 [size] => 9802 )) Thanks,kvarnerexpress
  18. I'm writing a win32 console app and am about to implement an array of size 10,000,000 . Can someone tell me what this would do ? Would my memory be able to handle it or would it cause other variables to lose their value ? I may just end up writing the array to a text file and then just searching it when I need it but I would rather not if I didn't need to. Can someone tell me what the limit is ?kvarnerexpress
  19. My friend has a laptop running winxp sp2.he wanted to connect to the net using his cell and a GPRS connection.now, he gets connected, as in the two blinking comps show in the system tray.but nothing else happens. no webpage opens.i even tried a ping, tracert but no result.any ideas?kvarnerexpress
  20. I wrote this program which should have a menu bar. However, it does not appear. heres the code Code: import java.awt.*;import java.awt.event.*;import javax.swing.*;public class Desktop extends JFrame { public static void main(String[] args) { new Desktop(); } public Desktop() { super("Multiple Document Interface"); WindowUtilities.setNativeLookAndFeel(); addWindowListener(new ExitListener()); Container content = getContentPane(); //menu bar components JMenuBar menu; JMenu file; JMenuItem newWindow; JMenuItem close; menu = new JMenuBar(); file = new JMenu("File"); newWindow = new JMenuItem("New Window"); close = new JMenuItem("Close"); menu.add(file); file.add(newWindow); file.add(close); menu.setVisible(true); content.setBackground(Color.white); JDesktopPane desktop = new JDesktopPane(); desktop.setBackground(Color.white); desktop.add(menu); content.add(desktop, BorderLayout.CENTER); setSize(600,600); for(int i=1; i<6; i++) { JInternalFrame frame = new JInternalFrame(("Note " + i),true, true, true, true); frame.setLocation(i*50+10, i*50+10); frame.setSize(200, 150); frame.setBackground(Color.white); desktop.add(frame); frame.setVisible(true); frame.moveToFront(); } setVisible(true); }}
  21. This is what I have so far....a CGI form with many text areas that will correspond to Foxpro tables via ODBC. I have the tables pulling in with DBI and I can see the first row of data from the tables.Here is where I am getting stumped ! There are multiple tables with a common column, let's say for an example the common field is partno. What I want is the form to be able to have a forward, back, and search button to able to cruise through these tables. And of course whatever part number is up on the screen then have it linked to able to pull the corresponding fields from those tables. I know the fetchrow_array will go to the next row but how do you go back, heh ?These tables will not be added to or changed in any way by the program. The tables already exist and will change weekly.Thanks so much for any help, sorry I cannot post what I have so far. If you really need the code I can go and change some of the table names and such.kvarnerexpress
  22. I'm trying to send an attachment using the mail Php function. It gets caught by the email server with an error. It seems to have a problem with the separator or who knows what. The server says something like "invalid separator on mime type." The code is: Code: // subject $subject = "Hello There "; $mime_boundary = "<<<--==-->>>"; // headers $headers = "From: " . 'Tom' . " <" . 'texample@aol.com' . ">\r\n"; $headers .= "Return-Path: " . 'texample@aol.com' . "\r\n"; $headers .= "Reply-To: " . 'texample@aol.com' . "\r\n"; $headers .= "Content-type: Multipart/Mixed;\r\n"; $headers .= "Mime-Version: 1.0\r\n"; $headers .= "X-Mailer: PHP Mailer\r\n"; $headers .= " boundary=\"".$mime_boundary."\""; // message $message .= "This is a multi-part message in MIME format.\r\n"; $message .= "\r\n"; $message .= $mime_boundary."\r\n"; $message .= "Content-Type: text/plain; charset=\"iso-8859-1\"\r\n"; $message .= "Content-Transfer-Encoding: 7bit\r\n"; $message .= "\r\n"; $message = "Attached is the file "; $message .= "."; $message .= "\n\n"; $message .= $mime_boundary."\r\n"; $message .= "Content-Type: text/plain; charset=\"iso-8859-1\"\r\n"; $message .= " name=\"feedback.txt\"\r\n"; $message .= "Content-Description: Requested File;\r\n"; $message .= " filename=\"feedback.txt\"\r\n"; $message .= "\r\n"; $message .= $mime_boundary."\r\n"; $email = "dianne@aol.com"; // Send if (mail ($email, $subject, $message, $headers)) { echo "<script>alert ('Your email was sent. ')</script>"; } else { echo "<script>alert ('Unable to send your email.')</script>"; } I'm not trying to use the MimeMail class or anything since the version of Php that we're using is not supported by it. I'm just trying to do this using the mail function. The code seems o.k. when compared to others that I have seen. Can't figure out what's going on. Thanks in advance for reading this and any suggestion or solutions. kvarnerexpress
  23. Hey all, quick question.So, i'm doing a check inside a post page to see if a record exsists similar to the one the user is currently trying to input.What I want to do, is if a similar record is found I want to give the user a choice, to either click button A and continue processing the record, or click button B and abort.Now i'm not quiet sure how to do this, aborting the process is easy enough, but i'm not sure how to set a button inside the post page to basically say "if the user clicks this continue processing"Thanks,kvarnerexpress
  24. i have tried to install windows xp on my pc and i get an error right after it ask at the bottom of the screen to press f2 to restore an error pops up sayingFILE \$win_nt$.~bt\NTKRNLMP.EXE cannot be openerror 7setup cannot complete and has to closei have had windows xp on the pc before so i know its compatible but i used a different version of windows before ,this tinme im using a new one and i get this error i seem to find no solution anywhere about how to resolve this and I was wondering if possible theres something i need to do,I am not to smart with computers so it may be something obviouse.thanks hope someone has an idea what im talking about lol.kvarnerexpress
  25. i use 2 div's for the page layout. One for navigation and one for the contents. html Code: Original - html Code: <div width="10%" style="position: absolute; left: 2%;"> bbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbbb </div> <div width="86%" style="position: absolute; left: 14%;"> bbbb </div> But now the b's wont stay within their div-element. I want lines that doesnt fit on one line within the divto wrap to the next line. How can i do this? Thanks,kvarnerexpress
×
×
  • Create New...

Important Information

Terms of Use | Privacy Policy | Guidelines | We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue.