199,114 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for chrisschristou

hello everybody i have a form where require user email to be submit, for it i have made client side behavior, if email field is empty js alert the following currend is alert, but i want to show in popup (alert window) a div who allow users to login in …

Member Avatar for chrisschristou
0
786
Member Avatar for dlmagers

I have been working on this program for about a week now and I think I have it down pack. The issue I am having when I ask the user at the beginning of the game (human vs computer) everytime I run the program it asks me what my name …

Member Avatar for dlmagers
0
2K
Member Avatar for davy_yg

Hello, I am trying to show an uneditable text through an input textbox. The following input text box is still editable, how to make it uneditable? <td>Page</td> <td><input type="text" size="50px" name="page" value="<?php echo $page; ?>"/></td> Thanks before.

Member Avatar for cereal
0
149
Member Avatar for krystosan

i am trying to recieve input from external text editor using python's `subprocess` but I am not sure why i am getting the error diff = subprocess.Popen('open(os.path.join(os.getcwd(), "foo.txt") "w")', stdout=subprocess.PIPE) pr = subprocess.Popen(sublime, stdout=subprocess.PIPE, stderr=subprocess.PIPE, shell=True, stdin=diff.stdout) pr.wait() if pr.returncode == 0: msg = pr.stdout.read() print msg er = pr.stderr.read() …

Member Avatar for krystosan
0
378
Member Avatar for ganesh.naphade

I am new to socket programming.I am trying to send datagrams containing image data(jpg) from one host to another continuously.I want to use C++.I have not came across detailed steps on how to achieve this for images anywhere.can somebody explain or link me to such tutorials?

Member Avatar for ddanbe
0
243
Member Avatar for RikTelner

It will sound like "Meh, bring me it, naw!". But it isn't as it seem to be. Do any of you, good people, know a method by which total novice (aka. noob). Could use any type of programming tutorial, program, scratch or anything. Which could make PNG shot of 3D …

Member Avatar for RikTelner
0
203
Member Avatar for chrisschristou

i will go to a local digital champion, and i must propose my idea as innovation, for a app : i thinked about to creat a city guide: with 2 main function speech Recognition And voice reader google now answer when you ask about meteo 1. allow user to find …

Member Avatar for peter_budo
0
170
Member Avatar for cacolukia

