199,114 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for hawisme000

hi every1 , i need a help pls on how i can make an installation form for my project, i mean, like when a burn my project on a CD, then after installing it, there will be a installation form(it will auto run), then that form will store the project …

Member Avatar for hawisme000
0
91
Member Avatar for tonyaim83

Hi. Hi My program takes the user input of the location where the directory need to be created. I found Windows API: CreateDirectory() but then for Linux i need to write some other function. Is their any function which can work for both operating systems. Kindly help

Member Avatar for Ancient Dragon
0
98
Member Avatar for tonyaim83
Member Avatar for Salem
0
151
Member Avatar for kindheart07

Hello everyone, please i am new to progamming in general and i have a project to submit this friday i have been trying to find a way to write the codes but all i keep getting is errors and another problem is one of the program i have to write …

Member Avatar for Acidburn
0
137
Member Avatar for jsmith9990

Hai . I'm Smith. In this section We have to discuss about JSP. I want to know more about JSP.I thnk the people interested in JSP will help me out to find out some answers. How is a JSP processed ?

Member Avatar for samtben111
0
88
Member Avatar for jitterson
Member Avatar for jasimp
0
90
Member Avatar for blondie.simon

Hi I have written an application that runs in a window about a quarter of the size of the screen. If I have another window open on the screen at the same time and then drag that program across my application it looks like everything in my application gets wiped …

Member Avatar for blondie.simon
0
93
Member Avatar for youmak

Hello to everyone :) I'm new here :) I have some problems with MIPS, I would like to aks for help or advise, how to copy/move content of the normal register of CPU unit (register like $t0,$t1 and so on) to FPU cooprocesor (register $fp0,$fp1) I have in register $t0 …

Member Avatar for youmak
0
389
Member Avatar for PoovenM

Hey guys, I was wondering, in Java the following is allowed: [code=java] Class[] classList = new Class[10]; classList[0] = System.class; [/code] Can this be done in C#? Thanks! :icon_smile:

Member Avatar for PoovenM
0
113
Member Avatar for henpecked1

I've just started a C++ class so I am a total beginner at this. I am having a problem figuring out how to pass by reference, and pass by value using the enum data type. The data types are as follows: enum suits {hearts, spades, diamonds, clubs} enum cardValues{two=2, three, …

Member Avatar for henpecked1
0
128
Member Avatar for msaenz

Hi I have this code here and I was wondering if anyone can explain to me how it works... I see the output and all but I get lost from sub2 to sub3 [code] #!usr/bin/perl my $a = "one"; my $b = "two"; my $c = "three"; my $d = …

Member Avatar for msaenz
0
83
Member Avatar for fith

Im am making my first game and one of the files just won't compile. I keep getting this error whenever I try to compile this file (this is only the problem part): [code] if (answer[0] == 'y') { if (player->GetGold >= 10) // PROBLEM { player->SpendGold(10); cout << "You find …

Member Avatar for WaltP
0
358
Member Avatar for raghu.8

hi jerry thanks for dropdownlist, but i got another problem regarding updatating a profile of a login member, i created a storedprocedure for login information just look at my codding CREATE PROCEDURE sp_UserValidation ( @Username varchar(50), @UserPassword varchar(20) ) AS IF EXISTS (SELECT UserName FROM LogIn1 WHERE UserName=@Username and UserPassword=@UserPassword) …

Member Avatar for raghu.8
0
232
Member Avatar for Nareshp_123

Hi I need to make application similar to excel sheet .like i have 4 columns where in (1 row will be static to display header) and below 1 column will have a dropdownlist and remaining 3 columns are textboxes user should be able to add as many rows as possible …

Member Avatar for Nareshp_123
0
170
Member Avatar for azadder

I am working on an IDE for a specific language. One of the features that I want to implement is syntax high-lighting. The way I plan to go about it: When the user presses a key, a function is called with the entire line that the user is editing as …

Member Avatar for azadder
0
869
Member Avatar for ConfusedMuchMor

"An attempt to call a field (rather than a method)" What is the difference between these two??? simple english please I'm confused enough as it is!

Member Avatar for JerryShaw
0
280
Member Avatar for planktonfist

I'm wiring a program where I have a file with city, state, population size laid out as follows; 24 El Paso, TX 577415 Indianapolis, IN 783612 Detroit, MI 925051 Fort Worth, TX 567516 Los Angeles, CA 3798981 Washington, DC 570898 etc... with 24 being the number of elements in the …

Member Avatar for planktonfist
0
126
Member Avatar for Z101

Hello, I've nearly finished writing a program that converts Roman to arabic numbers, but i've run into a problem to do with the "Batch Mode" of the program. The batch mode involves asking the user to type in the file name (a text file) which contains Roman numerals that need …

