199,114 Archived Topics
Remove Filter ![]() | |
Heya there, This is my first post here so plz be nice :P The first changes i want to make is remove/disable the registration and login form from the forum itself and integrate this into the rest site.. I've been trying to do this the last 10 hours and posted … | |
Can somebody suggest some good and cheap JSP provider with MySQL (UK if possible). ( :lol: know cheap but i'm student and need something to practice on as uni service has limitations) Thank you | |
How do I show Tab control on my form in Win XP style Look? i have set the Drawmode=OwnerDrawFixed while Xp Style Look is disappere in vs.net2005. I tried to use Application.EnableVisualStyles but that doesn't change in Tab Control. i have used Skybound Component through that i can achive it … | |
I am trying to execute a batch file which in turn executes an exe and writes output to a file, through java. I do not know why but the output file is not always written. Sometimes the program terminates without writing the file and sometimes it does. Any suggestions? Is … | |
Hi All, I am generating the Rows Dynamically in the table. Problem is that for the first row calendar pop up window is coming and for the other window it is not coming. I am pasting the code.... plese let me know where is the error. [HTML] <html> <head> <title>RFF … | |
Hi, For my project I want to write program in C# (VS.NET 2003) that can connect two Bluetooth devices and transfer text message between them. I have no Bluetooth device with my PC, so I will use USB Dongle for Bluetooth connectivity. Any body can help me from where should … | |
Hi All, Well where I work they are having a problem and I had a solution. Well I was reading on this [URL]http://www.c-sharpcorner.com/UploadFile/mgold/HowtoOepnandReadanExcelSpreadsheetinaListViewin.NET11282005034134AM/HowtoOepnandReadanExcelSpreadsheetinaListViewin.NET.aspx?ArticleID=45ca62cf-fb3e-4f0b-b9a4-031b641aae3c[/URL] Well what it does is pull a named range, sticks the data in an array, my software does it's thing, then puts the changed data back into … | |
I am using script from coed snipet how to print a page, but i dont know way how to say to printer which font and which size of font set, which colour of background and foreground.Please help Thanks | |
[code] # windchill.py # tpm # A program that prints a nicely formatted table of windchill values. from math import * def windchill(t, v): c = 35.74 + (0.6215 * t) - (35.75 * v ** .16) + (.4275 * t * v ** .16) return c def main(): print … | |
This is my code but I get the error Parse error: parse error, unexpected T_STRING in /home/projecte/public_html/index.php on line 48 When I try it, any ideas on whats gone wrong [CODE] <?PHP switch ($pg) { case login: $dbh=mysql_connect ("localhost", "projecte_ries", "*********") or die ('I cannot connect to the database because: … | |
Dear All, I have a value, strObjectAPIID, and I am comparing it to a dataset value in a loop. What i want is, if the value is equal, do not do anything, but if it is not equal, write it to the table. However, i have to check the value … | |
def windchill(temp, vel): wc = 35.74 + .6215*temp - (35.75*vel**.16 + .4275*temp*vel**.16) return wc def main(): print (" __ __ __Temp /n") print (" Speed /n") print ("-20 70 10 0 10 20 30 40 50 60 ") for x in range (5,55,5): print x for y in range (-20,70,10): … | |
Hi, I am an Engineering student. i need a java code that can convert Alphabets to numbers. i.e, a to 1,b to 2.................................z to 26 kindly Help | |
Sorry, may seem like a dumb question, but I haven't seen anyone else ask it on here. I'm trying to create a stack of doubles, by casting them as I pop them out. The only trouble is that the compiler (eclipse) won't let me cast an object to a double. … | |
I WRITTEN THIS PROGRAMM IN 2 WAYS(RE-WROTE IT OVER AND OVER), AND ITS STILL NOT RUNNING CORRECTLY. IS THERE OTHER WAYS THAT IS PROGRAM CAN BE WRITTEN. I AM SO FRUSTRATED, PLEASE HELP ME. THANK YOU. 1st way: # windchill.py # tpm # A program that prints a nicely formatted … | |
:-| Why won't this code work? [code] using System; using System.Windows.Forms; namespace Practice { class Practice { public static void Main() { // declare and assign a string variable called human string human; human = "Walking & talking life"; // declare and assign an int variable called mind int mind; … | |
hey i jst need a lil help with dis... [code]void main() { for(int polygon = 0;polygon < 3;polygon++) { int i, j; const int max =5; int end; int sort; int ymin = 21; int start; int ypos; int vertices=0; if(polygon == 0) { float x0[] = {20, 40, 90, … | |
[B]Hi all The problem is the following : [list]I am in a project that contains a table of users[COLOR=Green](user_tbl)[/COLOR] and another table of groups[COLOR=Green](Group_tbl)[/COLOR] . and each group can contains multi-user by [U]Group_Id[/U] which is foreign key in [COLOR=Green]user_tbl[/COLOR] . [/list] [list]I am now about creating a trigger that happens … | |
Hiya Im designing an online music video library. Ive already done my registration and login scripts to register a new user. I have decided that to store the mp3s im gonna have a file system instead of storing them directly in the database. Can someone please direct me on How … | |
Hello everyone, I am having trouble getting my Javadoc to work. It runs but it doesn't show anything in the HTML file that it creates. BTW I am using java 1.5.0_6 and I am using the latest version of Eclipse. I don't know why it didn't work, and I was … | |
Hi All, Following code gives me an error when I use text field in CSV file instead of float or integer fields. `matrix_points[cnt][4] = atoi(line);` May be the problem with above line. Please see the below code char matrix_points[6][8]; std::ifstream input_file("C:/NDA/NissanNewApplication/Dev/CommonErrorManager/Src/ErrorMessageList.csv"); int cnt(0); printf("initial valie of cnt = %d\n",cnt); char … | |
Hi, I've just started out learning C# / .NET at a fast rate. Then, I plan to look for company to get experience even if working for free. Any ideas or suggestions would be appreciated. Anyone know where I can gain experience when I learn enough without certification and only … | |
Hi, I'm trying to compare elements in two different vectors. I wrote this: if (a[i] = b[j]) same = true; and the compiler said this about the first line: assignment of read-only location What does "assignment of read-only location" mean? Thanks. | |
Hello I am develop script for upload/download files on server. I am create simply php file: donload.php for download image to user and log statistics of downloading. It is very simply file but it take much server resources (memory). How i can reduce it? Kind regards, Dmitry | |
hi everyone, I was wondering, for the class diagrams do i have to create for each use case one class diagram or it doesnt depend on use case.... thank you | |
Hi, I want to display integers 0-99 in randomize order. I can get the list on integers, but can not do in randomize order, I used rand and srand, but it’s not giving me unique numbers. Can anyone help me? -thanks Here is what I did so far… //* This … | |
Hi all, I am trying to share data between two simultaneously running programs. I am writing the output of one program to a file named xpos.out and reading the data in it from an other program which is running simultaneously. The value in xpos.out changes each time. So when i … | |
Hello to you all , I have a program who i want to copy one input.txt to a output.txt and for some reason it duplicates the string and it doest create a full duplicate . i am over this for a few hours now and i can figure it out. … | |
The table I'm searching is varchar. The entries I'm interested in are only numeric. But for some reason there's mixed string/int entries. How can I chose only the numeric values? | |
need help with a search form i've been asked to do for a friend. i've done forms in the past, but not one like this. there will be 2 pick lists on this form. to keep things simple, the database has 2 fields: main_heading, and sub_heading. I can generate the … | |
I would like to create a page which will pull news items according to today's date. What I have is a database which users input thier news information. But now I need to have the information output to a page which will change daily according to the current date. The … | |
I have recently developed a web based database application using microsoft access and dreamweaver. I have used coldfusion to link the database to the html webpage. The website runs successfully at my clients address. However, after transferring all the files to my university web space I receive the following error: … | |
Hi everyone, I'm a new dreamweaver beginner and hope someone can help me. I have create a link where you can click and return back the last page, but the problem is when you click to go back the last page, you will lost all information. What should I do … | |
Hi all, I have taken some code to read a file into an Byte array, which is then returned to another part of my code, below is what i have. [CODE] public void jButton6_actionPerformed(ActionEvent e) { String Filelocation = "c:\\temp\\hello.txt"; try{ InputStream is = new FileInputStream(Filelocation); //get the size of … | |
How do you reverse a linked list using recursion, and return it as a string? String backwards(IntNode head): Create and return a string containing the values in the input list, separated by commas, in reverse order. The last number should not be followed by a comma. Spacing within the string … | |
I've got the following code: [code] template <typename T> int Histogram<T>::get_occurances(const T& obj) { map<T,int>::iterator find_occur = frequency.find(obj); if ( find_occur == this->frequency.end() ) { return 0; } return ( find_occur->second ); } [/code] The following line always gives me an error saying ';' expected before find_occur. map<T,int>::iterator find_occur = … | |
I don't know if I read the book right but my array is not working on my months .My instructions is this assignment uses an array of strings: write a C program that asks the user for the month, day, and year read in the month, day and year (as … | |
Hi All, I am creating a html file where rows are being Genereated Dyanmically. Now I want to pass the values of Input box to the perl File. I am not able to send the values of row to the server side. Can U please let me know Where I … | |
Hi Im creating a new online rpg game that is currently under construction. The game will be set up just like the well known runescape but set in the Ancient world! All the info you need to know is located here... [url]http://emperor462.proboards105.com/index.cgi[/url] But what i wanted to know is if … | |
Hey does anybody know how to make window forms using openGL in c sharp. Or know of a tutorial online, i've looked but turned up nothing useful, just that csGL is a good library to use for openGL projects. Thanks | |
Hello I have 3 frame, in each I have 3 option buttons, If the user enters option 1, it should make option 4 and option 7 not available If the user enters option 2, it should make option 5 and option 8 not available, but make rest of the option … | |
Thanks to some people who has already given me some pointers and insights, I wrote down on paper the layout before I started putting them into code, which I eventuall did and they're in code now. I tried to run it and gave me a list of lots of errors. … | |
I am fairly familiar with C, but new to Python. Does Python have something like the handy C conditional expression? For example: [code]// C conditional expression x = a ? b : c; // if a is true then x = b else x = c // here used to … | |
I got a sirious problem . I need to build a little program , that will download a file from the internet and showing the download's progress on a progress bar or something . Now , a very good thing you can do for me ( since i am a … | |
hai, :cool: sandip :confused: needs your help, subroutine for the aray of 10 command buttons as chosen in calculator project which shall return the level values assigned to it :!: | |
Good evening everybody. I'm trying to add values to a database. The script is connecting to the server just fine. It is finding the correct db just fine. The issue is when I try to add stuff to the db... Heres the code: [CODE]<?php include 'dbconnect.php'; $edname = 'bob'; $edemail … | |
I've recently become the defacto DBA of two MSSQL databases at work because I am the only one with SQL experience. I have been asked to do some tasks with the databases but this requires and understanding of their structure. I cannot find anything akin to MySQL's mysqldump for mssql … | |
I'm trying to do a program that takes two vectors and computes the alternating sum, appends the vectors, checks whether two vectors have the same elements in some order, ignoring multiplicities, and removes duplicates. Any help would be appreciated. [CODE] #include <iostream> #include <vector> using namespace std; /* Functions on … | |
Hi, I'm writing a program and it saying their are two missing return statements . can u help me to find the two missing return statements ? :-| [PHP] import java.util.*; import java.io.*; public class DayOfWeek { static Scanner s = new Scanner(System.in); static public class Day { private String … | |
I have the following program working. It takes an array of numbers and returns the index value of each number. However, what I want it to do is to get an integer from input from a user and return the index value of just that integer. If the integer is … |
The End.