199,114 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for saralamanoharan

hai all Good Morning. I am trying to show a OLAP Report created (using cube in SqlServer 2000) in crystal reports in a asp page. i used smart activex viewer for this but the data alone in the crystal reports r shown. the drill down structure does not appears. Also …

Member Avatar for venu@baylogic
0
170
Member Avatar for harinatt

hi i need ur guidens to create websitebuilder. It look likes first i have a button like "create your own pages." when user clicks on this link you should get different opton like > menu bar creation > style sheet upload for that site > new page creation etc. different …

Member Avatar for R0bb0b
0
103
Member Avatar for javaAddict

Hi All, I am an experienced java programmer for many years. But my problem is that the final assignment that was given to me for my master at the university, has to be written in VB .NET. Do you know any good books for learning VB .NET for someone like …

Member Avatar for jwenting
0
149
Member Avatar for CrackWizard

Okay. I play a game called chain of command. It's abandonware, the original designers went bankrupt and the source code got lost. The server and game files and such were all on a backup server and acquired from one of the original designers. I was just told we need to …

Member Avatar for Necrolis
0
250
Member Avatar for thehype2049

Ok, so im doing an assignment and Here is the question: -------------------------------------------------------------------------------------------------- Using the base class Person which has two member variables called name and birthday [both of type string], derive two separate classes from Person, called Student and Professor. The Student class has a major [string] and a gpa …

Member Avatar for thehype2049
0
90
Member Avatar for websurfer

