7,713 Topics
![]() | |
1] One Windows Form: datetimepickers to accept fromdate and todate respectively. Crsyatl Report Viewer Button to show the Crystal Report. 2]Crystal Report How to do the coding? I tried from my side and also some1 in this forum also helped it but still not able to do it. | |
![]() | I'm coding a calculator with display and controlls in separate forms. I've hit a block on several bugs but the most promenient one is: - The calculator couldn't process more than ONE operator (2+2=OK but 2+2+2=4=NOT OK) - sqrt function is quite broken [Sollution and related files (VC# 2010)](http://www.mediafire.com/?fpwt38lohw98n4o) It's … ![]() |
Hey I tried to access a cookie that has a [object HTMLImageElement] but I found out that cookies have a limit on size so Im trying to do this with pure Javascript I can store the value of what I want in a hidden div and now I want to … | |
![]() | Hi, this is my first post. I'm new here and also just start playing with CakePHP. And sorry for my English since its not my native language. I had problem to call data from two tables since I dont know how to do it in CakePHP. So basically I doing … ![]() |
Hi everyone, I have been trying to write a php script to display a div and its contents depening on a result from mysql. Inside the div is a basic input form etc, nothing special, some error & validation checking. What I would like to do is, to only display … | |
I borrowed this from C#, where you can easily send output, that normally goes to the ugly black console window, to a nice looking Windows MessageBox with an OK button to close after you read your results. You can accumulate your output in a string to send to one message … | |
hi im currently learning about linked list. Ive created a code which is supposed to let you type some numbers, then display them. i did this mostly by using information on the internet(code examples) and such. Hence there are obvious mistakes a bits i do not understand. Here is my … | |
Hi, i'm doing a table that show products that you search for...Now i have a proble with the image and the category of the product they don't appear in the page: <?php require_once('Connections/futura.php'); ?> <?PHP $prod=$_GET['q2']; $query_prod="SELECT * FROM produtos WHERE nome LIKE '%".$prod."%'"; $produt=mysql_query($query_prod, $futura); $count=mysql_num_rows($produt); $prod_img="SELECT * FROM … | |
Hi evreybody,sry before i posted wrong title name,very sory for my bad english I have a users table which I want to display 5 records then take a new row, display 5 records, take a new row... plz anybody help me. this is the mysql query $planbook_obj= Doctrine_Query::create()->select('p.personal_id,p.photo,p.title_name,p.zone_id,p.place,p.occasion,p.itinerary,p.description,p.date')->from('planbook p'); $result … | |
Hey, I have an Acer Aspire 2930z and i just boutght a new battery for cause it needed it, then i put the new battery in and i turn it on, but the screen is black, the power light comes on (blue) and it was flashing orange so i charged … | |
import MySQLdb import csv import sys db = MySQLdb.connect("host","username","password","dbname" ) c = db.cursor() select_pos_score = 'SELECT score FROM Sentence' c.execute(select_pos_score) I use MySQLdb. I want to display all score that are selected from table "Sentence" but I do not know how to display it. Any suggest for me to display … | |
Hey Guys! So... I left my PC back home when i went off to college and now that I'm back for summer, it seems that it has missed me because it doesn't work anymore. **First Problem:** When I tried to switch it on, it would start to boot (I'd see … | |
import javax.swing.JPanel; import javax.swing.ImageIcon; import java.awt.Image; import java.awt.Graphics; import java.awt.Graphics2D; class View extends JPanel { Image icon1,icon2; public View(){ ImageIcon i1=new ImageIcon(this.getClass().getResource("tile1.png"));//image I drew ImageIcon i2=new ImageIcon(this.getClass().getResource("tile2.png"));//image I downloaded icon1=i1.getImage(); icon2=i2.getImage(); } public void paint(Graphics g){ super.paint(g); Graphics2D g2=(Graphics2D)g; g2.drawImage(icon1,10,10,null);//this image is not displayed g2.drawImage(icon2,200,200,null);//this image is displayed } } … | |
So i bought a new 22" LCD - LED backlit - monitor for my new buiild, and i'm facing a horrible case of buyer's remorse... So the problem with this monitor is that: 1) Not much information on it on the web - makes me suspicious 2) Not a very … | |
Hey Let me see how I describe this.... I have a textbox (inside of a form) and that form also has a button that calls a Javascript function that does some unrelated stuff. This is all inside of Lightbox. I want to be able to type in text in that … | |
I have a gridview1 that displays customers with their codes. The gridview contains 3 columns: The 1st contains an item tamplate with radiobutton(radioButton1) in it. The 2nd is a bound column that binds with CustomerID column of sql Customers table. The 3rd is a bound column that binds with CustomerFullName … | |
i want to display some code snippets for my forum. i want to display and html and jsp codes or other codes but i don't know how to fix it because if i display it in a page. it is like that it is included in the page code. i … | |
Hi, Yesterday I try to figure out that if we input day and the system will add day to current date and display result but I got problem example below input 1 day to add table 1st record 2012-05-05 Add 1 day 2012-05-06 input another 3 day table 1st record … | |
Hi All, Can anyone see why this line dos not produce real links if they have "http://" add to them when added to the data base ? //---------------------------------------------- $result = mysql_query("SELECT * FROM track ORDER BY rand()");while($row = mysql_fetch_array($result)) { echo '<td> <a class="mylink" target=_parent href="http://', $row['car'],'">',$row['tag'] . "<br>"; } … | |
So i'm trying to make a script that reads from forum last post first word and displays it on my site vBulletin forum http://www.forum.com/showthread.php?85788&goto=newpost it uses javascript, so I can't get any info :S My script so far <?php header("content-type: text/plain"); $myurl = 'http://www.forum.com/showthread.php?85788&goto=newpost'; $curl_handle = curl_init(); curl_setopt ($curl_handle, CURLOPT_URL, … | |
I am working on a wpf project which there is a scrolviwer that holds an image <ScrollViewer Grid.Row="2" x:Name="Image" HorizontalScrollBarVisibility="Hidden" VerticalScrollBarVisibility="Hidden" > I want to add tooltips on the image. Not a single tool tip but several relevant to the area. How can i desplay several tool tips on a … | |
Hi all, I am running a dual display an have been for month, after an windows update i hav lost the display on my LG W2246T monitor. I have updated the drver for my GeForce Gt 220 card. The power light stays on, so the diplay is not in power … | |
Hello, I am writing code that mimics the game Mastermind. The computer randomly comes up with a code based on the "colors" RGBOY. The user has ten guesses to guess what the code is. Right now my code displays the secret code at the beginning just so I can test … | |
How to retrieve the particular column row to the text box? I mean how to display it in textbox? The column has got different rows. The code I wrote in vb net is : cmd = New SqlCommand("select ida from Issue where aname='" + TextBox3.Text + "'", con) In the … | |
Hello everybody i have a serious problem i have a pentium 4 system and after some day we start my computer but it cannot display the screen shot on monitor we check ( change a new Ram, Hard disk, CD rom, and change a new VGA, and change a new … | |
I want to display text in Flash in a dynamic text field one by one (Fade In /Out). My database is Oracle SQL and I am using Flash CS5. I am given a task to create News and Events ticker. Being a designer I dont know much about flash action … | |
Hello; I am working on a web page that I have designed to take up 75% of the monitor. Presently this web page when loaded auto aligns to the left side of my monitor. While it looks fine I would prefer it to be centered on my monitor. I have … | |
Hello, I have two problems. First, I am trying to have a set background image that displays with two jbuttons on the bottom. My error is that when the back ground image is displayed it hides the buttons (until you mouse over them). Second, I want the buttons on the … | |
[QUOTE=mb01a;1655781]Let me think about that .. How about - [code] dim sql as string sql = "select tablename.* from tablename limit 5" ' other things you'll need are defined elsewhere in your program [/code] Now, you'll need to add the code that connects to mysql, then open the recordset and … | |
Need to add a JCombobox to select the user’s State of birth, and a JRadio buttons to indicate their gender. Also, add a JTextArea to the form. Once the user clicks on the JButton the application will display all of the user’s information in the JTextearea. All the classes work … | |
i wanted to display a pattern like this 4444 333 22 1 i used the following code import java.util.*; public class PatternExp { public static void main (String args[]) { Scanner src=new Scanner(System.in); System.out.println("Enter the number of lines needed"); int n=src.nextInt(); for (int i=n; i>0; i--) { for(int j=n; j>0; … | |
Hi.. I need some help from all of you. My link cannot go to the next page when i include index.php?page= in my line.Like the example below.. <td><div align="center"><a href="index.php?page=view_user.php?ref1=<?php echo $row['user_id'];?>">View</a></div></td> If I remove the index.php?page= , the page can link to the page that i want to go. … | |
Oracle query to display all policies existing in the database? Can anyone tell me what will be the "Oracle Query to display all policies existing in the database"? | |
![]() | Not sure if this has been mentioned - I did search but couldn't find anything that related: Noticed this issue in Opera today. I rarely use the browser, but seems common on all pages with code. The code numbers seem to overlap.  As you can see, just the … ![]() |
Hi, I created an app. I want a splash screen to be displayed in the beginning for 3 sec whenever I execute my program. Suggest me a way! | |
i have a form and checkloginstudents.php,,but my problem,i can't display the details of a user after login,, this is my form: <form id="form1" name="form1" method="post" action="check_login_students.php"> <label>Name <input name="username" type="text" id="textfield" /> </label> <label>Password <input type="password" name="password" id="textfield2" style="margin-top:5px;" /> </label> <label> <input type="submit" name="button" id="button" value="Submit" /> </label> </form> … ![]() | |
Hi, when i set Image1.ImageUrl = "C:\\Sunset.jpg"; not working means it is not displaying the image on the webpage. My requirement is not to display image on the webpage from where project folder exists. My requirement is to display image from "C:\\" but it is not working.... Please give me … | |
I recently got a hp Pavilion g6. It already had Window 7 installed and Direct X 11 installed. However when I try to play Warcraft in it I get the error message Direct X is not supported. And when I did some searching it says that Pavilion g6 doesn't support … | |
This app I finally got the splashscreen to the way i want it, but when I run the .exe from the explorer the splashscreen loses its transparency and has a white background replacing the glow; In when the compiler runs it directly after it builds it look exactly how it … | |
Hi there How do I get my menu to display on a blackberry or any other mobile phone? This is the site below.... I am not sure what other coding you need to look at.. Please assist? http://www.northdakota.co.za/ | |
Hello, I would like to know how to get Google Search to display my website results when searched similar to the image shown (so as I also get the texts shown in the red-bordered box below)  | |
I need a script that selects all from mysql, orders them DESC with highest money and prints out only where username=$_SESSION['username'], so it will show Your position is X/10 | |
I am trying to display value. The code below displays value but it uses alert to show value. But I need to show value in a textbox. Anyone there to help me??? $('#show').click(function() { var $cars = ''; $('#selected_cars .innertxt2').each(function() { var $car_value = $(this).attr('carvalue'); if ($cars == '') $cars … | |
HI, Could you please explian this code so it will work, { "display **all** from **tablename** **colloum_id** in a **random order** " } I am trying to get all the data echoed into a random string ie. echo = "3,4,5,6,7,3,2,6,3,22,43,132,ect. not in a table. thanks. | |
i am creating a hyperlink . i want to that page should open in pop window wat code should i use?? | |
  Hi, I am extracting datas from the csv file to display in datagridview1 as shown in image1. Now I want to search the datagridview1 and display the result in datagridview2 as shown in image2. Please do refer the attached images. I am using Visual basic 2010 … | |
After the form is submit, it will not echo $genderRadio Any ideas? It can select the gender but I can't display in the php file `<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd"> <html> <head> <title> Assignment 2</title> </head> <body> <h1>Please enter your information</h1> <form method= "post" action = "output_hw2.php"> … | |
I have an ACER 7741Z. THe screen just went black on me. I unplugged it over night, took battery out, help start button 60 seconds then restarted it. Screen still is black after I type in my security code. After a period of time the computer goes into sleep mode … | |
Hello, I've created a flash movie which loads texts from a textfile into a dynamic textbox to be displayed. However, in my text I have a "%" sign, which is not being rendered when am loading the text in the flash. Anyone knows how to make this show up? Am … | |
ive got a webpage that has a login page, it displays the 3 users name and then gives the fields to login. When the user logs in they get to vote for 3 people to be 1st 2nd and 3rd. I have to change the following code so that on … |
The End.