7,713 Topics
![]() | |
I've just bought a stand/sit desk 70cm x 120cm which because of lack of space has to fit almost up against a wall. I need to buy a monitor arm for my 17" monitor and there's room enough for any clamp but not for overhanging arms. So I will need … | |
echo '<td><a href="details.php?id=' . $row['ServerName'] . '">' . $row['ServerName'] . '</a></td>';--> it's working as expected( but it always display the one table value without any matching criteria hence i am trying with if condition as below) if($row['ServerName']=='DataBase')<< curly start brace>> echo '<td><a href="db.php?id=' . $row['ServerName'] . '">' . $row['ServerName'] . … | |
Hello, l have a table in sql server containing some information such first name,last name, address etc. I want to display the items for a particular row when l search in a textbox. I am running into error messages. Any help here will be appreciated. Here is my code, its … | |
So I turn on the PC it all lights up fans are going pumps are going keyboard and mouse have power but the lights on the keyboard arnt working have tested the leads unplug it and left it for a while reseated the ram unplugged all the stuff plugged into … | |
Hi DW. Today just came across with something I didn't know of and it may be easy to someone else who had workded with it or had came across it. Look at this example code snippet: $a = '1'; $b = &$a; $b = "2$b"; echo $a. ", " .$b … | |
There are a number of very old threads on CUDA so I'm starting a new one rather than resurrecting an old one. Does anyone here have any experience setting up and developing in CUDA on a Windows platform? I know that there is a system that can be set up … | |
Recently the LCD screen on my Gateway Solo 5150 Laptop went black. I took it to a repair shop where they replaced the inverter board that supplies power to the LCD lamp. The unit worked very well for a couple of days and the problem re-appeared. I took it back … ![]() | |
I am having an issue with my computer starting up. It will power up, I hear the hard drives spinning, the fans all come on including the CPU fan. But I get no visual, no beeps. I tried to wait out around 5 min or so to see if it … | |
I just posted a code snippet [here](https://www.daniweb.com/programming/code/515601/vbscript-implementation-of-quicksort) and noticed a couple of problems. 1. No matter how I try to fix it, the frst line refuses to display properly indented. 1. The few lines of code that I included in the top window, even though properly indented, refuse to display … | |
I have a gateway FX laptop with 1400 x 1200 screen resolution. Can I swap this screen to another FX laptop with a current screen resolution of 1400 x 900 if they have the same video card or will there be other consideration to deal with? | |
[CODE] #include <stdio.h> #include <stdlib.h> typedef struct filedata { char data[100]; }data_t; data_t * fname=NULL; //IS AN ARRAY OF the structure filedata REQUIRED HERE void quit() { printf("\nPress enter to exit"); fflush(stdin); getchar(); } int main() { char ch; fname=(data_t *)malloc(sizeof(data_t)); FILE *fptr=NULL; atexit(quit); printf("Please enter the file name to … | |
I need assistance in storing checkbox API values. I have multiple checkboxes and I can display API values in html when checkbox is checked. But how do I store the initial value of a checked checkbox and show it in a span? I currently get “on” value instead of API initial value … | |
Hi. I have a .raw file and I want to display it as hex. why? because i want to try and replicate what 010 Editor can do which is read any sort of file and display in whatever format user desires (plus it can be used to edit and stuff) … | |
<?php require('db.php'); include("auth.php"); $id=$_REQUEST['id']; $query = "SELECT * from new_record where id='".$id."'"; $result = mysqli_query($con, $query) or die ( mysqli_error()); $row = mysqli_fetch_assoc($result); ?> <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <title>View Records</title> <link rel="stylesheet" href="css/style.css" /> </head> <body> <div class="form"> <p align='center'><a href="index.php">Home</a> | <a href="view.php">View Account</a> | <a href="logout.php">Logout</a></p> … | |
**Table: category** **table structure** id label parent **example data** id - label - parent 1 - Apparel - 0 2 - Technology - 0 3 - Travel - 0 4 - shirts - 1 **For above table I have two links** 1. First link display category with no parent (e.g. … | |
hi everyone hope you are all well... i am login with userid and password and i want to display there username after login from my oracle database how? | |
i want to display my image from a folder but its not work what i change in code to work <?php $dir_path = "/xampp/htdocs/image/"; $extensions_array = array('jpg','png','jpeg'); if(is_dir($dir_path)) { $files = scandir($dir_path); for($i = 0; $i < count($files); $i++) { if($files[$i] !='.' && $files[$i] !='..') { // get file name … | |
Hello. I have a sorting list which is populated with the different "types" and when a "type" is chosen the images along with corresponding info should be displayed but instead the page is blank with no error. I have another sorting which is more or less the same for sorting … | |
6 ●4 I have a code that displays an array from GeoTab SDK, I am able to get the array to display in the console.log, and it populates the results like normal, However, When I try to populate the data in the table, nothing shows but the headings. Here is … | |
con.Open() cmd.Connection = con dataGrid.SelectedIndex = dataGrid.CurrentItem(0) MessageBox.Show("User Has Selected " & dataGrid.SelectedIndex) Dim id As Integer = dataGrid.SelectedIndex(0).cells("Appid").value.ToString() Dim fname As String = dataGrid.SelectedRows(0).cells("Fname").value.ToString() Dim mname As String = dataGrid.SelectedRows(0).cells("Mname").value.ToString() Dim lname As String = dataGrid.SelectedRows(0).cells("Lname").value.ToString() Dim fthname As String = dataGrid.SelectedRows(0).cells("Fthname").value.ToString() Dim mthname As String = dataGrid.SelectedRows(0).cells("Mthname").value.ToString() Dim … | |
Hello i'm working with data tables and model view controller and i want to display selected cells in another partial view For example this is my table with data: <table id="display1"> <tbody> <tr> <td><a href="#">0.34</a><td> <td><a href="#">0.35</a><td> </tr> </tbody> This is my script: $(document).ready(function(){ $('#display1 tbody').on('click', 'td', function () { … | |
Hello guys I'm troubleshooting a Lenovo M91P pc that goes on but there is no display and the monitor and keyboard is off aswell. I tried swapping psu's and different ram cards, but it does the same.. no display anyone got any good suggestions on what could be the problem? … | |
Can anyone tell me how to retrieve records from database one at a time.. I am attaching a sample code here: [CODE]include('connection.php'); $sql1="SELECT * FROM question_master"; $result=mysql_query($sql1); while($row = mysql_fetch_array($result)) { echo $row['Question']; }[/CODE] Let me explain the code.. There is a table named "question_master" (containing some questions) in database … | |
<%@ Page Language="C#" AutoEventWireup="true" CodeBehind="Default.aspx.cs" Inherits="XEx14ProductReceipt.Default" %> <!DOCTYPE html> <html xmlns="http://www.w3.org/1999/xhtml"> <head runat="server"> <title>Ch14: Product Receipt</title> <meta name="viewport" content="width=device-width, initial-scale=1" /> <link href="Content/bootstrap.min.css" rel="stylesheet" /> <link href="Content/site.css" rel="stylesheet" /> <script src="Scripts/jquery-1.9.1.min.js"></script> <script src="Scripts/bootstrap.min.js"></script> </head> <body> <div class="container"> <header class="jumbotron"><%-- image set in site.css --%></header> <main> <form id="form1" runat="server" class="form-horizontal"> <div … | |
Hi guys, I am new to Mobile Development. I do have some Assignment question want to clarify. **Task 3 Create an app. that will make use of 3 icons (from the Icon pack provided). Your app must display all 3 icons below some relevant text. - You must take a … | |
Hello Everyone, I am building multi-web application pages using the Default.aspx, Default.aspx.cs and Confirm.aspx and Confirm.aspx.cs. The problem that I am having is that when I click "Confirm" before clicking "Calculate," the event handler displays the "Click the Calculate button before the confirm" at the bottom of the page. It … | |
I am new in vb.net. The image has been stored in sql server as <binary data> and i dont know how to convert it to display in picture box.Please tell me what are the changes should i made to get it to work.Here is the code which i have done … | |
I have this form I've cobbled together from found sources and experimenting - its a page count copy calculator. Each page is worth 5¢, and the user enters the amount of pages to copy (first field) and the amount of copies needed (2nd field) *this may also need to be … ![]() | |
I still can work on my laptop (HP Pavilion) because I had a window open and I can access all my docs this way, but the background screen is black, there is no 'Start' button, no desktop and the 'right click' does nothing. Totally emptiness, but I still see the … | |
# Am looking for best practises of displaying document info in tkinter messagebox from tkinter import * from tkinter import messagebox def profile(): messagebox.showinfo("info","college\tNew student\tGraduating students\noak institue\t202\t210\nPine college\t143\t121") root =Tk() root.geometry("200x200") C = Button(text="copyright",command=profile).pack() root.mainloop() #I think if am going to type all the info in the document the arrangement … | |
I want to display the content of selected treeview only in tkinter but when i select the treeview other treeview content also display but i want only the selected treeview to display. I have working around to get this by the use of style widget but it display other content … | |
Hey, I'm new to the forums but fairly experienced when it comes to computers. I've got a Dell Dimension 8400 and a 2001FP monitor. When i boot the computer up, the video card's fan is spinning and the computer seems to power on fine... except for the fact that there … | |
Hi, bought a gaming PC tower (with a top class nVidia graphics card) for the kids, Xmas, but sent it back cos of a couple of probs. It's arrived back with me and some problems persist. When I switch on and boot-up (I assume it's booting up, as I can't … | |
![]() | cant upload code |
Hi everyone, Iam trying to figure out how to display the correct time and date format in the following piece of code $stmt = $conn->prepare("SELECT * FROM tbl ORDER BY id DESC"); $stmt->execute(); $total = $stmt->rowCount(); while ($row = $stmt->fetchObject()) { //$opvar = $row['mchq_date']; echo " <tr> <td>{$row->mchq_date}</td> </tr> "; … | |
I have a late 2016 MacBook Pro running the latest version of OS X Sierra 10.12.6 Ever since I got it, I've been having a problem connecting it to external displays. Firstly, there is the 32" 4K Seiki Pro, connected via a USB-C cable. Most times when the Mac goes … | |
Hi, I wanted to setup dual monitor, before trying to purchase I looked up at few articles and forums and most of them had language suggesting it is easy and straight forward. I visited 4 stores and they wasn't sure what they are talking about, 2 of them directly denied … | |
I want to see the penalties updating, but it's only see after you click the return button and wait for one day again that it will show the penalty. <?php $user_query=mysqli_query($dbcon, "select * from borrow LEFT JOIN member ON borrow.member_id = member.member_id LEFT JOIN borrowdetails ON borrow.borrow_id = borrowdetails.borrow_id LEFT … | |
Hi, I'm new in WCF and web service, However, I'm currently implementing more or less the same project. My project requirement is that is have to automatically read from 2 emails at once, display the information of the emails in the Gridview such as ( email address, email subject, email … | |
Hi guys... I want some help of how to call images from a folder.... Its like..v have a folder called images and it has many images in it.....but i need only 6 images to display in a php webpage...when the webpage is reloaded, it displays another images...its like its displaying … | |
I know this title is rather confusing, but here it goes. I have a PHP cURL request and the return is in a string. Normally i can easily echo specific objects from the JSON response, but i have never dealt with string returns. Here is my php <?php $url = … | |
Good morning all. Call me Imp. I have built a computer from scratch - no problems. A friend shipped his to himself when moving via USPS and when it arrived it wasn't working (and of course his insurance claim was denied). When he turns it on it rattles and hums … | |
My laptop had been overheating and got pretty bad,(a year before I practically friend the motherboard) but then I finally learned about the heat sink which was cleaned out and the overheating probs were fixed. But a new problem has beared its ugly head. I turn on the computer, and … | |
Hello to all, I am trying to display the images on my page through php from mysql database Problem is - Images are repeating , It always display only first image. <?php include("header.php"); include("connection.php"); $sql = "select Image from flood_light"; $result = $conn -> query($sql); if ($result->num_rows > 0) { … | |
The last day my computer worked perfectly. On the next day wen i turned it on , the cpu is in on condition,but there is nothing displayed. So i've removed all the power cables and RAM and also the processor. and put it back as it is... But the problem … | |
Hello, I do not know a lot about computers, so I know this is a long shot. However I really need advice! I have just got a new computer tower (its second hand) and a monitor from a family member. Both monitor and tower were in full working order before … | |
Hello Teachers I create a project in vb.net 2010 with access database. I want to show data in listview. It Is show in listview but a problem I entry **Id wise**. So, when I click on the show data button I see the **Id** . How to show the id … | |
I have a problem with my computer and wonder if you guys could help me. The problem is that my computer runs but there is no display on Monitor. The problem is not with the monitor because I tried it with other computer. The problem started somedays ago because of … | |
I have an HP 8460p. Only on battery power sometimes the display goes gray with horizontal lines. On AC power the problem goes away. |
The End.