7,713 Topics
![]() | |
Hi How can add display data from 4 variables in a dynamically created textbox which is inside dynamically created table, row and cell here is the code which is working fine and adding text also at the time of textbox creation but I want to add different variable values in … | |
hello i want display ( topic and author and date ) if user choose then click "save " how can do that ? this is my code: <?php $con=mysql_connect("localhost","root",""); if(!$con) { die('can not connect'.mysql_error()); } mysql_select_db("scms", $con ); $result = mysql_query("select * from others"); $num = mysql_num_rows($result); $row = mysql_fetch_array($result); … | |
hello :) please I need your help :( give me small example can do this: how can display information in page if selected ,,, look at this picture  | |
Hello. I received great help from this community a while back with a problem, and now I'm desperately in need of help again. I've done several google searches, and I've found my problem listed, but none of the solutions have worked. I hope this in the right forum, as I'm … | |
I attempted to get the records from the MySQL database and display it on a Grid View but nothing appeared. The code is below: MySqlConnection myconn = new MySqlConnection("server=localhost;user id=root;password=db;database=workers;"); // myconn.Open(); string strSQL = "select * from details"; MySqlDataAdapter mydata = new MySqlDataAdapter(strSQL, myconn); MySqlCommandBuilder cBuilder = new MySqlCommandBuilder(mydata); … | |
Hello everyone, i am facing a problem with turbo c, when i complie and run the program, the screen just shows a blank black sreen, nothing is executed. you press any button on keyborad, the screen returns back to the editor mode. No program is getting executed, Found no errors … | |
My laptop turns white color with small line, while i switch on my laptop, the screen turns white color with small lines and i can't continue further laptop model:dell inspiron 1545 | |
I have a 2 month old HP Pavillion G6 and it turns on fine and i can log on and every thing but it keeps randomly making a beep sound and then the screen turns black, the computors still on but the only way to get my screen back on … | |
Hello, I am trying to write a simple program which should read the first line from the file s1, and display it. When I run it , I get the message cannot implicitly convert 'System.IO.Streamreader 'to 's1.Program' which happens for the line Program re = new StreamReader("s1.txt"); using System; using … | |
![]() | Hey all! I have to come up with code for taking the contents of an input box on my webpage, use that as the name in my script and then display a message based on the time, say "Good morning Dave!" if it's between 5am and 12pm. I have all … |
hello every one i trying to display image in jsp by using following code <% System.out.println("from the view page"); String imagePath =(String) request.getAttribute("path"); System.out.println(imagePath); %> <img src="<%=imagePath %>"/> variable imagePath shows the correct path where imge is store but it doenot display any image please suggest me some way to … | |
I have this function, which sends an email to the user and confirms an order. I cant figure out why I cant get to display the image IN the email, at the very top. I have tried with: `"Content-Disposition: attachment; filename=\"mail-top-img.gif\""` And `"Content-Disposition: inline; filename=\"mail-top-img.gif\""` Both sends the mail as … | |
I have a webpage that allows 3 users to login and vote, at the login page it displays the 3 users however ive to change the following code so that at the login page it will only display the users who haven't voted yet. What do i need to change … | |
I am trying to create an oval shape using Netbeans but the oval shape never draws itself. Here is the code : /* * To change this template, choose Tools | Templates * and open the template in the editor. */ package learn; import java.awt.Color; import java.awt.Graphics; import javax.swing.JPanel; /** … | |
i want to display data from mysql database in table form on the web page . Ex. - If there are 100 entries in the database then only 10 entries can be displayed i should be able to use 'next' and ' previous' buttons to display consecutive data tables containing … | |
so heres my code [CODE] import java.awt.*; import java.text.*; import java.util.*; import java.util.List; // Explicit import required import javax.swing.*; public class Sort { public static void main(String args[]) { Runnable runner = new Runnable() { public void run() { String words[] = {"Sean", "Beth", "Ryan", "Bree", "Jim", "Bob"}; List list … | |
![]() | Im creating a community website and have a little problem working out what my if statment should look like. there is a default profile image and the one that is stored in the users directory. so basically i want to display the image which is in the users directory, but … |
Hey fellow members! I have a question on which I want opinions instead of having a technical information overload for dummies. I recently bought new components to build a brand new computer under a certain budget. I wasn't planning on getting a great video card for it but eventually settled … | |
Hi all, i am using vb 6.0 and oracle sql*plus ...........i need the code for ....when the car name is selected in the combo box it's corresponding purchase cost should be displayed in the text box..........and i have connected this to the database through ADODC connection pls help me ASAP … | |
i've been using computer about 3 years.And then suddenly my screen become like this while i was playing warcraft .[ATTACH]24166[/ATTACH] Is my graphic card crash or something ? please help ASAP . Thank you | |
Hi all, For starters,i have looked at other forum posts on this site and used the recommendations there for this problem I have and no solution had seemed to help. I have a dell xps m1530 laptop, about 2.5 years old. It has handled very rigorous situations, like intense gaming, … | |
using the java swing how can i put a background image to my application in a way that the image will cover the frame . [B]ps [/B]: I'm new to the java so maybe my question is a silly one but i will appreciate any help . | |
i dont know if i placed it in the correct category,but im puzzled because my computer after startup doesnt have the icons only the wallpaper.. what the hell just happened? | |
So I was assigned the task of displaying all numbers divisible by two, five, and every third number in a range which I'm sure you can see how I did that. However I am having trouble as I was asked to use while loops, and I would also like to … | |
Do anyone could tell me how to display the date from the sql to a jtable? ![]() | |
Hi all, I am fresher in asp.net. I have entered values in text box. when i clik OK button, values of text box should be displayed in Grid View.after that if i click on save button the values in grid view should store in sql server(backend),also insert, update ,delete operations … | |
First of all I've never posted on one of these before so hi there. Second hopefully somebody can help me. I have a Mitsubishi Diamond Pro 930 SB monitor running on an NVIDIA GeForce 5600 in XP. The monitor has developed a fault where is is now covered by sort … ![]() | |
Hello, I have one dataset as one arraylist. In that the columns values are in string as high, low, medium.. so how i display that values as string in c or java? pl reply me | |
$dbQuery="select id, name from artists where name like '$keyword%' order by name asc limit 15"; $dbResult=mysql_query($dbQuery); echo mysql_num_rows($dbResult)."\n"; while ($dbRow=mysql_fetch_array($dbResult)) { // for each artist, return the number of albums belonging to that artist // use a separate query here to obtain the number // return the number after the … | |
Having trouble getting the QuickSort to work in this code. I turned off the counter for now, just trying to get the sorted array to display correctly. This is the results I get from the code: This program keeps track of the number of comparisons required to to sort a … | |
Hello everybody I Have a doubt i have created an application in VS2010 for windows application i have used form1 in form1 i used a button, onclicking on to the button it will load a second form ie.. form2 in which image is added the overall situation is when i … | |
Hi i need to make a method that does the example below if the array contains these number -12 3 -12 4 1 1 -12 1 -1 1 2 3 4 2 3 -12 The output should be: N Count 4 2 3 3 2 2 1 4 -1 1 … | |
but what i want is when i create a application1 in application1 i have form1 in which a button i have added, on clicking a button i'll get a form2(which is having a image) and i published that application1(means generated Setup file ) and i installed in the system, when … | |
The program has no errors and when ran will show the logo, buttons but not the inventory data. I have been working on figuring out why it will not display the cd information with no luck. Could use some fresh eyes to look at this and help me figure out … | |
I am using windows 7 ultimate 32-bit edition, But when I try to run any dos screen like command prompt, c++ compiler etc. They are not going to full screen mode, Please tell me how to run my c++ compiler or any dos screen in full screen mode ……in windows … | |
I'm making a mini disk cleaner and I have wrote this code: [CODE]listView1.Items.Clear(); DirectoryInfo dirCustom = new DirectoryInfo("C:\\Windows\\"); FileInfo[] filCustom; filCustom = dirCustom.GetFiles("*.txt"); foreach (FileInfo filFile in filCustom) { listView1.Items.Add(filFile.Name, "test"); }[/CODE] However there are some missing parts, works fine but i need to search multiple path and extensions and … | |
Hello Friends.... I have a patient registration form in my project...in which I have to browse the image of the patient save it in the database and when I need the details of the patient again the uploaded image should also be displayed.... Please help me in this... I have … | |
I am using php to list out categories for a particular item while making blog.But i am listing out all the categories which are present in database in the list.I created a category table in my database.my code is listed as follows: [CODE] <?php include 'connection.php'; $list ="select name from … ![]() | |
I'm trying to make a little disk cleaner program and I couldn't figure out how to display the results of scanned directory on list view tool on windows form application. I have a 3 columns and these are File Name, Folder Path and File Size. I want the program to … | |
Hello Friends, I have got confused with one topic Scenario is such that.... I need to browse a file and copy the file from one location to another.... I am done with the file copying but I need to add the list of all files present under that folder in … | |
Hello. I'm in the middle of updating a site for work and I'm stuck at the moment, so I was wondering could anyone help me out if possible. I'm new to PHP and HTML, been using them for nearly 2 weeks. What I'm doing is that there is 5 forms … | |
I am trying to add pricing to an existing website database, but when I enter a price for an item, it removes it on its own. Please assist me in finding the error? All the files and coding is that of a previous developer.. This is the only file with … | |
BlackBerry Vs iPhone? I know it’s a question that is not only as old as time itself, but has been answered many times. But as a BlackBerry user migrating to iPhone I thought I’d have a go myself. You don’t have to look too far to stumble across numerous reviews, … | |
![]() | Hi all, For starters,i have looked at other forum posts on this site and used the recommendations there for this problem I have and no solution had seemed to help. I have a dell xps m1530 laptop, about 3 years old. It has handled very rigorous situations, like intense gaming, … |
im having problem with this 2 pages of code i have.the only problem is when im going to display it in another page called view.php added.php [CODE] <?php $type = $_POST['type']; $size = $_POST['size']; $quantity = $_POST['quantity']; $prize = $_POST['prize']; $file = $_FILES['image']['tmp_name']; if (isset($_POST['submit'])) { include('sql.php'); if (!isset($file)){ echo … | |
Hi, I am trying to pass the value of imgPath into imageAdapter.java. I manage to get the result from the toast. But i did not know how to write a proper code to display the value at myRemoteImages. Please help me out. PictureActivity.java [CODE]ArrayList<hashmap<string, string="">> imgList = new ArrayList<hashmap<string, string="">>(); … | |
Ok, when I run my program it is asking me twice what I only need to be asked once. [code]#include <iostream> #include <iomanip> using namespace std; int main () { //Variables double calories = 0.0; double weight = 0.0; char gender = ' '; char level = ' '; //enter … | |
I'm curious because I'm new to the world of buying computer parts and such. I've installed an Asus model of the Nvidia 550ti and I was wondering if I should use the Nvidia drivers or the Asus drivers. both drivers seem to work with only slight differences in the multiple … | |
Hi, In the following code (Class & Form1), I'm trying to figure out the following: - Create an array that stores the 'Clients' (first name, last name, account number) - 'Button List' the array with the (First Name , Last Name , Array Value , Account Balance) I attached the … |
The End.