132,726 Archived Topics

Remove Filter
Member Avatar for
Member Avatar for purplegerbil

Hi, I have a class that runs an external ap using shell then waits till the app is quit before carrying on. Does anybody know if it is possible to start an app say by clicking a button then be told when the app has closed. The app can be …

Software Development vb.net
Member Avatar for purplegerbil
0
119
Member Avatar for shipar

is it possible [COLOR="Red"]to read a specific data from a defined web page of a defined website[/COLOR]? if possible please help for this.............or suggest me which language is appropriate for that.

Software Development c++ html-css
Member Avatar for shipar
0
114
Member Avatar for shipar

hello, i am a new comer. is it possible [COLOR="Red"]to read data (e.g. some integers followed by a unique word) from a defined web page of a defined web site?[/COLOR] if possible please help me or suggest me which language is appropriate to do the job.........

Software Development html-css java
Member Avatar for shipar
0
111
Member Avatar for Jade_me

hi all, im a newer in vb.net i want to alleviate two different date. im using two datetimepicker in this case. if i just to alleviating with pus the year of each dtpicker i can't to get detail result. ex : 02/12/2007 - 01/11/2007 = 1 month 0 days thx, …

Software Development vb.net
Member Avatar for Jade_me
0
94
Member Avatar for transanmol

Hey friends, please help me as soon as possible, I just need the assembly(ASM) code for an 8086 for a simple PC Alarm clock, that just allows the user to set alarm and that plays an mp3 or any other format at that specified time. Its absolutely fine if the …

Software Development assembly
Member Avatar for Tight_Coder_Ex
0
248
Member Avatar for ravina_malik
Member Avatar for Narue
0
111
Member Avatar for Mr Brownstone

Hi my Name is Ryan and I am currently doing a college project in VB.net I have wrote a few programs in VB.net but for this current project I really need help... Is there anyway of ending processes (such as explorer) from a click of a button in a VB.Net …

Software Development vb.net visual-studio
Member Avatar for Mr Brownstone
0
86
Member Avatar for wkid87