Hello, was wandering if anybody out there can help me with the following: We use a third-party shopping cart, but they dont really make it easy to be able to buy "memberships". The way we have it now, is that they buy a "membership-card" (say item code: CLUBMEMBER", which when …

Member Avatar for kaleshwar
0
114
Member Avatar for ff4930

I am using Maps from the STL to insert a polynomial. The Key is the exponent and the data is the coefficent. Basically I want to add/subtract and multiply them. I have the addition/subtraction down but when it comes to multiplying I have to add the exponents and multiply the …

Member Avatar for Alex Edwards
0
116
Member Avatar for sreein1986

how to print html form directly. i.e is there any programatic way or is there any tag to print html form can you send any body code in ASP or dot net any thing i want

Member Avatar for sreein1986
0
70
Member Avatar for salman213

very simple question: what is the most easiest way to do the following I have two variables a=1; b=2; how do I make it that c= a,b so that c=12 I dont want to write [code]c=12;[/code] because a and b change according to user input. Thanks, this should be solved …

Member Avatar for Alex Edwards
0
345
Member Avatar for tefflox

Hi, I'm working on the following code for a google gadget [[URL="http://gravityway.com/gadgets/00"]view gadget[/URL]]. It is kind of neat the way it is, but the question I've got may be obvious, regarding the mouseover function. It needs to break on mouseout. I guess it will need a loop. Any help is …

Member Avatar for tefflox
0
103
Member Avatar for pixeldude

Hi there.... 1stly sorry for the novice and beginner question but I really need help since I've been get fiddling to figure out the error but still have no idea whats wrong with it...here are's the code I'm using[code] #include <iostream.h> #include <stdio.h> #include <conio.h> #include <string.h> #define MaxSize 100 …

Member Avatar for pixeldude
0
99
Member Avatar for ninjaneer

Hello community. I am writing a program that will use multiple threads to run MATLAB functions inside of Cpp by using the MATLAB compiler to create a DLL. I have already written the MATLAB DLL and I have everything linked up just fine, but now I need to split this …

Member Avatar for Ancient Dragon
0
140
Member Avatar for salman213

Hey, here are two codes and with one slight difference they do different things [B]CODE 1[/B] [code] #include<iostream> using namespace std; int main() { char array[2]; int i=0; while (i<2) { cin>>array[i]; i++; } cout<<array[0]<<' '<<array[1]; } [/code] [B]EXAMPLE OUTPUT:[/B] [code] two words t w [/code] [B]CODE 2[/B] [code] #include<iostream> …

Member Avatar for salman213
0
149
Member Avatar for python_bite

[code=python] class A: id = "" fld = [] def __init__(self, id): self.id = id def method(inp): a = A("a") b = A("b") c = A("c") a.fld.append("Histogram") a.fld.append("Dendogram") b.fld.append("Milligram") b.fld.append("Pictogram") c.fld.append("Pro--gram") c.fld.append("Dodge-ram") print a.fld print b.fld print c.fld inp.append(a) inp.append(c) inp.append(b) #__main__ inp = [] method(inp) for ins in inp: …

Member Avatar for vegaseat
0
126
Member Avatar for sciwizeh

my secondary project at the moment is a complex calculator program, a graphing calculator, actually. i want to write a parser for it by hand, as it needs to do very specific complex stuff, but i cant find anything on writing a parser. i have a start, it will split …

Member Avatar for sciwizeh
0
633
Member Avatar for mesamb1

I am trying to write a simple php program that will up load files smaller then 200000000 bytes to my website, but I keep getting an error when I try to run it the initial HTML code is: <html> <body> <form action="upload.php" method="post" enctype="multipart/form-data"> <label for="file">Filename:</label> <input type="file" name="file" id="file" …

Member Avatar for mesamb1
0
111
Member Avatar for cam9856

Hello, I was wondering if it was possible to take a string variable or an integer variable and send it to another computer like client/server architecture and also read that data from that same computer. I am thinking that winsock will be ideal for doing this but if anyone knows …

Member Avatar for cam9856
0
155
Member Avatar for xtr.eme

I am a beginner and am learning C++ and QT I would like to know how to make an interface like the one in windows media player 11 - one that is completely custom including the minimise and close icons. What would this involve?

Member Avatar for Kob0724
0
87
Member Avatar for Roebuc

I have a page that holds two iFrames. The first iFrame is a form the user has to fill out. The second iFrame prints the results the form gives. When the page is first loaded with the two iFrames, I want the second to hold a default page that says …

Member Avatar for R0bb0b
0
205
Member Avatar for new_2_java

Hi all, I have an object, say its called MySuperType, which has a sub type, say it is called MySubType. MySuperType has the following attributes: int a; int b; int c; MySubType has the following attributes: (besides inhereting a,b and c) int d; int e; I was wondering if I …

Member Avatar for new_2_java
0
144
Member Avatar for salman213

[code] #include <iostream> using namespace std; class CRectangle { int x, y; public: void set_values (int,int); int area () {return (x*y);} }; void CRectangle::set_values (int a, int b) { x = a; y = b; } int main () { CRectangle rect, rectb; rect.set_values (3,4); rectb.set_values (5,6); cout << "rect …

Member Avatar for salman213
0
146
Member Avatar for prasu
Member Avatar for Gaurav arora

hi there i have been working with C# for quite some time. I want to know How i will be able to insert an image in the form and get it blinked. Rather i have inserted the Image But i dont know how to blink it

Member Avatar for Gaurav arora
0
2K
Member Avatar for Shaun32887

Hey everyone, I'm a third year engineering student and a new programmer who needs to learn some C++ for a job this summer. My boss advised me to look into utilizing a hash table to get my project done. Hash tables aren't covered in the textbook I have. I've done …

Member Avatar for Shaun32887
0
153
Member Avatar for michael123

I try to copy and paste TAB delimited list into html text area, then save it to database, however when I retrieve it from DB, all TAB space are gone, does anyone can give me advice is there a way to keep these TAB? Thanks in advance. [CODE] test test …

Member Avatar for nav33n
0
143
Member Avatar for kutta_vin

Hi friends, I think the MySql is not case sensitive for selecting values. for example I am having a table called dept, Id | Depart 1 | BTECH 11 | it 12 | ibt 2 | BE 21 | cse 22 | ece Now i want to select the capital …

Member Avatar for kutta_vin
0
156
Member Avatar for lazytypist

Imagine a number system based on the entire English alphabet, that is, using the symbols "0ABCDEFGHIJKLMNOPQRSTUVWXYZ". Write a program that will calculate the sum of two numbers expressed in this system. The program should ask for the two numbers and output the numbers and their sum as follows (italics indicate …

Member Avatar for William Hemsworth
0
156
Member Avatar for msantosh18

can any one help me in the following problem i have created a database and its table at runtime(i.e. while running the exe). the problem is that i need to change properties of table such as 'required' and 'allow zero length' of a table. how to change these properties and …

Member Avatar for msantosh18
0
124
Member Avatar for sambafriends

[code=c] main( ) { int i=10,j=20; printf("%d%d",&i,&j); return 0; } [/code] When i executing this code: I got the address values like -12, -10, -20 Is it the address are in negative values or I am doing a mistake in the program. please give the solution it's urgent.

Member Avatar for awi123
0
115
Member Avatar for salman213

Hi, I am a beginner in C++, I was just wondering what is it good for. This is probably a dumb question but I was searching on yahoo and google (What is C++ good for), and I did not find any real answers. What do people use it for? Is …

Member Avatar for Narue
0
577
Member Avatar for Aigini

This is my code to load data from a database(SQL Server 2000) into a combo box. I keep getting the error [B]Name 'connString' not declared.[/B](the highlighted section of the code). I've tried posing this error in Google search but there are no answers. I am working in a software development …

Member Avatar for Jx_Man
0
93
Member Avatar for anifreak

hello, ok i have this simple linked list program, as u can see below i got three functions: one to insert a node in the first of the list, the second to insert a node in the middle and the third to insert a node in the last of the …

Member Avatar for anifreak
0
256
Member Avatar for manavsm

i am facing problem when i am trying to get input...my input is not being taken correctly ... #include<stdio.h> struct student { char name[20]; int rollno; struct student *next; }; void display(struct student *first) { struct student *ptr; ptr=first; printf("\nCurrent list:\n"); while(ptr!=NULL) { printf("Name:%s\nRoll:%d",ptr->name,ptr->rollno); ptr=ptr->next; } } void delet(struct student …

Member Avatar for jephthah
0
277
Member Avatar for mariocatch

Hi All, A long time ago I researched Reflection and created a solution demoing my learnt capabilities from it. In my example I did not pass any arguments into the Invocation of the method call using reflection. I went to tackle this and I seem to be hitting a few …

Member Avatar for floydus
0
3K
Member Avatar for kux

What i want to do is write some of the rows of a report style CListCtrl with a color and other rows with another color, but if I switch the color with SetTextColor the color of the text in the entire control switches, i want it to switch just for …

Member Avatar for mitrmkar
0
156
Member Avatar for ninjaimp

hi Im trying to rationalise my code as i feel i am doing the same thing a couple of times with different bits of code. What i am doing is query a db and putting the result into a dataset and then filling a datagrid with this dataset..Fine. now i …

0
268
Member Avatar for Wickedself

I am new at Java. I have used Microsoft's Visual J++ but I have heard that it doesnot follow the java standard. Can you please give me the name of a good standard compiler that will work fine in windows XP.

Member Avatar for griefers
0
156
Member Avatar for perito

ok here is exactly what Im trying to do, I have to insert 10 strings in 10 different textboxes in the shortest possible time (half a second counts), so I thought the best way is to store them all in a program before the timer starts and then simply press …

Member Avatar for perito
0
115
Member Avatar for Jennifer84

I am trying to make something work but are not sure what I am doing wrong. I have a comboBox where I will select an Item with the eventhandler below. When I select an Item I want the messageBox to show a message Once but the message is showing over …

Member Avatar for Radical Edward
0
90
Member Avatar for zoner7

I am currently reading the learn C++ in 21 days tutorial. In a chapter on references, when the author summarizes some of the main points inside a respective section, he explicitly states, "DON'T return a reference to a local object. " I am simply curious what this means. I have …

Member Avatar for ff4930
0
88
Member Avatar for dlayante

I have already connect my SQL database in C# windows application, Now, can somebody please give me sample codes for data manipulation, add/edit/delete of records....THANK you!

Member Avatar for JerryShaw
0
98
Member Avatar for jayybhagat

I have a project to be done that is a web based EMPLOYEE PAYROLL SYSTEM AND TIME TRACKING in ASP .NET with SQL SERVER and im just a beginner wid ASP .NET and have no idea about what to start with , so please please help me !!!

Member Avatar for peter_budo
0
172
Member Avatar for lancemmx

Hi everyone, I am newbie in learning Visual Basic. I am using Visual Basic 6 and trying to create a simple program that will check or track the time. I have enclose an attachment of my program but no VB code yet. Here's how my program goes... I have a …

Member Avatar for lancemmx
0
116
Member Avatar for gargg321

Hey Guys, I am new to C programming and I got a task of storing hex dumps in character array and then use them as a string. I use the sprintf function for the job but it is giving me incorrect results. Please help me out. I am writing a …

Member Avatar for gargg321
0
289
Member Avatar for mrboolf

Hi all. I'm trying to write a 8 Queen Problem solving program in C++ as an assignement for an exam. I created a Matrix Board class to represent the chessboard with some functions such as put_Queen or check_Board for invalid positioning. I haven't yet begin to write the solving algorithm, …

Member Avatar for mrboolf
0
209
Member Avatar for mauripelto

I came here to see if I can get some help in C++, using the DEV-C++ IDE. I can write simple code to solve equations. Now, I want to graph the results. I got as far as using "initWindow", "moveto", and "lineto", to draw a figure. There must be a …

Member Avatar for Salem
0
82
Member Avatar for plusplus

I'd like to count how many visitors came to my site. Can you give me a quick and easy way to do this?

Member Avatar for bala24
0
96
Member Avatar for dlayante

Please correct me if there's something wrong with my codes...It already have SQL Database connection and I successfully display my record from the database.... Please help me...here's so far I have...I need codes for data manipulation adding/edit/delete records....im using C#Windows Application THANK YOU...you're a big help... using System; using System.Collections.Generic; …

Member Avatar for Ramy Mahrous
0
118
Member Avatar for bussumarus

I'm having a small problem with debugging my application in VS C++. When I pass in a single parameter, the debugger insists 2 parameters have been passed in. The first parameter is invariably "d" and the second parameter is always the first character of whatever I pass in. Further, if …

Member Avatar for bussumarus
0
85
Member Avatar for hacker9801

If you use the new operator on a class, say [code=c++]class dummy { public: string f; }; int main(int argc, char *argv[]) { dummy *p = new dummy; return 0; }[/code] do you have to use the delete operator on [icode]p[/icode]? (since, apparently, it utilizes new.)

Member Avatar for hacker9801
0
92

The End.