Member Avatar for Z101
0
181
Member Avatar for James890

Hi. Can someone help. I'm working with a list (not a listBox) I have a list of staff called staffList and add a new staff member as staffList.add(staff), where staff is an object containing the staff members name and salary. I have a staff class and a staffList class for …

Member Avatar for James890
0
72
Member Avatar for OnIIcE

Hello, im trying to make a function that can paint a box of any size (and colour, using any ascii char) to the screen in order to make a game in asm. My problem is, when i try to make it print just one full line, it dosnt seem to …

Member Avatar for Evenbit
0
203
Member Avatar for dgarbarino

I am looking for the easiest way to set up a table on a page that needs a password to see. The table needs to be able to be sorted by clicking the header of the column you choose. Alternately, or inclusive I would like to search for data on …

Member Avatar for jenishkottaram
0
93
Member Avatar for mrmrmrmr

Hi, I am trying to write a linux code which will listen on a UDP port and revceive messages from Zyxel modems. (Zyxel modems have a remote packet tracing feature which uses UDP) I achieved most of the task. The received packet is assigned to a string (char[1024]) variable. But …

Member Avatar for Salem
0
171
Member Avatar for tamlo

Am trying to write a structure to store weather data for a particular month. total rainfall High temp Low temp Average temp Am trying to calculation but not getting anywhere. I need help please. (1)Not sure how to add the 12 rainfall to get the total rainfall and the average …

Member Avatar for Lerner
0
163
Member Avatar for tweezers

Um i dont know i posted this in the right place but i whana Create a online game for an example [url]www.enternum.net[/url] i whana build a game like this or like this game cold u help me out please

Member Avatar for binoj_daniel
0
296
Member Avatar for jech

Hello, I'm trying to use [URL=http://mediainfo.sourceforge.net/]MediaInfo[/URL] library in python via ctypes. I tried this code: [CODE]import ctypes milib = ctypes.cdll.LoadLibrary("mediainfo.dll") handle = milib.MediaInfo_New() milib.MediaInfo_Open(handle, "D:\temp\video.avi") [/CODE] Unfortunately the last line complaints that there are not enough parameters for that function. I based this on a sample Delphi code, which is …

Member Avatar for jech
0
505
Member Avatar for safira

hi..can u help me give an info on how to load an image(eg. .bmp,.jpeg etc) in c++ turbo and display it into 2D array.thank you so much for the help..really appreciate it.

Member Avatar for WaltP
0
76
Member Avatar for syndal

hi all, I am new to this site and hoping to get a solution to my problem.I am using ethereal to capture the packets in the network and the file is saved as .cap file.now using c prog i should filter out only dns packet in that file.can any one …

Member Avatar for WaltP
0
118
Member Avatar for cruisx

Hey guys first time learning VB6 and i have to do a Hangman project for my Gr 10 class But i need some help. I am have trouble figuring out how i make the dashes come out in my label box when someone inputs a word. Like say someone inputs …

Member Avatar for hkdani
0
152
Member Avatar for DylanWright

[code=c++] #include<stdio.h> #include<conio.h> #include<alloc.h> #include"C:\windows\desktop\input.h" #define MAXBITS 32 #define MAXNODES 512 #define MAXSYMBS 256 int hmin(void); void hinsert(int,int); //First structure struct codetype{ int bits[MAXBITS]; int startpos; }; //second structure struct nodetype{ int freq; int father; int isleft; }; //The structure defined typedef struct hlist{ int pos; int hfreq; struct hlist …

Member Avatar for Salem
0
108
Member Avatar for lsprog

I am trying to implement heap in CLisp. I have already done it by makin a linear data strcuture with no left / right pointers. But now I want to use a nested list format which contains (el () ()) at the highst level. The problem I am facing with …

Member Avatar for hopalongcassidy
0
193
Member Avatar for AnzJ

Hi, Can anyone tell me if it is possible to edit the native web-parts that come with sharepoint? if so, where do i find the code for these webparts? I would ideally like to make a copy, and edit that to provide extra functionality. The webpart in question is the …

Member Avatar for AnzJ
0
93
Member Avatar for majestic0110

hi all, I am trying to design a game app that uses a swing gui as a main menu. so far I have been a little confused as to how I get my 'start new game' button to actually launch the game. I have googled event handlers and cannot seem …

Member Avatar for majestic0110
0
82
Member Avatar for jay64

I contacted the host of my project for a problem I was having with inserting data from a form into a db on their server. One of the answers they gave me was: [quote]...for future reference, never declare a prefix, always leave this option blank.[/quote] I understand what a prefix …

