7,713 Topics

Member Avatar for
Member Avatar for Nikhar

Hi everyone, This might be a very stupid question to ask and the answer might be very simple but I was just curious to know this. How to display "\n" on output screen in C++? We all know \n is used to enter a new line. But what if I …

Member Avatar for rubberman
0
2K
Member Avatar for Stat_1

I wont to display other results according to one row: Country>>League HomeTeam AwayTeam Result **Italy>>Seria A** Juventus Inter [1-0] Inter Barcelona[2-0] **Albania>>Kategoria Superiore** Tirana-Kukes [2-1] What i have done till now displays this: **Italy>>Seria A** Juventus Inter [1-0] **Italy>>Seria A** Inter Barcelona[2-0] **Albania>>Kategoria Superiore** Tirana-Kukes [2-1] @foreach (var item in …

Member Avatar for Stat_1
0
332
Member Avatar for ali-d

Hey everyone, We currently have 7 computer labs with atleast 20 pc's in each. We have to lock the equipment so that it's not taken and our currently solution is to catch all the cables in a padlock and lock them. While this works and stops people from being able …

Member Avatar for happygeek
0
333
Member Avatar for vijaysoft1

i want to post some data to my web , i am entering data to a textarea in my page and pressing submit and it will inserted in to my database the data i typed is follows 1)Adobe Dreamweaver 2)Microsoft but When i tried to display that it is showing …

Member Avatar for diafol
0
8K
Member Avatar for UI

Hi, Imagine there is a tbl called "users" and it has a column called "your blog url". Now, imagine you want to display that blog's url in an iframe on one of your pages. How would you code it ? I did the following but the iframe fails to load …

Member Avatar for diafol
0
2K
Member Avatar for Borzoi

I got a new case (Thermaltake View 27) and I'm having trouble undoing the screw on the PCI shield thing where the GPU should be. I can undo all the other screws except this one. Can anyone provide tips on how I can go about getting it loose so I …

Member Avatar for Borzoi
0
650
Member Avatar for kim_boto

I want to display only the current year in a textbox. How can i achieve that. Please help me. For Example i want to display 2017 in text i.e Current year.

Member Avatar for rproffitt
0
182
Member Avatar for Dalla_1

Hello everyone, I have a Sony lv-240J and I it turns on all the fans spin but then there is no beep, no boot, no display or anything. After a couple of minutes it just turns off. I connected a display to it and nothing. I tried to use it …

Member Avatar for rproffitt
0
2K
Member Avatar for hani_1

Hello everybody I'm looking for someone to help me about my problem, im trying to display user details after login with allow user to edit some fields . the user can edit these fields password repassword description address telephone email and these two fields not allow to edit only display …

Member Avatar for rproffitt
0
1K
Member Avatar for necrovore

Hi all, I have a dell inspiron N5010 laptop, a day back it went off. I tried to restart and it just keeps on beeping. After a bit a looking aboud i figured it is a display error (failed LCD). So is figured if i remove the LCD cable from …

Member Avatar for Reverend Jim
0
672
Member Avatar for fuzebox40

Ok folks, I rarely log in to ask questions so forgive me if I'm in the wrong category. Ok, the pc is a laptop (HP Elitebook 8460p, i5-2520m CPU 2.50GHz, 4GB RAM, Crucial 240GB SSD) running Win 7 Pro 64. Now I've scoured the net and can't find a single …

Member Avatar for Pierre-Henri
0
3K
Member Avatar for devianleong

Hi guys, I am facing a little bit problem in mobile menu design. In android is working fine but in iOS safari or chrome has the same issue where I press on the Menu and press on dropdown menu, I cannot scroll to bottom of other <li> element This is …

Member Avatar for rproffitt
0
397
Member Avatar for tegaelam

Hello all, I am having issues with a homework assignment. My assignment is as follows: Write a program that uses a loop to display Pattern A below, followed by another loop that displays Pattern B. Pattern A: + ++ +++ ++++ +++++ ++++++ +++++++ ++++++++ +++++++++ ++++++++++ Pattern B: ++++++++++ …