I am having trouble with printing out the number to the console. Instead of 10 printing out I want 16. How can this be fix. using System; using System.Collections.Generic; using System.Text; namespace LinkList { class Program { static void Main(string[] args) { List studentRecord = new List(); studentRecord.InsertAtFront(10); studentRecord.InsertAtFront(16); studentRecord.InsertAtBack(32); …

Software Development
Member Avatar for scru
0
116
Member Avatar for kv79

Hi to everyone, I woud be pleased if you can write me, i have Dev-C++ and when i create project -> Win App in C++ code ,the Dev-C++ write me a lot of code wich i do not really understud how code reflect to a window and if you woud …

Software Development c++
Member Avatar for kv79
0
126
Member Avatar for dr_substance

'Ello, I'm Andrew & I have a very big problem. I'm learning Perl & I'm having problem with my first simple code. Every time I go to look @ the page it just comes up excluding the HTML tags. Here's the code 'firstscript.cgi': [ICODE]#! /usr/bin/perl print "Content-type:text/html\n\n"; print "<html><head><title>My First …

Software Development perl
Member Avatar for eggi
0
156
Member Avatar for jadedreality

Okay, I wrote a code to translate a character into Morse Code. However, I was reading back over my assignment and I was actually supposed to define a macro PRINT_DOT which prints a period, and a macro PRINT_DASH, which prints an underscore. Then define macros PRINT_A, PRINT_B, etc. Is there …

Software Development c++
Member Avatar for vmanes
0
137
Member Avatar for deraj8

i need to creat a function that will read information from a data file, and store the bank accounts in two seperate parrarell arrays. array “account”, and store the balance on the accounts in array “balance”. here is an example of what i have to do <data file> 231 4000.52 …

Software Development c++
Member Avatar for Ancient Dragon
0
121
Member Avatar for toko

okay i am trying to compare a char thats a constant with a char that a person has inputed however this is as far as i have gotten and its not working. [CODE] #include <iostream> using namespace std; int main() { char input[20]; char correct [] = "Rudolf"; cin >> …

Software Development c++
Member Avatar for toko
0
220
Member Avatar for kidjl

would some one please help me with this?? i 've got an assigment from my professor which is in a University level (p.s i am still in college, and this class suppose to be the"introduction of programmng") However, in the game we suppose to create a "BlackOut Game", which we …

Software Development vb.net visual-basic
Member Avatar for kidjl
0
99
Member Avatar for tones1986

Hey Folks. I have to write a script that will basically take input from 3 different files which contain the following: product (file contains the following - FS=".") -product ID (Int number) -description (alphanumeric text) -price (floating pt. number, with 2 sig. digits) sales (file contains the following - FS=",") …

Software Development shell-scripting
0
105
Member Avatar for knowledgelover

hi, Thanks a lot for posting us this thread it is really valuable [B]But I wonder if I can make the range including negative values besides positive numbers e.g: from -1 to 1 [/B] if you can help be I'll appreciate it thanks again knowledgelover [email]email removed[/email]

Software Development c++
Member Avatar for Killer_Typo
0
462
Member Avatar for jadedreality

I am writing a program that prompts a user to enter a line of text, and if there are consecutive blank spaces in the sentence, it will replace those with just one space. Here is the code: [code=c++] int main(int argc, char **argv) { AnsiString; Line; int Index; Line = …

Software Development c++
Member Avatar for Ancient Dragon
0
238
Member Avatar for Oreynid

Hello all, I've tried reading back threads and the various posted tutorials, etc that here and I've not stumbled upon the answer I'm looking for. I am attempting to write a hangman game as a school project, and I am having trouble getting just one character from the input stream. …

Software Development c c# c++
Member Avatar for Salem
0
10K
Member Avatar for alex8teen

Hi Pros, I am new to VB and I was asked to research about a .vbs extension file. I am supposed to use Notepad to write my codes and save it in a *.vbs extension. I would like to know if I can connect to the database using this method?

Software Development visual-basic
Member Avatar for ndnalibi
0
79
Member Avatar for Java-Newbie

Is there a way to find if an entry is indeed a number without using try/catch? I want the program to keep asking the user to enter a number if s/he is "silly" enough to input something else. [code] System.out.print( "\n¿Edad minima a buscar? " ); edadMinima = input.nextInt(); [/code] …

Software Development java
Member Avatar for jwenting
0
154
Member Avatar for sivaslieko++

I read two binary numbers which are separeted by a coma(1010,1000111) from a texfile into two differen linkedlist as below: [code] while (!feof(fout)) { ch=fgetc(fout); if(ch==','){ printf("\n"); control=1; }else{ if(control==0){ if(ch=='1' || ch=='0'){ curr = (item *)malloc(sizeof(item)); curr->val = ch; curr->next = head; head = curr; length1++; } }else{ if(!feof(fout)){ …

Software Development c
Member Avatar for danzona
0
106
Member Avatar for An_Evil_Penguin

Hi. I’m quite new to python and I was hoping someone could help me with a solution. What I’m looking to do is use the print function in conjunction with the time.sleep() (or if theres a better alternative) function to print text on one line with slight delays between text …

Software Development python
Member Avatar for An_Evil_Penguin
0
103
Member Avatar for bigt2008

[B]so foar I've done this much[/B] using namespace std; int main() { //1.Declares an input stream variable named inFile ifstream inFile; //2.Opens "indata.txt" inFile.open("indata.txt"); //3. If input file was not opened Prints "Input file not found" if (inFile.fail()) { cout << "Could not open file!" << endl; return 1; } …

Software Development c c# c++ file-stream
Member Avatar for Lerner
0
90
Member Avatar for ENG ISE student

I need to do this do while loop but I dont know how to exactly get it to repeat itself I got an error when I tried to compare pointer to integer and thats what i have in the code below, any thoughts as to how this should be done. …

Software Development c++
Member Avatar for ENG ISE student
0
97
Member Avatar for newbieGirl

Hello all -- found myself stuck on a certain bit of code dealing with a number pattern I put together. I've written out most of the code, but I'm stuck in 2 areas - thought maybe someone could help shed some light. It seems like it would be very simple, …

Software Development java
Member Avatar for Black Box
0
661
Member Avatar for ndnalibi

Hello, First I apologise if this isn't the right forum... I have a vbscript that is non-asp. It is run in a program called EFI-Logic that is an ERP. EFI-Logic caonnects to our MSSQL database for normal operation. The problem is that on some computers I get the following error: …

0
225
Member Avatar for newbieGirl

I guess I'm having a lot of problems tonight with this program I'm trying to accomplish for myself... I'm trying to write an application called TestNumFactors which defines a static method with header "public static int numFactors(int n)". When numFactors is called, it should return the number of factors of …

Software Development java
Member Avatar for darkagn
0
480
Member Avatar for BlackNinja

Hi I was just wondering if there was a way to convert a value of double to a string? And if there is what is the command? Thank You in advance

Software Development c++
Member Avatar for vijayan121
0
72
Member Avatar for hidash_in

[B]how to open any exe file using java. i alrerady used the Runtime.getexec() code. but when i refresh the page the application is opening. my thought is the application should be open after clicking the button in jsp page. if u have any code send me.[/B]

Software Development java java-jsp
Member Avatar for masijade
0
117
Member Avatar for tat2dlady

Does anyone know basic pseudocode for a balanced k-way sort-merge? Thanks for any info you may have.

Software Development c
Member Avatar for WaltP
0
418
Member Avatar for vincex200

My group as a project that is due and we don't know where to start. We attempted it and we failed several times. This is the project. PLEASE HELP US. Write a C++ program that will read data from a file, perform computation on the data, then print the result …

Software Development c++
Member Avatar for Ancient Dragon
0
101
Member Avatar for johnnyjohn20

I am trying to filter an array with different elements in using an if statement. So far i have if ( a[i] < 0.001 ) a[i] = 0 which works but i have minus values in the array which i wish to keep. Therefore it would be ideal to have …

Software Development c++
Member Avatar for Salem
0
142
Member Avatar for Carlo_g12

[INDENT]Hi! im a student needing help for my thesis project. im currently working on a supply chain management system. [/INDENT] [INDENT]i have created a sales form wherein you can input the customer order. adding the customer and product information and subtracting ordered product quantity works. im having problems with my …

Software Development visual-basic
Member Avatar for Lavendor
0
104
Member Avatar for pokahantos

Hi, I have written a program that binds controls on a form to fields of a table in a Microsoft Access database.One of the controls on the form is a combo box that is binding to table called Type_T which contains one column called Type. i need to update the …

Software Development microsoft-access vb.net visual-studio
Member Avatar for pokahantos
0
157
Member Avatar for ENG ISE student

I am a beginning ISE student taking a C++ programming class and am having trouble with the simplest things. I need to write a program that reads in an address in a single line of text then outputs that address in the appropriate form. input: john doe # 1234 main …

Software Development c++
Member Avatar for ENG ISE student
0
114
Member Avatar for xenoalien

I need some help. I want to be able to put in a letter grade within a textbox of a class and have the program know that A is 4.0 (A=4.0) then calclulate the GPA by adding all the class grades and dividing by seven which is the number of …

Software Development
Member Avatar for Ravenous Wolf
0
207
Member Avatar for kahaj

How do I go about removing leading and trailing spaces from a text field when passed to a script? Also, how do I verify that an email address is in the correct format on a form?

Software Development perl
Member Avatar for masijade
0
103
Member Avatar for quickster12

Ok im one of those people that are just completely unable to pick up C++. Im forced to take this class and i have no prior programmin experience but at least theres only a few weeks left of this. Anyway, I just want help with this assingnment. I'm not lookin …

Software Development c++
Member Avatar for vmanes
0
92
Member Avatar for helixkod

Here is the error: [CODE] cannot convert parameter 1 from 'int *' to 'int *[]'[/CODE] here is my code: [CODE=cpp] #include <iostream> using namespace std; void findMode( int *, int, int); void selectionSort(int *[], int); int main() { int *numbers; //dynamically allocate an array int elements, //holds the number of …

Software Development c++
Member Avatar for helixkod
0
126
Member Avatar for degamer106

So here's the problem [QUOTE]Write a program that asks the user to input a set of floating-point values. When the user enters a value that is not a number, give the user a second chance to enter the value. After two chances, quit reading input. Add all correctly specified values …

Software Development java
Member Avatar for degamer106
0
198
Member Avatar for simon_wagstaff

Ok, I want to say in advance that I am simply looking for insight right now. I regret to admit *lol* that I'll probably be back asking about something else soon after. I need to write a program using binary trees that functions, essentially, like a concordance. I simply need …

Software Development visual-basic
Member Avatar for InfiNate
0
118
Member Avatar for sisey

when a user logs in i want assign a particular form to him depending on the user name he entered. that means different forms for different users.im using oledbdataadapter to connect to sql. i will appreciate your help.thanks

Software Development vb.net
Member Avatar for Jx_Man
0
85
Member Avatar for pranavdv

Hello, i want convert amount in text to amount in numbers in vb6. please help me

Software Development visual-basic
Member Avatar for BC_Programming
0
116
Member Avatar for bob on whidbey

I'm having trouble creating a RES file (for a visual component). This was easy under XP as I had the file extension for all .rc files set up to run RC.EXE. I am now using Vista and can't find the RC.EXE file. Also, do I need to make changes in …

Software Development file-system pascal
Member Avatar for bob on whidbey
0
312
Member Avatar for -EquinoX-

So I am asked to write a function called parens that will allow me to do this. Say that I have a string (a + (x) * (6 + 14) - q7), then I will get: (x) (6 + 14) (a + (x) * (6 + 14) - q7) the …

Software Development assembly
Member Avatar for Duoas
0
81
Member Avatar for newbieGirl

Just curious... I've got a snippet of code I'm trying to put together, and what I'm trying to get it to do is to print out the word "yes" exactly when i ends in the digit 4, or j ends in the digit 7, or both. I know my if …

Software Development java
Member Avatar for Ezzaral
0
86
Member Avatar for pelusa

hi i would like to know how can I checked the name of a file and then retrieve only the first 6 characters. the format of the file names is: dd1234_10x2.xsl i need to get just the first 6 characters up to the underscore, but if the name of the …

Software Development vb.net
Member Avatar for waynespangler
0
145
Member Avatar for darklich13

I have a problem where the user enters in their grades from their homework and exams and then the program will tell the user what their grade is. I have everything worked out below but I am missing one key aspect. There are 12 homeworks and only the best 10 …

Software Development c++
Member Avatar for darklich13
0
104
Member Avatar for akhiero

I have been working on an inventory program for school and it is all working. What I need help now is making a GUI for it. To display one item at a time with a buttons like First Item, Next Item, Previous Item, and Last Item. Could someone help me …

Software Development gui java
Member Avatar for Ezzaral
0
203
Member Avatar for Slate2006

I need to change the AvgGrade2 function to work with what is shown, but i do not know what to edit for it to work correctly. [code] #include <iostream> #include <fstream> #include <string> #include <iomanip> using namespace std; struct ClassList { // Definition of a structure called ClassList // ClassList …

Software Development c++
Member Avatar for Lerner
0
96

The End.