7,713 Topics
![]() | |
how can I set custom no of records to display in datalist view....tq | |
Hello forum, I am not skilled in php. A novice. I have a Joomla site and the front page is blank. After inserting a code given to me to reveal the error for the white screen. This error message is now showing. I have no idea how to correct this … | |
ok so im working on a application that displays the charges along with displaying the zip code. I seem to have a IO exception error for the console.clear() line. Is there anything else I need in order to display the charges along with zip code? Im thinking a nested if … | |
Simple question, I'll take NO for an answer if it's not possible. With a random array, can I display the results multiple time on the same page. I know I can't use css, and I would rather not use php... but is there a way for me to list the … | |
I am trying to develop (on c#) a Point of Sale program(deployed on machine 1), with integrated kitchen display system(deployed on machine 2). I pretty much have an idea how to develop the individual programs, however, I haven't tried integrating thee machines (to function as one) before. Here's a brief … | |
i am calculating some expressions and the result of these expressions is a DOUBLE type value , i am storing this result into a double type variable called Sum . now i want to write this value of Sum into the Edit Control of a Dialog Based MFC application . … | |
Dear all, Context: JSP I'm trying to get the value of a java variable and assign it to a javascript variable in order to later on use it in an iframe: [CODE] ... rs.next(); entry1 = rs.getString(3);%> <SCRIPT> [COLOR="Red"] var tt="<%=entry1%>";[/COLOR] [COLOR="red"] var content = "<html><body>" + tt+ "</body></html>";[/COLOR] var … | |
Hello. I'm currently a 10th grader who's been sitting in front of the computer for hours trying to figure this assignment out. First, my teacher gave me a reverse integer problem. He wants us to reverse the numbers `12345, 10001, 1200, and 5`, and display in in the output. The … | |
hi, i need to display a confirmation message box at timmer tick event. i wrote the below code 1. [COLOR="Green"]ScriptManager.RegisterStartupScript(this, GetType(), "Timmeralert", "if(Confirm('Are you sure want to extend time?') == true){return true;}else{return false;}", true);[/COLOR] 2. [COLOR="Green"]ScriptManager.RegisterStartupScript(this, GetType(), "Timmeralert", "if (window.confirm('Are you sure You Want To continue?')==true) {return true; } else … | |
i got a problem whenever i give the username of less than 4 character in java GUI then tha userlist from python server is regularly updating my UserList textField in JAVA GUI but when the character exceeds more than 3 that UserList textField is not updated rather the user list … | |
I want display 1 record become 4 record for print label purpose. For Example, Model A quantity is 100 pcs, every package only can 25pcs. so I want display as attach picture in datagridview in C#. quantity records is based on Quantity / ItemPerPackage. | |
Hi I am using the fallowing code to give some information back to the user after running some queries. The information will be displayed in row only. [Code] $result1 = mysql_query("SELECT * FROM bookings WHERE bookingID='$last_insert_booking_id'"); echo "<table border='1'> <tr> <th>ID</th> <th>Firstname</th> <th>Lastname</th> <th>address1</th> <th>address2</th> <th>town</th> <th>postcode</th> <th>telephone</th> <th>email</th> <th>Arrival</th> … | |
Hello DaniWeb, it has been a while since I have asked a question here so I thought now would be a great time to do so. I am creating an application that loops through the file names of a specific directory, in this case, the System32 folder. I want the … | |
I'm trying to implement priority queue using a singly linked list, but the program is not running in the best way, n the display function is showing just first n last node's data , y??? [CODE]#include<iostream.h> #include<conio.h> struct node { int n,p,b; // Data members for getting Task no. ,Priority … | |
Hey guys, I'm here to ask you a question. I have a constructor to get the highest ID (first int) from my Employee data file (int string string string int double), but I have no idea on how to actually display it within my JTextField, with a +1, so I … | |
i have search page to search by title, author, isbn from the dropdown list. But when they display the result for my search, it unable to retrieve my other data from my table (product4) like the price. it shows this error below Notice: Undefined variable: price in D:\xampp\htdocs\book\search.php on line … | |
[CODE]#include<conio.h> #include<iostream.h> void main() { clrscr(); long input,negaAr[10],posiAr[10]; for (int x=0;x<10;x++) { cout<<"enter:"; cin>>input; if (input<-1) negaAr[x]; else if(input>=0) posiAr[x]; } cout<<"positive:"<<posiAr[x]; cout<<"negative:"<<negaAr[x]; getch(); }[/CODE] i dont whats thee problem of this, ihave to input 10 integers and display the number of positive and negative. | |
Please i need help am newbie in asp, am trying to code a login page in which after user login all the user information will display in the success page i tried the following code but am not getting result. help me out pls member.asp <%@LANGUAGE="VBSCRIPT" CODEPAGE="1252"%> <%option explicit%> <% … | |
Hi, I'm having a problem with my Dell Vostro 17000 laptop (Vista). Basically it starts and sounds as though it is starting normally (the little webcam light flickers etc exactly as it does normally) but instead of taking me to the login screen I just have a black screen and … | |
Is there a way to keep the computer from going to sleep mode so I can technically use it as a desktop? I mean, having the laptop hooked to an external keyboard and monitor but with out the computer going to sleep mode when I bring the laptop's screen down. … | |
I have a Viewsonic LCD monitor lying unused for some time now. Today when I connected it, its showing a block of vertical lines which makes it almost impossible to use. Here's the pic: [url]http://img831.imageshack.us/img831/3962/29122011338.jpg[/url] I used VGA cable to connect as I have no DVI cable. I use the … | |
Hiya. Sorry this is my first time posting here so if it is in the wrong section plz understand I'm posting here because of a monitor problem (yes, it is DEFINITLY a monitor problem) I got a new pc bout 6days ago and everything worked fine then at random times … | |
Hi, I need to have two pieces of software, made in vb where one encrypts the contents of a .txt file, and the other decrypts it, and then picks one word at random and displays it each time a button is pressed, but never displays the same word. Or, if … | |
I purchased a new graphics card to replace my old 32mb Geforce 2 MX which was working just fine for an oldie. I bought a 128mb Geforce FX 5200 I installed it, and it works ok with certain games like EA Games Alice, But when I try to play Sims … | |
i tested the following code as my teacher told me but it wont do what i want it to [CODE] vector<GameObjects*> blockers; blockers.push_back(new Wall(pictures,i,j)); vector<GameObjects*>::iterator k = blockers.begin(); for(;k != blockers.end(); k++){ cout << typeid(**k).name() << endl; } [/CODE] what i want to get is "Class Wall" but i only … | |
I have a problem with a Sony Vaio all in one desktop model number PCG-252L. Whenever I boot it up it briefly flashes the Sony logo for a second then quickly turns to black as if I turned the monitor off. The strange thing is that when I actually press … | |
i installed battlefield 1942 and when i click to play the black screen with battlefield shows up on the desktop then in a few seconds it goes black and a message box comes on that says "input signal is out of range please change settings to 1280 x 1024-60hz". my … | |
Is there anyway we can clear only a selected part of the console window? clrscr() from conio.h & system("CLS") clears the whole screen. So how to clear screen selectively? For example, one of my old code prints this, [ICODE]Enter the limit for the array size (Max: 20) 10 Enter the … | |
How to display data in datagridview starting from the record which we pass at runtime? In C# For example, there is 10 rows in a table. When i run the app i'll pass 5th record's value so it should show all data of table starting from 5th row. | |
Hello all, I'm a PHP newbie and have my apache Server and PHP in place. I have been able to run simple programs that work well. However, since then when I do "http ://localhost/filename.php" I either get 2 messages. 1. An error message if there's an error in my code … | |
please help me. i dont understand this: Create routine to display * based on AL w CR AL=07 CALL 120 & RET output: ***** my professor said cr is call routine, that's all, he didnt tell us what does that mean help me please | |
Hi all. I am seeking a little advice regarding my Dell Studio 540 which over the past few days has developed a hardware fault. When I turn the unit on I receive a series of 8 beeps and the screen remains blank. Following the beeps, the unit makes all the … | |
hello everyone, My friend gave me this great E228WFP monitor.But it has this inch wide horizontal line in it. [url]http://img854.imageshack.us/img854/5610/img00009201201082021.jpg[/url] [url]http://img542.imageshack.us/img542/8313/img00008201201082020.jpg[/url] [url]http://img820.imageshack.us/img820/963/img00007201201082020.jpg[/url] As you can see, line is bit transparent. I am pretty sure its technical issue, i still can dark line even after i turn it off. My question … | |
Ok, for once I have a question rather than a possible answer... My client's laptop is an old HP Pavilion ze4600. When he brought it in, the LCD light was on, but the screen was black. I assumed it had crapped out trying to resume from hibernation. I hard-powered down … | |
![]() | Hi everyone, I hope you can help me with this. I have everything in my code working properly except for the fact that the payment amounts are being displayed in the command window and I need to display them in the text area, as well as adding scroll bars to … ![]() |
i am currently trying to add a uploading/scanning screen to my file upload site, (just to be clear i need the 'design' part of it, like actually displaying the box not anything to do with the scanners, or implementing the scanners, just a box that says scanning with a scanning … | |
Hi all, I'm new to PHP and was wondering if someone could help me... I need to write something so that when row "expire" (this is the date the account expires) is 5 days from expiring, a message shows up. I can format everything myself, I'm just drawing a blank … | |
Hello, and happy new year first of all. What I am trying to do is make a program that according to the values the user inputs then displays a polynomial. The forumla for the polynomial is this: [code]float par(float x) //H timh ths synarthshs sto shmeio Xo { float tel=trap[0][1], … | |
I just built this PC and everything seems to be running fine, well as far as i can tell without being able to see anything on a monitor. The fan on the graphics card is spinning but when I plug the monitor I cannot get a signal. I cannot plug … | |
I am trying to create a countdown timer using the javax.swing.Timer class. In order to display it I am only allowed to use javax.swing.JFrame and javax.swing.TextField classes. Well my Timer works as I expected. But I have trouble when I am trying to display it in the JFrame. It appears … | |
Hey guys, Basically i want to create a database in Access 2002 that will hold names of functions of a mobile phone. When the user enters a search the databse should query the information held within it, display the appropriate search results. It should be able to serach for precise … | |
Hello all . I am working on a small search for my website. It requires that i query the database and then display search results. In my database i have multiples. For example john on one row and john on the other. I want to display both of them. For … | |
I have been trying to display form as taskbar but don't know how to! Is there any form property available to do so? The form will be permanently located either at top or at bottom of desktop. for eg: In (image) at the top the form is located and the … | |
Widows Vista screen on, no image or sounds. Hard boot used to work. (I've heard powering a computer off that way is not good?) Followed cumulative advice: 1. VGA chord worked. For some reason, images showed up on my monitor/television. 2. I remembered to count the tabs (1 and enter, … | |
hello everyone, I am making a job portal site. the job seeker in my site enters his date of birth by using three drop down lists (date,month,year). this value i concatenate and insert into database as (1990-09-28). when the user presses the edit button , i want to retrieve this … | |
ello.. i cannot display the video or audio that i already upload in database..why and how should i do?? | |
I have a Windows 7 Home Premium OS on a brand new ASUS (the G74Sx - Gaming series). For the first two months, the login was pretty much instantaneous. Recently, It has become very erratic. When I turn it on, the login screen loads fairly quickly (10s). After I type … | |
[CODE]#include<iostream> #include<fstream> #include<string> #include<vector> #include<algorithm> using std::cin; using std::cout; using std::string; // clothing codes struct codes { char code; const char* explanation_1; float total_sales; }; codes CODES[]={'A',"BABY WEAR",0.0F, 'B',"CHILDREN WEAR",0.0F, 'C',"LADIES WEAR",0.0F, 'D',"MENSWEAR",0.0F, 0,NULL,0.0F }; struct RECORD { char category; int item_number; float price; }; const string filename="jualan.dat"; int menu(); … | |
![]() | Can anyone help me to display the data retrieved from SQL server in text area of html in C# |
I have a code to trim the long word for the specific length and replace it with '...' but, it has a problem, where, if user's name dont have space, its will look wierd.. heres the code: [ICODE] <? function truncateString($string, $length, $append = '...') { $length -= strlen($append); // … |
The End.