460 Topics

Member Avatar for
Member Avatar for ShadowScripter

Hi, I've noticed some websites don't display their content until everything's been processed, downloaded and ready for render. The result is images [B]DO NOT[/B] render after download, so there're no images popping up everywhere on the page while the page is processing its next request, but wait until it's done …

0
136
Member Avatar for curbster

Hi I'm in my first Java class, towards the end and am struggling with some code dealing with arrays. I'm not looking for the answers but am spinning my wheels (as usual) and am stuck on a particular problem. I'll list the problem here and then explain where I am …

Member Avatar for Akill10
0
12K
Member Avatar for AdriftUniform

Hi, I have created a system where users can follow another user, I am currently querying the table to display who is following who. I have two queries as shown below: [code=php] // followers query $query = "SELECT * FROM friends WHERE friFriend='$view'"; $result = queryMysql($query); $num = mysql_num_rows($result); // …

0
108
Member Avatar for Emonk

Hi all, I use the code below, and it's my idea it will give me on my LCDisplay the letters "Camil" (and yes, that is my name) All the first subroutines i just copied form [url]http://home.iae.nl/users/pouweha/lcd/lcd2.shtml[/url] - it has to work. From label start i did make anything myself. I'm …

Member Avatar for alphahr
0
163
Member Avatar for stefilina

hy, i'm new in .net -c# and I have a problem.I have a database with a field where is a long text, for example a description for a product.Well, i want to create a form where where i select something from a listbox, for example the name of product, i …

Member Avatar for stefilina
0
154
Member Avatar for icasta13

could someone help me, i dont know how to show the results... [CODE]#include <iostream> #include <fstream> using namespace std; int ReadList(int Array[], int N) { int list=0; for(N=0; N<10; N++) { list= Array[N]; } return list; } void Avgs (int Array[], int N, int &Ave, int &AveP, int &AveN) { …

Member Avatar for icasta13
0
271
Member Avatar for takken1

I am trying to create 2 different rendering windows using OpenGL. My code looks like: [CODE]void display1(){...} void display2(){...} void init(){... //some declarations and function calls pertaining to display2} int main(){ glutInitDisplayMode(GLUT_SINGLE | GLUT_RGB); glutInitWindowSize(1024,512); glutInitWindowPosition(0, 0); glutCreateWindow("Window 1"); glutDisplayFunc(display1); glutPositionWindow(520,20); glutCreateWindow("Window 2"); init(); glutDisplayFunc(display2); glutMainLoop(); return 0; }[/CODE] The …

Member Avatar for SgtMe
0
88
Member Avatar for Dean_Grobler

Helew! I just wana know if someone might have an idea of how I can go about doing this: So attached I have a little example I whiped up. Say you have 3 buttons, button1, button2, button3. What I wana do, is when you click [B]button1[/B], it will magicly turn …

Member Avatar for javaAddict
0
111
Member Avatar for jmcdyer

When loading up any browser, all the text and pictures display normally, but the graphics buttons and pointers and outlines etc. do not show up. It must be a problem independant of the browser. All other programs display correctly. I was using an nVidia gForce 6100, but just tried changing …

Member Avatar for dartz
0
617
Member Avatar for puretnaant

Hi, Im trying to run this program using dynamic memory i cant seem to get it to keep running it crashes on me. I have the working program so the code is correct im just haveing trouble trying to convert it correctly. Thank You, [CODE]#include <iostream> #include <fstream> using namespace …

Member Avatar for daviddoria
0
164
Member Avatar for sirlink99

my webpage is not displaying correctly in some of the browsers like firefox, chrome, opera and safari; yet it dispays fine in explorer, avant, maxathon. how could I fix this. the only problem is that the second background doesn't go under all of the text. here is the code: [code] …

Member Avatar for Arkinder
0
207
Member Avatar for matcee

A friend brought me their computer hoping I could fix it. No signal to the monitor. Tried new video card, did not help. Since Acer used a 250 watt power supply to run a 2ghz, 2 gig Ram, duo processor, I considered that perhaps the power supplied might be enough …

Member Avatar for Rik_
0
385
Member Avatar for morewater14

Hi, I have a project to do for a C++ class that asks us to use a class termed "queue" to store some values (20/100/user defined) and allow the user to add/remove values. I'm sure it seems really basic, but I just can't get my code to display the class. …

Member Avatar for Fbody
0
180
Member Avatar for pomp006

Hi, I am looking for a hardware/software solution to enable a single computer to output display to a matrix of 9/12/16 LCD monitor or TV screens. Thanx in advance.

Member Avatar for pomp006
0
275
Member Avatar for Elehas

Alright I have a major issue here that has stumped me all weekend. A site i'm working on displays correctly in firefox but incorrectly in Safari, Chrome and IE. Don't worry about Internet Explorer. Weird thing is how it is displaying incorrectly. When you click on content or a link …

Member Avatar for teedoff
0
134
Member Avatar for Kniggles

[CODE]<?php // open base $con = mysql_connect("xxxxxxxxxxx", "xxxxxxxxxxx", "xxxxxxxxxxxxxxxxxx"); if (!$con) { die('Could not connect: ' . mysql_error()); } mysql_select_db("xxxxxxxxxxx", $con); // open table $result = mysql_query("SELECT * FROM leader"); // print table & column headders echo "<table border='1'> <tr> <th>id</th> <th>Club</th> <th>Website</th> <th>Club Badge Url</th> </tr>"; // get data …

Member Avatar for Kniggles
0
209
Member Avatar for Gavicoind

When I view my website, it properly displays the header, nav, and footer. But it doesn't display the main section of the page. My domain is gavicoind.com Thanks for your help!

Member Avatar for Gavicoind
0
132
Member Avatar for aviavyne

Recently I was assigned to create a program driven by a main menu, followed by a submenu, followed by functions. Below is an attempt of mine, which does display the main menu, and from there a user must enter a value to proceed to a second menu, however it doesn't …

Member Avatar for Fbody
0
301
Member Avatar for hermanSA

Hi all, Im busy with a community section for my site in "forum style". Lets say i have 3 columns to display - Topic - Views - Last Post by I want to display 10 rows per page and lets say I have 54 records. Now i will display: "1 …

Member Avatar for hermanSA
0
180
Member Avatar for kashif farooq

[B]Pagination in PHP (New help) display page wise results, CAN U DO IT... FOR ME... [/B] :) There are tons of pages, I'm not in favor of the display page numbers in PHP like that << <1 2 3 4.... 100 > >>. I like the drop down menu for …

