132,726 Archived Topics
Remove Filter ![]() | |
I created a macro designing a pivot table. when i copy the code into the VB application the pivot table shows a count instead of a sum!!! Any ideas why? Cheers Software Development visual-basic | |
I'm new to this whole Visual Basic idea, and my questions may be newb for all of you, but I'd like to learn. Here is my question. At school I was given an assignment , which is: Write a program which uses functions to accept as input from the key … Software Development c visual-basic | |
hi, wonder if anyone can help me. I have a text file with the following format: town_name followed by 12 real numbers i.e London 7.24 8.15 6.45 3.24 3.66 2.45 4.71 6.78 6.45 8.61 7.45 6.55 Manchester 12.23 10.67 7.56 4.34 5.55 6.29 8.77 14.77 9.77 7.49 8.34 7.66 Liverpool … | |
I am having trouble trying to merge 2 strings into 1. Is this possible if so how is it done? Software Development c++ | |
Thanks for the input last night Dave. Anyone willing to help: I have rewritten parts of my compplay function; I know its redundant, but I will work on that after I can solve some other problems. The problems I am having are these, imput on any or all of the … Software Development c | |
does anyone know the function that will take an array of text and cut it up into words and also cout different words; ex. I prompt the user to input some text and the i send that text to a function that couts each different word on a new line Software Development c++ | |
I have spent a few months upgrading a toolkit I created and is used extensively throughout our organisation of 2-3000 users. I used DTPicker controls as I found these were ideal. My beloved organisation then upgraded to XP and decided that the standard desktop didn't need this control installed locally. … Software Development visual-basic | |
Hi, I want to know the date when is a file was created plus the size of the file. Can somebody show me a vb code that handle this things. Thanks in advance. Newvbguy Software Development file-system visual-basic | |
Hello. I have created a logon form in Microsoft Access and now would like the let the user know if the caps lock key is pressed. Instead of when the form is loading.... i would like a message box to display after the form has loaded and when the button … Software Development display microsoft microsoft-access visual-basic | |
hey ppl, i know this is aa really daft Q, but i only started using vb.net this yr and im not that gud at it! basically i wana know how to go from one form to another using a button, wud it just be sumthin as simple as: [quote] Private … Software Development vb.net | |
I'm looking for a legal copy of Visual Basic 6 Professional. Please reply if you know where I can get it (new or used). Software Development legal visual-basic | |
I'm using MS Visual Studio.NET, and when I try to open a project, nothing happens. I can open the Form1.vb or whatever I've named it to, but I can't see the graphic version of the form editor anymore. Do I have to load something else or is there a view … Software Development vb.net visual-studio | |
How do you start/launch a 3rd party *.exe from within a VB.NET application. The program we want to run do have a few command swithces. Software Development vb.net | |
Hi Everybody, I was wondering if anybody could help me. I want to find the most frequent lettter, and replace it with another letter. It hen want to find the second most common letter and replace it with another letter. It's not working. Could anybody please help?? [CODE]import javax.swing.*; import … Software Development java java-swing | |
Hi this is my first post and I need help on my first program on making some shapes in c++ using for statement and using *. Its an simple for statement program but I got nothing. Im trying to making an acute triangle using *. I got the triangle down … Software Development c++ first-post | |
Hi, I'm trying to make a backup program but suddenly i got stock with this problem. I want to search all the .txt file in my drive c: and make a zip file on their respective folders. Can somebody share a code for this one? Thanks in advance. Newvbguy Software Development visual-basic | |
I am not shamelessly promoting this book, I just happen to like it and use it a lot! "Standard C++ Bible" by Stevens and Walnum, published by Hungry Minds. This 800 page plus book is loaded with samples and comes with a CD-ROM containing all the samples and a nifty … | |
[b]Recursion[/b] Recursive functions are, interestingly enough, functions which call themselves. Instead of performing calculations by calling other functions, they call themselves by passing in different parameters each time. This forms an almost loop-like effect, where each time a simpler calculation is performed by the function. This is repetitively done until … Software Development c++ | |
I have this system which I only want to try and borrow books from a library. I have data already in arrays. I need to check that nobody else has a book then add it to the data. I have commented where i think the problem is. i have tried … Software Development java java-swing | |
can anyone come up with a solution for this ? real quick for me? the factorial of a nonnegative integer n is written n! ("n factorial") and is defined as follows: n!=n*(n-1)*(n-2)*.....*1(for values of n greater than to 1) and n!=1 (for n=0 or n=1). For example, 5!=5*4*3*2*1, which is … Software Development c++ | |
Hi, If this should be directed to another group, please let me know... I've been working with templates for a few weeks and have been able to develop some nice code on solaris using the Forte C++ compiler (version 7). However, nothing related to templates seems to be compiling correctly … Software Development c++ | |
Hello, I've worked on Console Apps. For a while and am moving to visual C++. I am working on a form right now and am stuck. What I want to do is if the user prushes a button, it will display the text contained by that button to a label. … | |
Write a console application program that will build and display a 10 by 10 rectangle within a 20 by 20 rectangle with diagonals. The 10 by 10 is to be centered within the 20 by 20. Use the hypen (-) character for the top and bottom of the rectangles. Use … | |
Hello, I am working on this tic tac toe program for my computer science class to develop a tic tac toe game that uses artifical intelegence for a computer player. Anyway, I have a few question, help with any or all. First, I am getting unresolved externals errors. I do … | |
Hi everyone I am new to the world of VB Actually I wanted to know if anyone knows that how to validate option button For example I create 3-4 option button(radio) and would like to check if the user has clicked on any of the button and then it should … Software Development visual-basic | |
I'm trying this new project, like this. Write a program which will use functions to compute the distance between 2 points on a plane given their coordinates. If one point is located at (x1,y1) and the other is located at (x2,y2) then the formula for computing the distance is sqrt(sqr(x2-x1) … Software Development c++ display file-stream | |
In all my classes never taught us how to us C++ I still don't know how to [I]put it to use[/I] My professors taught us how to write it, but now how to use it every program we wrote would excute some programming by inputing data or outputing data on … Software Development c++ client-server gui windows-server | |
how do you write exponents in c++ i though it was "exp (#)" afterthe variable am i right? Software Development c++ | |
I'm currently writing a program and I want it to read in data from a source and if needed change some or all of it and re-write it to the same source file. I have: where all the variables are ints in a struct called date. ifstream ifs("data.txt"); ifs>>date.hours; ifs>>date.minutes; … Software Development c++ | |
hello, I need some urgent help with pascal, im trying to write a program that accepts 10 integers from the keyboard and outputs the real average while using a loop. Im really struggling to get this to compile as im trying to learn this from a learn pascal website (which … Software Development pascal | |
I have random numbers such as 1 6 8 5 7 3 9 2 4 in a 1 dimensional array what for loop do I use to reorder the numbers from 1 through 9? thanks. | |
i have a sample program,can someone help to find the error of this program or someone to correct this program coz i don't know what is the error of this program this is the sample program of mine [code] #include<windows.h> #include<string.h> #include<strstrea.h> #include"mydialog.h" void main() { LONG FAR PASCAL _export … | |
Hello Everyone, I'm a problem with a recursive C function. Before I explain the functionality of the code, I'd like to give a brief explination of what I'm trying to do. I'm working on a general tree data type which represents entities, each of which has a list -array- of … | |
Hi, I'm working on a simulation that uses a fish in a 1x5 "fish tube" matrix. The fish (this symbol: ">=)" ) moves randomly around the tube and the number of "bumps" against the top, bottom, right, and left sides are counted. What I want to do is this: Turn … | |
Yeah for some reason - on my main prog i click a button brings up a little display window to show a few details. But when i move this window. it goes black :S Any ideas? | |
Hi everybody, I was wondering if it is possible (and if it is, how to do it) to put a JPasswordField into a JOptionPane. Thanks in advanced, C++ Software Development java | |
Can someone help me create a rounding routine? I have some mathematical calculations being done in a program that the final result is a double. The only trouble is, is when I want to display it, there are too many digits appearing. I have searched the Sun web site and … | |
Hi everyone,i really hope you can assist with the following problem that i have been having,how do i add components to JApplets,what are the methods tha i should use for the task? Software Development java | |
This seems like a simple task but the microsoft visual c++ 6.0 compiler is giving me a problem with this. Its complaining about the lines where i try to use a passed array such as "fin[i]=0". Its giving this error for the following code. "error C2109: subscript requires array or … | |
Ok here is my problem. When using VB .NET to create a web application, I can use dropdown list controls fine, when just creating a vb .NET windows app, they are nowhere in sight. What is the substitute for the dropdown menu? Sorry for my Naivity, Slade Software Development vb.net | |
Hi, I am supposed to write a program for a school assignment that asks the user to enter the amount of coins, and then output the amount in quarters, dimes, nickels, and pennies. That was easy enough, but I found out that I need to use a constuctor to initialize … | |
im doin an assignment where these statements r required MENU 1. Enter the id & four subject marks 2. Calculate the total and average 3. Calculate grade 4. Print the grade wise 5. Print GRADE SHEET 6. Terminate the program so far i manage to come up with this and … Software Development c | |
How can i create a directory in c++ other than writing [CODE]system ("md directory");[/CODE] Software Development c++ | |
This is my first windows app. I basically have my whole program written except for fixing a few lil problems and writing the code for 2 of my buttons. Could someone help me with the "Hex to Decimal" button code? or give some kind of example? my professor helped with … | |
please guide me i'm confused i have to make a banking project using .Net and i don't from where to start my mind is really not working :sad: :?: | |
Im 24 and a time ago..when i was a junior and senior in high school i did some programming. We used basic...lol...then turbo pascal...lol...and just touched on C in my senior year...All the old guys with me remember basic... anyway, I'm going back to school for a degree in Computer … | |
Hello, i'm a novice who have some ideas of the basic concepts and some advanced topics like templates and exception handling. I now want to improve my programming skills. I would very appreciate if anyone could recommend some good books to me. :) Software Development c++ | |
Can someone help me to output each array element [CODE]#include <iostream.h> void array(); const int LIMIT = 50; float MYARRAY[LIMIT]; float value = 0; int x; void main() { for(x=0;x<LIMIT;x++) { while(value < 999) { cout << "\n\nPlease enter a number: "; cin >> MYARRAY[x]; value = value + MYARRAY[x]; … Software Development c++ | |
|
The End.