Member Avatar for Reverend Jim
0
3K
Member Avatar for UI

Hello People, Do you know why iframe is not opening to the url (variable value) ? Here is latest update of the code but still it shows not the variable value as the iframe URL. Variable calls db row data. Mysql column "Latet_View" has an entry on position zero: http://www.google.com …

Member Avatar for UI
0
377
Member Avatar for Naters_uk

I am creating a update member page. I would like the page to auto retrieve the information he or she originally used while registering on my site and display them into the individual textboxes of the update profile page, this is to prevent the hassle to rekey in every individual …

Member Avatar for ajeet_4
0
2K
Member Avatar for hbk619

I've been googling and going round in circles, simply put: when the button is clicked i want an image of a card to appear. [CODE]class Actions extends JFrame implements ActionListener { JTextArea textarea = new JTextArea(2,25); JButton twist = new JButton("Twist"); JButton bust = new JButton("Bust"); public Actions() { super("Twist …

Member Avatar for Akshay_8
0
3K
Member Avatar for Karuna_2

Dear sir My progress bar is not full fill (end area)and precentage is not center how can do it.please follow my attachment thank you wansa Public Class Form1 Declare Auto Function SendMessage Lib "user32.dll" (ByVal hwnd As IntPtr, ByVal msg As Integer, ByVal wparam As Integer, ByVal iparam As Integer) …

Member Avatar for Xavier_5
0
295
Member Avatar for ktimov1

To display a DataGridView column as Read Only I use: [CODE]DataGridView.Columns[0].ReadOnly = true;[/CODE] Is it possible to display a column as boolean checkbox type. The data is yes/no but I want them displayed as a checkbox. Something like: [CODE]DataGridView.Columns[2].CellType = Boolean;[/CODE] but that doesnt work..'bool' is a 'type' but is …

Member Avatar for jireh
0
8K
Member Avatar for _1_14

I have problem in display image from access 2007 database to rdlc i work in windows form c# vs2015 Actually i need to display image from database to more records from access 2007 but i cannot in rdlc i do as following : In RDLC drag image control to report …

Member Avatar for rproffitt
0
451
Member Avatar for nadiam

Hello. I have an exercisse to convert from 24-hour to 12-hour clock. code: /*ALGORITHM READ INPUT VALUE IN 24-HOUR FORMAT DISPLAY THE EQUIVALENT 12-HOUR CLOCK WITH THE PERIODS AM OR PM */ #include<stdio.h> #include<conio.h> int InputValid24Hour(void); void Output12HourClock(int); void main() { int data; data = InputValid24Hour(); Output12HourClock(data); _getch(); } int …

Member Avatar for nadiam
0
482
Member Avatar for Dani
Member Avatar for rubberman
0
659
Member Avatar for Crischin

