Troubleshooting sick Gateway NV series laptop Hardware and Software Hardware by centracare_Fl Symptoms: Laptop boots up and dies in about a minute User had previous trouble with keyboard and had removed and reinserted it before. First 20 seconds of boot attempt is met with that loud "stuck key" repeating sound. Removed keyboard. System began booting without sound, ran for a minute, shut down. Remove hard drive and CD rom. … Server / Core Dump error? Programming Databases by skullscript Hi Everyone Dont know if this is the right place to ask this but i Just wanted to consult anybody of you that might have an idea on what this core dump message means. Yesterday my website is down for almost 30 min and when i called the hosting provider support they told me that the reason of my page being down is one of my configuration / script is… I made a binary tree but it has some logic problem can some one point Programming Software Development by onus I made a binary tree but it has some logic problem can some one point [code=c] #include<stdio.h> #include<stdlib.h> struct node { struct node *left, *right; int data, color; } *root; int check = 0; typedef struct node tree; tree *create_node(int); void add_tree(tree *, tree *); void travel_tree(tree *); int main() { … Cannot construct correct XML file with Sax Parser Programming Software Development by vbx_wx This is how I want my XML file to look: [code] <root> <data> <track src="123456"> <desc id="1" mt="audio/mp3" ra="24" dr="221" nv="10005761">Madonna - La Isla Bonita</desc> <clipdata>PD94bWwgdmVyc2lvbj0iMS4wIiBlb</clipdata> </track> </… Run Time Errors Programming Software Development by arcticman452 My program compiles but when I fun it I cannot get the city from the JComboBox to show in my JOptionPane. It shows up as "null" and when I click the clear button, nothing happens. I'm not sure how to fix these two problems. Here is my code: import java.io.*; import java.awt.*; import java.awt.event.*; import javax.… Pass Multidimensional Vector by reference Programming Software Development by Talguy Last week I was goofing around with multidimensional vectors and removing an element from each row. I got my code to remove and element from each row working inside int main, but when I put all this code inside of a function I started to get errors. The common error that I am getting is [QUOTE] main.cpp:83: error: conversion from ‘__gnu_cxx::… Convert special characters javascript Programming Web Development by kardklub Im no good at javascript but i have a form with a field which u type in and it suggests customers from the sql db which matches the characters typed. The problem is i may have a customer with this 'good & small' which in my db looks like this 'good &amp; small' When i select it from the list of results it displays 'good $amp; small' (but … Matlab - Convert Matrix to List Programming Computer Science by pythonbegin Hi All I have a matrix in matlab say [CODE] a b c mn 0 2 4 nn 1 2 3 nv 2 3 5 [/CODE] I want to convert this matrix into a list so that a, b, c in first coulmn, mn,nn,nv in second and values in third like [CODE] a mn 0 a nn 1 a nv 2 b mn 2 b nn 2 . . . c nv 5 [/CODE] I tried reshape but its just cuts the … what is the problem of this Dijkstra code? Programming Software Development by behrad kiani i am working in Dijkstra code.which i want to get the vertexes from user by using Array list.but there is a problem in computepath method i can't solve it. [CODE] public static void main(String[] args) { Scanner input = new Scanner(System.in); System.out.println("insert the number of Vertexes:"); int nv=input.… Re: what is the problem of this Dijkstra code? Programming Software Development by behrad kiani i wrote down the whole program except of Vertex class [CODE]package dijkstra; import java.util.PriorityQueue; import java.util.List; import java.util.ArrayList; import java.util.Collections; import java.util.*; public class Dijkstra{ public static void computePaths(Vertex source) {… Drawing Polygon error Programming Software Development by Reeseoo Hi.. I have an image of what my code is drawing attached, although the code is meant to draw multiple trapeziums and now the extra line lol. I was wondering if anyone could tell me where i was going wrong. Here's the code.. [CODE]void DrawPolygon(POLYGON *p) { int current_Left, current_Right; float ytop,ybottom,xLeft,xRight; int top_Vert … Re: I made a binary tree but it has some logic problem can some one point Programming Software Development by onus Ok I took a pen and paper to understand the fault in my program my new program is [code=c] #include<stdio.h> #include<stdlib.h> struct node { struct node *left, *right; int data, color; } *root; int check = 0; typedef struct node tree; tree * create_node(int); void add_tree(int value, tree *); void travel_tree(tree *);… Re: I made a binary tree but it has some logic problem can some one point Programming Software Development by onus Ok I found the previous program were having problem in add_node function since after adding a node when it returns to the previous instance of add_node which called the current it goes down and checked if(v1>node->right) and if it exist it will create a node irrespective of the fact it has already traveled the tree once to add. You are … Re: I made a binary tree but it has some logic problem can some one point Programming Software Development by onus If I would have understood what to do why would have I posted here. [code=c] //This program is to create a binary tree #include<stdio.h> #include<stdlib.h> struct node { struct node *left, *right; int data, color; } *root; int check = 0; typedef struct node tree; tree *create_node(int); void add_tree(int value, tree *); void … error ! Programming Web Development by htcorp My code below don't show me any name and address (only show <d> ) : [CODE] <html> <body> <H1>Testing</H1> <table border="1"> <tr bgcolor="Blue"> <th>Name</th> <th>Address</th> </tr> <?php $db = array( array("Binladen&… Please, help! BSOD because of tcpip.sys Hardware and Software Microsoft Windows by atagaew Hi guys! I have really frustrating situation going with my computer. Almost every day my computer is going down with BSOD that saying that something is wrong with my Tcpip.sys. Googled for solutions for days, scanned for viruses with different programs, installed firewall, but nothing, nothing came out. Please, help! Below is detailed… Parsing text file works in windows compiler but not linux Programming Software Development by Uni616 Hey, I have to read numbers from a text file. Heres an example input: 6 8 1 2 10 1 3 9 2 3 7 2 4 2 3 5 5 4 5 3 4 6 8 5 6 4 The parser I coded works fine in NetBeans and Dev c++, however we are required to run it on a linux terminal also. Heres how the last column looks after I read it in from the text file in linux: 10 7 2 5 3 8 4 it seems to… noob and don't know what else to try! vb.net/web form Programming Web Development by kseling can anyone tell me why this is getting a runtime error? [code=html] <%@ Page Language="VB" ContentType="text/html" ResponseEncoding="windows-1251" %> <%@ Import Namespace="System.Data" %> <%@ Import Namespace="System.Data.Odbc" %> <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML… Pig Latin Programming Software Development by Ich bin würdig Can someone please check my syntax? Thanks. The program runs but the output has some kind of error. Thanks. [CODE] #include<stdio.h> #include<conio.h> #include<string.h> void Pig_Latin_Converter() { char str[50]; char nv[50]="yay"; char c[50]="ay"; char key[]="aeiou"; char keys[]="… Re: Pig Latin Programming Software Development by YAMNA MIDHAT [QUOTE=Ich bin würdig;1664322]Can someone please check my syntax? Thanks. The program runs but the output has some kind of error. Thanks. [CODE] #include<stdio.h> #include<conio.h> #include<string.h> void Pig_Latin_Converter() { char str[50]; char nv[50]="yay"; char c[50]="ay"; char key[]="aeiou"; … I Cant Install An Operating System! HELP! Hardware and Software Microsoft Windows by NeeDHelPBaD Hi, I recently put in a new motherboard into my second computer because the other one broke. Everything loads of fine and works, im using a Windows 98 boot disk right now. The only odd thing is that when booting up it cound NV RAM to 1300000 when I really have a 256 and a 128 block of SD RAM in the computer. I have no clue what NV RAM is I … Re: I Cant Install An Operating System! HELP! Hardware and Software Microsoft Windows by spikes Hey hey, Nv ram is non-volitile ram, its basicaly a new type of cmos, which stores all of the hardware config, that you set in the bios. to clear nv ram is a pain in the ass! i have found that you have to go into the bios turn on all the locks caps num and scroll and then press alt and E. however your board may have a set way of … Requesting Feedback on Custom PC Specs Hardware and Software Hardware by Kefka_X Hi guys, I've just gotten some specs sorted out for a new PC, and wanted to run it by a few people to see if they can spot any major issues with it. So without further ado, here are the specs: [B]CPU: [/B]Intel Core 2 Duo E6700 (2.67 GHz, FSB 1066MHz, 4MB L2 Cache, Socket LGA775) [B]Motherboard: [/B]Abit NI8 SLI (NVIDIA C19 Based Intel LGA775… Transfer files from ftp1 to ftp2 Programming Software Development by abc12345 I have written a shell script for transfering files from ftp1 to ftp2. In ftp1 there can be any number of directories,For eg under sourdedir (mentioned below)there can be any number of directories eg /opt/lampp/htdocs/scrap/test1/ under test1 1.7505-----1.zip 2.2505------2.zip In each of the subdirectories there wilI have written a … W2K Bsod problem Hardware and Software Microsoft Windows by hamis Hi,i get bsod's (mostly when closing program's,mostly games).Here is my memory.dmp: Opened log file 'c:\debuglog.txt' 0: kd> .reload;!analyze -v;r;kv;lmnt;.logclose;q Loading Kernel Symbols .............................................................................................................. Loading User Symbols Loading … ksh scripting Programming Software Development by StingRay411 I have found a script which does password changes on multiple machines without installing additional packages which is what I need. Problem is it uses telnet and ftp. I need to modify this to use ssh and scp. Any help greatly appreciated. Thanks #! /usr/bin/ksh # changepass --- change the user's password on a list of hosts… Check if date is valid Programming Software Development by j_rodwilliams04 Hello I'm in a begginer C++ programming class. I don't understand stand my teacher. I'm looking for some help with this program. Its suppose to check if the date is valid, if the date is valid it should output the, if not then it shoud automatically loop back to the begginning of the program. My problem is that even when the date is valid it still… Form Crapped Out... Programming Web Development by foundsheep My form was working fine in the past, and now it is not. I'm not sure why. I've been through the code several times and have yet to find anything. The form posts with the general error that is in the code. So, something is breaking, but I'm not sure what. Form code: [code] <form action="contact_process.php" method="post&… ASP server side validation: Retaining form selections after posting Programming Web Development by cmoc i am new to asp and would much appreciate your help with my problem. i am trying to retain the selected "state" input from my form's drop down menu after it is posted and then gets returned to the form page for incorrect or additional input on the form. Presently, the input the user selected disappears when redirected back to the form.… Form Validation-Alert box Programming Web Development by pletch99 I'm having trouble validating my form for missing information. Tried many different functions but when submit the form it will reset the form or it will try to send it. I'm lost any help please. Thanks in advance [code=syntax] <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-…