199,114 Archived Topics
Remove Filter ![]() | |
hello every one my name is ahmed and i'm studying computer science and i in my 3rd year and i will begin to work on my graduation project......and i learned c# [CONSOLE application]....ADO.NET......ASP.NET......SQL SERVER 2005 [IMPLEMENTAION] .....and i really don't have the idea to work on it ...so i need … | |
My web page was working fine last week and when I went to work on it again I got this: Notice: Undefined index: courseID in C:\wamp\www\1.1\lib\coursePage.php.inc on line 7 Notice: Trying to get property of non-object in C:\wamp\www\1.1\lib\coursePage.php.inc on line 10 we have no data Here is my coursePage.php.inc [code] … | |
hello again, can somebody explain to me how I can use c++ idea to make my own DLL DRIVERS or a better tutorial link on that,it's very urgent...i have to submit before this thursday......please make it snapy | |
hello ppl im new to C++ i was making a small newbie math quiz.. and was wandering how can i make it that at the end it says how much u got out of 10 or watever this is my code so far [CODE]#include <iostream> #include <cstdlib> using namespace std; … | |
Hi. I'm newbie in C language (and in programming in general) and I don't know if this is possible. Imagine you have an integer variable called "number" with a number, and when you executes a function, this function creates a variable called "audio1" and increments number (number ++; ). The … | |
Hi Can any one help me with this question i have got which is what tools and procedures were used in the production of Microsoft Word? any information you can provide regarding the production of microsoft word would be much appreciated thanks | |
Can someone please take a look at my code to ensure there aren't any memory leaks or (array) overrides or anything else which could be a bad practice in my code ... Here's my code: [CODE=C++] #include <iostream> using namespace std; template <typename T> void create2DMatrix(int rows, int cols, T … | |
Hi men could you introduce or even upload a PDF for me to learn x86 assembly language. thanks a lot | |
Hey guys, I need help with this program which I have a function that calculates this formula for total house cost and then have an instruction function that asks for the input, then in main has the output. Can anyone tell me waht I am doing wrong, I think I … | |
Hi is there is any other option to redirect a php page to other page. Other than "header " ??? Thanks Rajeesh | |
Hello, I need your help again guys. I am trying to make a pop up form name setIPInterface (when the user click on a button in the form "ClientInterface"), for a user to input an ip address in a textfield and when the user click on the button "Set", the … | |
Hello there people, I'm trying to create a backgammon game using C++ and I am getting an annoying error error C2228: left of '.length' must have class/struct/union Here is the code it is refering to diceArray = new int[4]; for(int i = 0;i<diceArray.length;i++) diceArray = d1; I have declared diceArray … | |
Hi, Let's say i have a form in [url]www.111.com/form.html[/url] where user can submit name and surname with POST action. Can we send the POST data (name and surname) from [url]www.111.com/form.html[/url] to [url]www.222.com/process.php[/url] to be processed? Thanks | |
hi ! how can i use multiple submit buttons in the same form i want to pass form values to different pages depending on which of the two submit button is clicked... thank's | |
You are required to develop a GUI for car show room. The program must use collection to store and process information about cars. The class for car information must have following attributes: 1. Name of car’s manufacturer 2. Name of car’s owner 3. Registration number of car 4. NIC number … | |
Hi i am new to use java. on compling my java file in tomcat server i get cannot resolve symbol symbol : method getAttribute (java.lang.String) location: interface org.w3c.dom.Node out.println(photoElements.item(iElement).getAttribute("id")); and the line he is referring to is for(int iElement = 1; iElement < 10; iElement++) { out.println(photoElements.item(iElement).getAttribute("id")); i am not … | |
![]() | I'm using PHP to piece together photos on my website. I have the pieces in the correct order, but there is white space between each photo. At the moment, the only Css I have is placing the black border around the specified outer edges of the photo - I added … |
hi I am using NetBeans 6.0 to create my Desktop Application which is swing based Database Application. I want to create a splesh screen in my application using JavaFX but i don't know how to visible created JavaFX. Can Anyone tell me how to create Splesh screen using JavaFX or … | |
I Was Just Wondering is Ther Anyway At All To Reproduce A VB Step Increment in Delphi. VB Example: for i = 0 to 100 step 10 Delphi: ??? Any Help Would Be A Blessing Thanks, gh0sts :) | |
Hi! this is a lengthy post/I hope its comprehensible basically this program should calculate and display the area of a circle.....but it shows area as 0.0 for every value of radius entered.......I would really appreciate it if someone helps! [CODE]import java.util.Scanner; public class circledriver { public static void main(String args[]) … | |
Hey was just wondering if there was a way I could share the private data with another class, without including it as a object of that class, for example, i have 2 classes, class A and blass B. class 'A' reads in from a txt file and stores its data … | |
Help me to implement file concept in this problem , i want to save the structure data to a file and Display from file.Please help me. [CODE] #include<iostream.h> #include<string.h> #include<iomanip.h> #include<dos.h> #include<conio.h> #include<stdio.h> #define max 20 struct employee { char name[20]; long int code; char designation[20]; int exp; int age; … | |
hi guys, just want to know how to do alert via email when a new record updated in database. i use php and mySql. thanks. | |
I have designed an age calculator which given a person's age, works out given a person's age, works out how many days they have lived for, and how many hours they have lived for. My answer: var age, month, day, hour: integer; begin writeln ('How old are you?'); readln (age); … | |
Hi i wrote a code to upload 4 images. I wrote code and works fine for my need. I wrote some thing like this. file1,file2.... file4 as the names of file fields. and in the process.php page like this [ICODE]if ($_FILES['file1']['name'] != '') { //// file upload } then file … | |
Hiiii alll At present am doin a small project in windows application with C# as its code behind language. Now am in problem that i'm not able to connect sql server with my application. Its throwing an error that[COLOR="Red"] "sql default settings does not allow remote connections. connection can not … | |
I have come up with a day comparison script and it worked fine until daylight saving kicked in. Now all the dates i insert into my database are 1 hour faster. So current date plus 7 days = 7 days + 1 hour. How do i solve this? The code … | |
Is it possible to have an include function several times on the same page pointing to the same php file? Here is my setup: I have a page (form.php) which uses forms to run a query in another (results.php). This page displays several tables based on how many records are … | |
I was testing which constructors are called in when a derived and then base class objects are created. My program couted 0 if it was the base class and 1 if it was the base class. I ran it and it returned 01 for the derived class and 0 for … | |
Hello, I am reaally green to C++ 1. I am trying to create a code that calculates and then produces a small invoice. Input: Company Name Input: Account Number Input: Opening Balance Input: Account Type: I=invoiceReceived P=invoicePayment #endTransaction Input: Amount Invoiced Input: Amount Paid If someone with experience were to … | |
Dear all, I had set the 17- character long transaction id, that i got from the paypal in the successful completion of the order transaction, in the DoAuthorization request to paypal.. But i am getting an invalid_transaction_id response from the paypal. What will i do.. Please help anyone.. Thanks | |
i'm asking for homework help. i've come to my wits end trying to figure this out and it's due midnight tommorrow est. i'm supposed to write a program to read an inventory file and create the inventory report ( i did that with the given data minus the 5 column … | |
Hi folks, I want to write grammar rules for a form entry application. On the form/frame I have some fields: Customer name, telephone number I check the validity of the textfileds before data saved. What can be the grammar for a telephone number and name considering that users shud not … | |
I put together a simple speech recognizer. It works fine, but when I click the X to close it, it takes forever to unload... can I do anything about it? [CODE] Dim WithEvents RecoContext As SpInProcRecoContext 'RC Dim Grammar As ISpeechRecoGrammar Dim Recognizer As SpInprocRecognizer Private Sub Form_Unload(Cancel As Integer) … | |
Hello, I am just starting to get into mysql and have a quick question: I have a table that has a datetime field, and i simply want to store that datetime into a variable and be able to print it, and also compare it to the current date to see … | |
1.Creates a text file that lists the operating system of your computer, the computers name and username. Use appropriate environmental variables. 2.Append to the text file a listing of the files and folders in the current directory. 3.Create a variable called myName and assign your last name to this variable. … | |
Heya im having a little trouble getting parts of the project to compile; [code=syntax] fscanf(fi, %f, &Max); [/code] this is continualy displaying the error message "syntax error before '%' token " i am compiling on Dev- C its probably simple but help is much appreciated thanks here is the program … | |
Please help me with this code! Here is the assignment. Project Specifications: Each part of this assignment is a piece of the next part--it builds upon itself. You should submit each part as a separate program. But, the final program is a complete program built upon all the other parts. … | |
Here my code to fill listview. When the rset are a few the code work fats but with 154.478 rset the code use a very very time, have asuggestion? A frined suggest me to loop all rset and fill array next loop the array to fill listview. Other friend suggest … | |
How to crop picture(.tif) | |
Hi all.. im kinda new to vb..i tried to connect my data control to a text file generated by my visual data manager, but every time i tried to run the app..it says that i dont give a right location for my file, i dont specified the location from the … | |
I am in my final year in university, and I need help in a project topic on mobile programming. I want to develop a mobile application but I'm not so sure of what that application will do. Please a quick reply would be highly appreciated because I expected to get … | |
i have this kinda game, which inputs an integer.. but my problem is, when the user inputs a char variable, the program stops. it should say that the user entered an invalid box number. but it stops scanning when the user enters a char variable. help me pls... here is … | |
Good day!. I want to copy all the folder contents to a certain location. To be specific, i have a folder named (webproject) relative on my vb program path.When the form load, i want to copy all the content of this folder(webproject) to C:\wamp\wwww\onlineweb\.I just really dont know how to … | |
how do i exicute python scripts in a c++ program? and what uses would it have? | |
how can i create gtalk bots. I have seen tutorials for making AIM bot here.[URL="http://www.daniweb.com/forums/thread49.html"]http://www.daniweb.com/forums/thread49.html[/URL] and also to make gtalk bot through Imified but this site doesn't work anymore. Besides it doesn't give much options. Can anyone provide me good tutorial for how to make gtalk bot from scratch... | |
Hi-DaniWeb community! I'm New here and already have a question: What software or program used <URL SNIPPED> Best Regards hilimili | |
Hi there, i m not a very advanced programmer so i have now come up against a brick wall. i need to use a VB code preferably on a command button, whereby the user enters a keyword into a text box, clicks the 'Search' command button, and then a procedure … | |
Table does not display any border when php outputs data from MySQL. I'm trying to set the following styles for table: border-width: thin border-style: solid Below is the snippet of code I'm having trouble with. print( "<table border-width = thin border-style = solid cellpadding = 1 width = 1400px>" ); … | |
Id like it so that when you click the 'x' button to close the program it doesnt just end. How do I apply code to the 'x' button? All help is appreciated, thanks in advance -Russell aka Rabbit |
The End.