Hello guys! I am trying to build app with this requirements: *We need a class Person with properties Name, Address and Gender, and with the ability to Save and Load all properties to/from local file system* I am having trouble to make method that will create new person object (for …

Member Avatar for cacolukia
0
188
Member Avatar for ddanbe

I have some data in a table, but instead of using something like `string[,] myTable = new string[3, 2];` I wanted to use List, because my table can grow or shrink and I cannot do that easily with arrays. So I got something like `List<List<string>> myTable = new List<List<double>>(3)(2);` But …

Member Avatar for ddanbe
0
189
Member Avatar for anthony_5

I am using poco library to send a email first I installed the libraries on my ubuntu sudo apt-get install libpoco-dev code using namespace Poco::Net; int main (int argc, char **argv) { try { MailMessage msg; msg.addRecipient (MailRecipient (MailRecipient::PRIMARY_RECIPIENT, "john@gmail.com", "John")); msg.setSender ("Anthony Smiths <anthonysmiths5456@gmail.com>"); msg.setSubject ("sending a email using …

Member Avatar for Moschops
0
2K
Member Avatar for grafic.web

I need to add un hour to my date, how can i do??? This my code CASE WHEN candidat_rendezvous_date IS NOT NULL THEN 'candidat_rendezvous_date + 1Hour' END Thanks for your help

Member Avatar for grafic.web
0
159
Member Avatar for RainaAnja

Hello everyone, I have a question, I heard that the website that appears that the Internet is over is programmed with javascript, can someone explain to me how the steps how it is done, please?? Thanks

Member Avatar for RainaAnja
0
102
Member Avatar for Aleks134

I would like to search a file for whether certain words are present and extract the parts of the sentence that contain the words; I would like to find words that are a particular part of speech, and extract the part of the sentence from the word before the previously …

Member Avatar for Moschops
0
155
Member Avatar for khan shahid
Member Avatar for centenond

why this wont work? if ( file_exists($_SERVER['DOCUMENT_ROOT'].$dirfromroot)){ echo "<img id='imagen' src='$imgloc' >"; } else { echo 'No image to show!'; } also tried if ( file_exists($imgloc)){ echo "<img id='imagen' src='$imgloc' >"; } else { echo 'No image to show!'; } Thanks!

Member Avatar for centenond
0
192
Member Avatar for Junaid_2

I am going to ask you, about some **Web App Ideas**, to make a web App , Now a days am working in php & mysql and Codeignitor , i want to make web app which may take 2 or 3 months to make and also have a scope of …

Member Avatar for chrisschristou
0
81
Member Avatar for marifard

Hi, Hope you are ok. I made a website to recieve donations in from other people. It is possible to check if this coding hereunder are working or not? Thanks for your help. Donation page: <?php require "config.php"; require "dbconnection/connection.php"; // Determining the URL of the page: $url = 'http://'.$_SERVER['SERVER_NAME'].dirname($_SERVER["REQUEST_URI"]); …

Member Avatar for marifard
0
615
Member Avatar for Elias_3

I want the text in a textbox "txtConvertedInches" to be selected when i press the radio button "rbFromInches". private: System::Void rbFromInches_CheckedChanged(System::Object^ sender, System::EventArgs^ e) { bConvertingToInches = !rbFromInches->Checked; ToggleControls(); txtConvertedInches->SelectAll(); //I thought this would do it, but nothing happens }

Member Avatar for Elias_3
0
207
Member Avatar for mavtcr

Friends...A small problem I have a combobox in which I want to add list from a field from a ACCESS databas Table.It works well My code is here ACRS.Open "SELECT * FROM Salary1", CN, adOpenStatic, adLockOptimistic Sfm = ACRS!Month Do Until ACRS.EOF CmbSfm.AddItem ACRS!Month ACRS.MoveNext Loop My problem is , …

Member Avatar for Minimalist
0
206
Member Avatar for mlohokare

Hi, ************************************************ [B]Below is my xml code[/B] [ICODE]<?xml version="1.0" encoding="UTF-8"?> <concept><title>TEST</title><body><title>CHECKING</title></body></concept>[/ICODE] ************************************************ [B]Below is my xslt code[/B] [ICODE]<?xml version="1.0" encoding="UTF-8"?> <xsl:stylesheet xmlns:xsl="http://www.w3.org/1999/XSL/Transform" version="2.0"> <xsl:template match="/"> <xsl:for-each select="concept"> <xsl:variable name="filename1"><xsl:value-of select="base-uri()" /></xsl:variable> <xsl:value-of select="$filename1" /> </xsl:for-each> </xsl:template> </xsl:stylesheet>[/ICODE] ************************************************ [B]Getting output[/B] D:\test\Checking.dita [B]Instead of this it should display only [/B] "Checking" …

Member Avatar for Xeyem
0
4K
Member Avatar for Roily Lucky
Member Avatar for ebanbury

Hi I'd like to send one email to the registered user and a seperate email to the Administrator, with a separate body. I thought I could just duplicate the mail() but now neither email is being sent. Email 1 - Activation Email to the Registered User $to = "liz.banbury@gmail.com, ".$reg_email; …

Member Avatar for ebanbury
0
252
Member Avatar for CoilFyzx

Heelloooo good day. Thanks for seeking to help. I am creating a Java program(obviously). At the end of my work I wish to install it as (a)an .exe file. However I wish that after its installation, file type association would have been setup automatically(I phrased that latter part of the …

Member Avatar for stultuske
0
304
Member Avatar for vishal anand.s

Hi i have a problem in binding DateTimePicker value from one form named SearchDoctor to existing form named Doctor. Here is the code of my Doctor form and it works: using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Linq; using System.Text; using System.Threading.Tasks; using System.Windows.Forms; using System.Data.Sql; …

Member Avatar for Maligui
0
675
Member Avatar for SPRINGHEEL

What is the proper format for this code? There seems to be a problem with the session variable <?php $r = mysql_query("select * from tbl_student_master where email='@$_SESSION[email]'") or die(mysql_error());

Member Avatar for gabrielcastillo
0
129
Member Avatar for tauqeer381

I want to make an import export company desktop application. But i am getting problem in making the design of the application. can anyone please help me regarding this???

Member Avatar for Maligui
0
182
Member Avatar for strRusty_gal

Hi Everyone, I really require your assistance on the issue. I was debugging my code [C# console application] and i step down to the place where there is DATASET in my code and i clicked on the magnifying glass to see the data inside the DATASET. after clicking on the …

Member Avatar for Maligui
0
355
Member Avatar for mikidrip

I am new to VB, and have attempted to load all the free versions of the SQL available. Dispite many go's I still can not make any work. I go through the motions of including a database into my programs but I keep geting a long delay then "Unable to …

Member Avatar for Papa_Don
0
190
Member Avatar for spuriousgeek

I have been plagued by an issue for the past couple of days and I am yet to find a solution. I have an service installed at several customer sites. This service grabs data from a database, packages it up and then submits it to a web service hosted on …

Member Avatar for Maligui
0
295
Member Avatar for ryan.jay.ong
Member Avatar for krystosan

books = { 'Contact':['Carl Sagan', '2'], 'End of Faith':['Sam Harris', '7'], 'on Mars':['Patrick Moore', '1'], } based on dictionary above, how can i get Modales Qdialog box that should have 3 column containing like below DialogBox BookName_Label: BookAutor_Label : Quantity_QSpinBox BookName_Label: BookAutor_Label : Quantity_QSpinBox BookName_Label: BookAutor_Label : Quantity_QSpinBox Ok Cancel

Member Avatar for bnn678
0
274
Member Avatar for tirthajust4u

Hello gurus: I saw the discussion related on working with words with python which is: import win32com.client wordapp = win32com.client.Dispatch("Word.Application") # Create new Word Object wordapp.Visible = 0 # Word Application should`t be visible worddoc = wordapp.Documents.Add() # Create new Document Object worddoc.PageSetup.Orientation = 1 # Make some Setup to …

Member Avatar for bnn678
0
432
Member Avatar for 26bm

Hi, I have created a program that follows a line blitted on a surface called 'screen'. I have created a function in a different file to do so and have imported it into my main file like so: from Follow_Ground import Follow_Ground The code in the file 'Follow_Ground.py' looks like …

Member Avatar for bnn678
0
178
Member Avatar for Gebby

I used VB6 some years ago and need to buy it again for a new computer. Is VB.Net the one to buy and is it really free? I just want to do some programming to create and check puzzles I'm writing. Gebby

Member Avatar for Ancient Dragon
0
444
Member Avatar for Van_1

Hi. I just got a problem running my graphics program written using C language in DOS Box. There may seem a problem using the graphics.h running through DOSBox in Windows 7 ultimate 64bit. The program just flickers fasts when I run it. I know that my program is correct and …

Member Avatar for N1GHTS
0
407
Member Avatar for CreatorZeus

I have been racking my brain trying to think of how this would work to no success. Can anyone explain how this could be done?

Member Avatar for JorgeM
0
298
Member Avatar for flevasgr

Hello, i'm trying to solve this problem for 2 weeks with no luck. I'm using sql lite to pull data from my database but it doesnt show up the last item. I've tried to use an other server but again nothing! Even if i try to re-create the database the …

Member Avatar for cereal
0
147
Member Avatar for sumdumhoe

Apperently there is an undeclared identfiier "stdprn". Please help /* PRINT_IT.C-This program prints a listing with line numbers! */ #include <stdio.h> void do_heading(char *filename); int line, page; main( int argv, char *argc[] ) { char buffer[256]; FILE *fp; if( argv < 2 ) { fprintf(stderr, "\nProper Usage is : "); …

Member Avatar for Ancient Dragon
0
200
Member Avatar for vishalonne

I was trying to display name and address phone no in mail and I perfectly done it using the following piece of code - </tr> <tr> <td align="left"><p>'.$admin_message['message'].'</P></td> </tr> <tr> <td align="left"><p>Kind Regards</P></td> </tr> <tr> <td align="left"><p>'.ucwords($finance_info['fi_schoolname']). '<br />'.ucwords($finance_info['fi_address']). ' <br /> Email :- '.ucwords($finance_info['fi_email']). '<br /> Contact:- '.ucwords($finance_info['fi_phoneno']).'</P> </td> …

Member Avatar for Tpojka
0
171
Member Avatar for sonunclejalil

my problem is i want to show the picture from folder to image box but it need to find what picture depends on text box, If Right(filStudent.Path, 1) = "\Picture\" Then imgS = filStudent.Path + txtFind Else imgS = filStudent.Path + "\Picture\" + txtFind End If imgStudent.Picture = LoadPicture(imgS) but …

Member Avatar for Minimalist
0
263
Member Avatar for christan

Greetings, i'm having a problem on inserting all my items from listview to my database using stored procedure. heres my code. Dim lvItem As ListViewItem For Each lvItem In ListView1.Items With dbComm .AddParameter("@details", lvItem.Text, SqlDbType.VarChar) .ExecuteStoredProcedure("insertRecord") If .Success = False Then MsgBox("Record failed to save.") Else MsgBox("Record Saved.") End If …

Member Avatar for pawanthenerd
0
238
Member Avatar for Jeffrey_1

I copied a list into Excel and some of the list formatted into the neihgboring columns instead of lining up in the list. I need to get the items floating out in the columns back into the proper place in the list. I assume I need to somehow run a …

Member Avatar for Stuugie
0
367
Member Avatar for Tangerinejoe

Today i 50% completed HTML5 Foundations by matt west. 1.Basics 2.Symantic Tags. 3.Links. 4.Lists. 5.Tables. phew......with all the exercises en all. I really got a hang on how websites are built. I wanna know is it the right time to switch to CSS3 and later do the forms stuff,javascript and …

Member Avatar for JorgeM
0
145
Member Avatar for davy_yg

Hello, I have two copies of the same website: one in the localhost and one is online. My offline website generates error after I login to the admin page: Warning: session_start() [function.session-start]: Cannot send session cache limiter - headers already sent (output started at C:\xampp\xampp\htdocs\rustoleum\administrator\admin.php:9) in C:\xampp\xampp\htdocs\rustoleum\administrator\admin.php on line 52 …

Member Avatar for Borzoi
0
199
Member Avatar for davy_yg

Hello, I am trying to create an alert message box in my login page in case someone input a wrong password just like in the [Cpanel](http://www.rustoleum-indonesia.com/cpanel) Well, this is what I did so far: I copy the code in this demo example: [demo](http://www.pontikis.net/labs/jui_alert/demo/) index.php <!DOCTYPE HTML> <html> <head> <!-- alert …

Member Avatar for davy_yg
0
294
Member Avatar for nitish.mohiputlall

I am having 4 errors with the main program and i dn't know how to slove it anyone to help me how to solve the errors and how the codes was suppose to be correctly typed: 1.error: 'salaried' was not declared in this scope (line 5) 2.error: expected primary expression …

Member Avatar for Moschops
0
2K
Member Avatar for Sanjeetjmp
Member Avatar for tessa.burkhalterblackmon

I need help fixing my code. I'm getting the following errors: 107 C:\Dev-Cpp\TicketFineCalculator.cpp no matching function for call to `TicketFineCalculator::getFine(int&)' and note C:\Dev-Cpp\TicketFineCalculator.cpp:20 candidates are: int TicketFineCalculator::getFine(int, int, int, int) Here is my code: #include <iostream> //allows program to perform input and ouput #include <string> //allows string using namespace std; …

Member Avatar for Ancient Dragon
0
2K
Member Avatar for javed.iqbal.3979

Hi all, I am working on Bank Management System,,i wanna connect my programm to MySql Can anyone refer me Book(s)/links where i can learn so...i have know how of Mysql already and worked on it

Member Avatar for Ancient Dragon
0
163
Member Avatar for yoyo.albeatiy

Hi every one i have a problem with this program the conslo window disappear automatically without waiting , Im using return 0; function but it does not work

Member Avatar for saharsweeto
0
175

The End.