199,114 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for NwS

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 …

Member Avatar for NwS
0
201
Member Avatar for peter_budo

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

Member Avatar for techkar
0
109
Member Avatar for Pankaj.Patel

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 …

Member Avatar for Pankaj.Patel
0
104
Member Avatar for uth

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 …

Member Avatar for uth
0
93
Member Avatar for manish Kishore

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 …

Member Avatar for alpha_foobar
0
106
Member Avatar for aqs84

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 …

Member Avatar for celikada
0
198
Member Avatar for blacklocist

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 …

Member Avatar for blacklocist
0
168
Member Avatar for Blujacker

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

Member Avatar for vegaseat
0
99
Member Avatar for butterflyTee

[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 …

Member Avatar for alc6379
0
503
Member Avatar for Ries

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: …

Member Avatar for loanskey
0
161
Member Avatar for monfu

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 …

Member Avatar for campkev
0
100
Member Avatar for butterflyTee

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): …

Member Avatar for bumsfeld
0
92
Member Avatar for an051682

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

Member Avatar for server_crash
0
94
Member Avatar for Coach_Nate

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. …

Member Avatar for server_crash
0
258
Member Avatar for butterflyTee

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 …

0
69
Member Avatar for SharpOne

:-| 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; …

Member Avatar for alc6379
0
66
Member Avatar for geez85

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, …

Member Avatar for geez85
0
110
Member Avatar for web developer

[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 …

Member Avatar for web developer
0
259
Member Avatar for Brims

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 …

Member Avatar for leelee
0
98
Member Avatar for Dark_Omen

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 …

Member Avatar for jwenting
0
185
Member Avatar for NarenderKumarP

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 …

Member Avatar for NarenderKumarP
0
387
Member Avatar for SharpOne

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 …

Member Avatar for blacklocist
0
108
Member Avatar for puppy

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.

Member Avatar for puppy
0
101
Member Avatar for tester_geniusd

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

Member Avatar for loanskey
0
120
Member Avatar for sam1

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

Member Avatar for sam1
0
182
Member Avatar for rookieinC++

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 …

Member Avatar for WolfPack
0
116
Member Avatar for tiffosi

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 …

Member Avatar for WolfPack
0
222
Member Avatar for YoTaMiX

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. …

Member Avatar for YoTaMiX
0
119
Member Avatar for Questor

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?

Member Avatar for campkev
0
142
Member Avatar for walkerst

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 …

Member Avatar for anuradhu
0
301
Member Avatar for fbalangue

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 …

Member Avatar for anuradhu
0
617
Member Avatar for sam1981

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: …

Member Avatar for anuradhu
0
103
Member Avatar for takcw

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 …

Member Avatar for anuradhu
0
113
Member Avatar for crws416

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 …

Member Avatar for crws416
0
121
Member Avatar for modernage

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 …

Member Avatar for modernage
0
456
Member Avatar for server_crash

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 = …

Member Avatar for server_crash
0
157
Member Avatar for jlouang

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 …

Member Avatar for jlouang
0
352
Member Avatar for manish Kishore

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 …

Member Avatar for Comatose
0
98
Member Avatar for Emperor456

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 …

Member Avatar for Emperor456
0
113
Member Avatar for Dark_Omen

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

Member Avatar for Dark_Omen
0
562
Member Avatar for softwarecaz

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 …

Member Avatar for Comatose
0
97
Member Avatar for mwo0002

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. …

Member Avatar for Lerner
0
124
Member Avatar for Ene Uran

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 …

Member Avatar for Ene Uran
0
118
Member Avatar for Warden

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 …

Member Avatar for Comatose
0
152
Member Avatar for sandip.juit

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 :!:

Member Avatar for Comatose
0
81
Member Avatar for mrcb

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 …

Member Avatar for mrcb
0
276
Member Avatar for joshp

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 …

Member Avatar for joshp
0
157
Member Avatar for bg123

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 …

Member Avatar for Bench
0
178
Member Avatar for sub-zero

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 …

Member Avatar for sub-zero
0
72
Member Avatar for LEGACYONE_2006

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 …

Member Avatar for SeekAnswers
0
87

The End.