Member Avatar for hielo
0
92
Member Avatar for PhilEaton

Hey, I'm trying to make a way for the user to click a link in an email agent and the submit button (previously hidden by css) and it then becomes unhidden. [code=javascript] function showSubmit() { var submit = document.getElementsByName("submit"); if (submit.style.display=="none"){ submit.style.display="inline"; } } [/code] Then the html: [code=html] Click …

Member Avatar for PhilEaton
0
127
Member Avatar for PhilEaton

Hey, I'm trying to find any tutorial on taking user inputted text and displaying, on that page or another. I know how to upload a file, or provide that service to the user so I figured it might be similar, but I couldn't find any help on this scanning google. …

Member Avatar for PhilEaton
0
140
Member Avatar for samarudge

So I'm trying to get 3 DIVs to line up as columns horizontally. I've got it to work in some browsers but not all. It's supposed to look like [IMG]http://www.cake-spoon.com/wp-content/uploads/2010/08/Screen-shot-2010-08-25-at-11.46.10.png[/IMG] However in some browsers it looks like [IMG]http://www.cake-spoon.com/wp-content/uploads/2010/08/Screen-shot-2010-08-25-at-11.46.30.png[/IMG] The code I'm using (Stripped of all the crap) is [code=html] <div …

Member Avatar for hielo
0
123
Member Avatar for python user

I have this pink horizontal line that keeps appearing across my display when logged in my computer, starting up, and even when shutting down. I was playing a computer game(in full screen) and when my computer went into sleep mode the game froze. So, when I force quit out of …

Member Avatar for Computer-Crash
0
562
Member Avatar for doctorphp

Hi All. I am trying to display images using the while loop but I want the pictures to be displayed like this. [ATTACH]16585[/ATTACH] The only thing is, I don't know how to do it. Any help would be much appreciated. Thank you in advance Cameron

Member Avatar for dev.vini
0
7K
Member Avatar for nv136

Hello, everyone. I have a small program, and i want that program to show how much RAM the whole system is using, and i want it to show how much R.A.M my program is using, any ideas on how to do that? is it hard?

Member Avatar for nv136
0
136
Member Avatar for udaraps

Hi all im doing a project on bed ordering system. There i'm using some text boxes to display the selected bed item's description ( like manufacturer, size of bed & price of bed). When the user input the value for the quantity text box & click on the add button; …

Member Avatar for abu taher
0
102
Member Avatar for EricMack

[ATTACH=right]16413[/ATTACH]A former sales director with the Taiwan-based Chi Mei Optoelectronics Corporation has entered a plea-bargain in a San Francisco Federal Court related to charges of participating in a global conspiracy to fix the price of thin-film transistor-liquid crystal display (TFT-LCD) panels, according to the [URL="http://www.justice.gov/atr/public/press_releases/2010/261080.htm"]Justice Department[/URL]. Under his plea agreement, …

0
329
Member Avatar for kdgeiger

Ok, I did search on this site and found nothing that really helps with my issue. I am doing assignment - JPartyPlanner - I have the applet complete, it compiles and shows in IE great, BUT when I add the image code it still compiles but I get nothing showing …

Member Avatar for kdgeiger
0
188
Member Avatar for kdgeiger

I have completed my applet code and it compiles fine - when I try to open it in explorer I get my welcome message but the applet does not fully open - all I get is the little box with the red X in top left corner. Help! Here is …

Member Avatar for kdgeiger
0
165

The End.