Member Avatar for jay64
0
1K
Member Avatar for scru

Is there a mechanism for counting requests to specific files on a server. What is it? Also, what if the file is not php? What if I wanted to count how many times an image or xml feed is requested? How do I do this?

Member Avatar for w_3rabi
0
113
Member Avatar for amylawson

Hi, i am very new to php so please forgive me if i sound stupid.i have a tell friend php code [B]<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd"> <html xmlns="http://www.w3.org/1999/xhtml" xml:lang="en" lang="en"> <head> <title>iTell from urQuiz</title> <style type="text/css"> <!-- .style2 {font-size: 12px} --> </style> </head> <body> <form action="<? echo …

Member Avatar for nav33n
0
134
Member Avatar for chicago1985

I have a class that fetches a record but dont think I need to use List object because I am fetching one record and not an array of records. [code=java] public List getRecords(){ ResultSet rs = null; Statement stmt = null; Connection connection = null; List rows = new ArrayList(); …

Member Avatar for Ezzaral
0
115
Member Avatar for aan@ucsc

Could I run a java program without installing the java vitual machine on the computer?If yes how could I do it?

Member Avatar for Ezzaral
0
128
Member Avatar for hectic

i have sorting program, it works well when coded in simple way but when used recursion it give the floating exception (core dumped), it have tries to debug and it show error in the division stage, it tires to do typecasting also, but does not work out for recursion [code=c++] …

Member Avatar for Ancient Dragon
0
257
Member Avatar for PoovenM

Hi all, I'm not sure how to phrase this question... I have a table that requires a foreign key of anything table - this foreign key is automatically generated and the key field in the 'foreign' table. So I have the following situation (kind of): Table Observation [INDENT][B]Time_Stamp[/B] - [I]primary …

Member Avatar for PoovenM
0
134
Member Avatar for ashok1424

hello i would like someone to help me to create a code in C for prompting a user to name a text file and then open it please help me ASAP thank you.

Member Avatar for Nick Evan
0
104
Member Avatar for wijitha

hi all i have a integer array of fixed max size(assume 100). But the actual number of stored integers are less than max value(assume 50).Because it is change dynamically. How can i get the actual number of integers stored in the array. regards wijitha

Member Avatar for Nick Evan
0
254
Member Avatar for ybn1197

PHP newbie here again looking for some more help. I am trying to create a html table using information queried from a database. I would like three columns and the number of rows would be dynamic based on information gathered during the query. Briefly, it would look like: picture1 | …

Member Avatar for Nick Evan
0
851
Member Avatar for Shalinko

Recently had to re-install all of pc...not a prob as all (except db) was backed up to seperate hd. I develop locally using MSSQL client tools and adp's and then upload new tables as and when ready. I had done quite a bit of work when pc died, and now …

Member Avatar for kb.net
0
102
Member Avatar for maHvic

my teacher said that it is easy to learn jave when you already know how to program in c++.. why is is it so? whats the difference and similarity of both languages... thanks.....:-/

Member Avatar for Nick Evan
0
101
Member Avatar for mpatram

Hi All, I want to know how to start the VB.Net programming for AutoCAD customization? My requirement is I've to develope some GUI screens where the user will provide all the inputs which is needed to draw a layout. The GUI screen also caontains some user controls which I can …

Member Avatar for mpatram
0
122
Member Avatar for maHvic

can you please help me how to convert characters to binary... for example: you have to convert the word "hello world" to its binary form... i dont know how to do... can you please give me some advice...

Member Avatar for Nick Evan
0
242
Member Avatar for Dell XPS

I have made a program and published it using vb 2008... this program saves various values in a txt file.... but when i open the folder where the program is installed there is no txt file.... Sois it safe to store and retrieve passwords from a txt file?? Think it …

Member Avatar for debasisdas
0
111
Member Avatar for chaosatom333

hi, i can't seem to a.out the program for some reason. When i type in a.out, the cursor just stays there. I think it goes in a infinite loop. I am trying to read two text files and then putting the atomic number in order. what seems to be the …

Member Avatar for Nick Evan
0
117
Member Avatar for nazrulcckl

Dear Sir I am new in vb. I am facing a problem. I create table in Access. where(ID, Name, Salary) field is there. I Make front page with VB.6 now i want to input data name, salry. ID should be generated by machine increased one by one. How i will …

Member Avatar for debasisdas
0
386
Member Avatar for thanigaimani83

Hi guys I can used arraylist.I want to use that arraylist values in many places of my pages .. i putting arraylist values in session state . if my page is postback that arraylist getting values are incorrect,until page is not postbak arraylist getting correct value. whats problem in page.. …

Member Avatar for shaulf
0
77

The End.