How to display letters A to P (capital letters) with spaces in between? using assembly language? Requirement: use loop command For 15 lines below :(

Member Avatar for okayservers
0
182
Member Avatar for SimonIoa

Hello i want to do a count from 1 to 30 (1,2,3,4,5,6,7,8,9 etc) with javascript I did this var i = 1; if(i<=30) { i++; } '<span>#'+i+'</span>' all good but the count starts from 0 not 1 as wanted

Member Avatar for SimonIoa
0
201
Member Avatar for sweety

This is a program..to implement stack operations..it is working fine..but a warning message is being displayed..as " Functions containing for are not expanded inline". I would be glad if anyone can tell me the reason for this. Thanks for all the support. #include<iostream.h> #include<conio.h> #include<stdlib.h> #define max 5 [CODE]class stack …

Member Avatar for Tiger_3
0
15K
Member Avatar for Eurgel

Hi there I have a acer aspire 7530G i havent use it lates becouse my screen stay black but i got video on the vga port (the hdmi allso show nothing) So i used it with a tv but those days the laptop have no boot at all allso no …

Member Avatar for rproffitt
0
597
Member Avatar for Stefce

Hello i got a wierd problem, when am opening my website on a PC the site loads well and its best of all websites (`:D`).. but when i try to open it on phone or tablet the front page of the website which is meant to show the featured pictures …

Member Avatar for Stefce
0
397
Member Avatar for Jon_7

**Basically, the following code doesn't work: ** <link rel="stylesheet" href="https://fiftyallstars.com/Code/font-awesome-4.6.3/css/font-awesome.css"> <i class="fa fa-500px fa-pull-left" title="500px"></i> <i class="fa fa-adjust fa-pull-left" title="adjust"></i> <i class="fa fa-adn fa-pull-left" title="adn"></i> **And my old code on Dropbox does work:** <link rel="stylesheet" href="https://dl.dropboxusercontent.com/u/5739741/OMAR/code/font-awesome-4.6.3/css/font-awesome.css"> <i class="fa fa-500px fa-pull-left" title="500px"></i> <i class="fa fa-adjust fa-pull-left" title="adjust"></i> <i class="fa fa-adn fa-pull-left" …

Member Avatar for Jon_7
0
350
Member Avatar for درة

How to display picture stored in MS access to PictureBox in vb.net I make a login form that require your username and password and picture to login successfuly

0
169
Member Avatar for naik.pranjal
Member Avatar for Varun_8
-1
880
Member Avatar for manutd4life

Hello i had a datagridview with data in it and i wanted to display the selected row in textboxes here's the code i tried by i think its totaly wrong [code=vb.net] Private Sub DataGridView_CellClick(ByVal sender As System.Object, ByVal e As System.Windows.Forms.DataGridViewCellEventArgs) Handles DataGridView1.CellClick Dim i As Integer i = DataGridView.CurrentRow.Index …

Member Avatar for Muhammad Nauman_1
0
14K
Member Avatar for ajinkya112

Hey Guys, I have a question... I want to display data from two different tables into a single datagrid view. Problem is i dnt wana join the tables. pls check this code [code]private void bindgrid() { SqlConnection con = new SqlConnection(connStr); con.Open(); str1 = "Select * from wcl_et "; str2 …

Member Avatar for mohammed_35
-2
4K
Member Avatar for parrish

So my PC runs fine and boots Everytime but if I touch the top of the tower my monitor says no input until I soft reset it then it boots again no problem. But every time I touch the top it does this again. I know the monitor is good …

Member Avatar for rubberman
0
365
Member Avatar for al2henry

I've created and maintain two sites for non profit orgs that I belong to http://www.conservancyonmayne.com & http://www.vivaldichoir.org based on Dreamweaver templates I started with many years ago. As a rank amateur I realize I've created a dog's breakfast of code that is far from "well formed" - so apologies.. The …

Member Avatar for al2henry
0
379
Member Avatar for yoyie_333

How to get values from listview and display it to textbox using sql database ? and then i can update the items in listview using a button..then refresh the listview after i click the button... tnx for the help in advance..im just a newbie in vb.net ![0da2d193278007986792bf92e19433ab](/attachments/large/4/0da2d193278007986792bf92e19433ab.png "0da2d193278007986792bf92e19433ab")

Member Avatar for Mr.M
0
8K
Member Avatar for MiketheBook

I'm wanting to upgrade my Acer V173 TN 17" monitor to something larger and clearer (maybe 24") to go with my Mac Mini. I use my computer mainly for novel writing, e-mailing and browsing. I play no games, watch very little in the way of video and don't do anything …

Member Avatar for rproffitt
0
201
Member Avatar for Pst_1

Case - DIYPC Gamemax-W White MOBO - MSI Gaming Z97 RAM - CORSAIR Vengeance 16GB (2 x 8GB) CPU - Intel Core i5-4690K Devil's Canyon Quad-Core 3.5 GHz GPU - MSI GAMING GTX 960 4GB Cooling - Extreme performance CPU cooling with built-In Corsair Linkâ„¢ 240m HDD - WD Black …

Member Avatar for Jacob_8
0
523
Member Avatar for Amiel_2

Java Hi when I tried to insert my output the void displayed null or 0 can you tell me what's wrong with my rpogram? tnx My main program `package zarashop; int choice; public static void main(String[] args) Scanner absorb = new Scanner(System.in); // phase 1 login cloth cl = new …

Member Avatar for JamesCherrill
0
368
Member Avatar for <HHH>

Dear All, I need to Display only the MQ channel ststua with out Details When using **CHSTATUS(KONDOR_TO_T24)** CHANNEL(KONDOR_TO_T24) CHLTYPE(SDR) CONNAME(192.168.11.30(1414)) CURRENT RQMNAME(GLOB_QM) STATUS(RUNNING) SUBSTATE(MQGET) XMITQ(KONDOR_OUT) it gives me all the bove details and i need only to display **STATUS(RUNNING)**

Member Avatar for rproffitt
0
192
Member Avatar for jeffersonalomia

Hello guys, I have a problem on using the image slider plugin called "Unslider" which is a jquery plugin. I follow all the procedures / instructions on how to set up the codes but sadly it seems that the next and preview button styling doesnt work even if i follow …

Member Avatar for jeffersonalomia
0
2K
Member Avatar for valatharv

Hi, a) I need to display list of ItemName, ItemLocation in a table row with a check box in the left-most column. b) User can select multiple jobs and on clicking "Submit" button I should pass the selected ItemName and ItemLocation to a fuction in java. I am able to …

Member Avatar for diafol
0
12K
Member Avatar for altjen

I was playing Dying Light and just paused the game for a bit and was eating. when come back the game had freeze, mouse too, nothing moved. Tried to collapse the screen of they laptop with the hope that it probably would resume the laptop in normal state of work. …

Member Avatar for rproffitt
0
289
Member Avatar for wad

[CODE]<?php header('Content-type: image/JPG'); $username = "root"; $password = ""; $host = "localhost"; $database = "image"; @mysql_connect($host, $username, $password) or die("Can not connect to database: ".mysql_error()); @mysql_select_db($database) or die("Can not select the database: ".mysql_error()); $query = mysql_query("SELECT * FROM img"); while($row = mysql_fetch_array($query)){ echo $row['image']; } ?> [/CODE] that code display …

Member Avatar for pritaeas
0
13K
Member Avatar for Jessica_16

HELP!!! No beep on my motherboard when i remove the RAM & HDD, i tried another RAM & HDD from another computer but still not working. I checked the RAM & HDD if its working on another, it works, i replace the wires(SATA especially) but nothing change,i also replace the …

Member Avatar for rproffitt
0
468
Member Avatar for rheiniel

Hi guys you might know this about qr code im just a newbie here, my problem is that i can't produce simple qrcode that will fetch the data through the database , i wanted to create a single row of database and display it as a qrcode, can you help …

Member Avatar for rheiniel
0
294
Member Avatar for Jollyyy100

Is there any way possible to display a slideshow of pictures on a vb 6 form? What steps are required? Thankyou

Member Avatar for Supermike
0
2K
Member Avatar for vegaseat
Member Avatar for Lp_baez

when the console displays the "StudentAns" I get weird characters instead of the actual answer. ///////////////////////////////////////////////////////////// this is the files CorrectAnswers.txt A D B C A A D B D C A D B A C C D B C A StudentAnswers.txt A D B C A A D B …

Member Avatar for AssertNull
0
352
Member Avatar for alka_2

hello sir how to display student image and signature image in box on single browser button click on check box of image and singature in php

Member Avatar for rproffitt
0
152
Member Avatar for Peter_32

I am writing a HTML application for an Arduino-based web server using only C and C++ on the Arduino webserver and HTML only on the client web browser. The index page is a simple form containg two radio buttons and a 'Submit' button BUT at the top of the page …

Member Avatar for rproffitt
0
210
Member Avatar for Prabhanjan95

Hey guys.... M new to this forum... I have a compaq presario c700 notebook which is quite old..... when i press the power button the led lights turns on..i can here the fans spinning sometimes after 4-5 seconds the system turns off....and i switch it on again...the display remains black …

Member Avatar for Suraj_12
0
2K

The End.