ListView problem PLEAS HALP win32 c++ Programming Software Development by B.S pleas halp. Sory for my English, i coudn't find where the … is in that, in second colomun nothing is writing, PLEAS HALP where is my problem. Thanks; my project is her down… Halp in breaking a loop Programming Software Development by chound I want to break the loop if the user does not enter any value. How do I do that. [CODE] #include<iostream> using namespace std; int main() { int a=1; while(a!=NULL) //how do i phrase this. When the user does not enter any input //I want the loop to exit cin>>a; return 0; } [/CODE] Re: Halp in breaking a loop Programming Software Development by fahad Hi; U have specified that u want to break the loop when the user do not enter any input, but u havent specify for how much time loop will wait for the user input after wich it will break automatially ???u have to specify time limit and use system clock or DELAY function can also be used , but any how u have to specify time........ Fahad Re: Halp in breaking a loop Programming Software Development by jasweb2002 [QUOTE=fahad]Hi; U have specified that u want to break the loop when the user do not enter any input, but u havent specify for how much time loop will wait for the user input after wich it will break automatially ???u have to specify time limit and use system clock or DELAY function can also be used , but any how u have to specify time........… Halp: Using Regular Expressions Programming Software Development by SuperMetroid Here is the code I have so far: [code]import re from urllib.request import urlopen pg = urlopen('http://www.url.com') pg_r = pg.read() pg.close() print(pg_r) print(re.search('(?<=http://user.url.com/)\w+', pg_r))[/code] What I *want* to do with re.search is find the word between the strings '[color=#0080FF]http://user.url.com/[/… Re: Halp: Using Regular Expressions Programming Software Development by djidjadji re.search() returns a MatchObejct, not the string that matches the regex. Look up in the docs what you can do with it to get the match string. A better regex to use is [CODE=python] matchObj = re.search('(?<=http://user.url.com/)[^"]+', pg_r) if matchObj: pass # found a match [/CODE] Re: Halp: Using Regular Expressions Programming Software Development by SuperMetroid Thank you so much! Problem solved. Also, thanks for the insight into what type is returned. Re: Halp: Using Regular Expressions Programming Software Development by Ene Uran Also in Python3 'pg_r' would be a byte string and module re will complain without converting 'pg_r' to a string first. Halp! - Input/Output File Stream Problems Programming Software Development by swolll New Question. I end the output to one file (fout1) and try to start it to a new input and output file, using this code: [CODE]" fout1.close(); } cout << endl << "Detailed employee reports have been printed in " << fileOutput1 << "." << endl << endl; cout << "Enter input… Re: Halp! - Input/Output File Stream Problems Programming Software Development by Kashaku [QUOTE=swolll;1008467][CODE] ... cout << endl << "Detailed employee reports have been printed in " << fileOutput1 << "." << endl << endl; cout << "Enter input file name for company payroll report. (Can be same as first input file.): " << endl; getline(fin, fileInput2); … Re: Halp! - Input/Output File Stream Problems Programming Software Development by swolll That didn't work. Here's my code. Where did I go wrong? [CODE] #include <iostream> #include <string> #include <iomanip> #include <cmath> #include <fstream> using namespace std; int main() { int skill, benefitType, skillPay, taxRemainder; double hours, contPercent, gross, benefitCost, grossDed, contAmount… Re: Halp! - Input/Output File Stream Problems Programming Software Development by Ancient Dragon what compiler are you using? If it has a debugger then learn to use it so that you can find out what is wrong with your program. Re: Halp! - Input/Output File Stream Problems Programming Software Development by swolll [QUOTE=Ancient Dragon;1008635]what compiler are you using? If it has a debugger then learn to use it so that you can find out what is wrong with your program.[/QUOTE] I've just been using unix. Can you recommend a better one with a debugger (that is free)? Re: Halp! - Input/Output File Stream Problems Programming Software Development by Ancient Dragon unix is an operating system, not a compiler. You are probably using gcc or g++. The debugger you want is gnu's dbg -- [URL="http://www.dirac.org/linux/gdb/"]tutorial here[/URL]. Halp Java Question #1? Programming Software Development by Thermalnuke Hey guys, I am trying to figure out how to write out this java Program, I am using JCreater, and I am teaching JAVA to my self if you guys can help and show me a couple of the programs that I am doing I think i will be all set, ive never seen any java coding in my life. and it dosen't seem to hard. since i have done a few programs by myself. … Re: Halp Java Question #1? Programming Software Development by Ezzaral You need to show some effort if asking for homework help. Post your current code and specific questions. If you don't know what a float data type is, you need to read your book or a basic Java tutorial. Re: Halp Java Question #1? Programming Software Development by zeroliken There are lots of basic java examples and definitions of a term on the web if you try to search If you have problems in understanding or couldn't figure out an error in your code then you can ask here for help Re: Halp Java Question #1? Programming Software Development by Thermalnuke Well after doing some research my book dosent really cover FLOAT, I think i have figured it out. and Ezzaral this is not for class i am trying to teach myself java BY MYSELF im just using a book for problems to use. I am in college,but i am not taking a java class.... here is what I got for a code. works to me hope its what the question is asking … Re: Halp Java Question #1? Programming Software Development by NormR1 [QUOTE]what is the public VOID init used for[/QUOTE] You need to read about how applets work. Here's a link to the middle of the tutorial on applets: [url]http://docs.oracle.com/javase/tutorial/deployment/applet/appletMethods.html[/url] Re: Halp Java Question #1? Programming Software Development by Thermalnuke Alright Thanks! that did help Re: Halp Java Question #1? Programming Software Development by stultuske [QUOTE=Thermalnuke;1742095]Well after doing some research my book dosent really cover FLOAT, I think i have figured it out. and Ezzaral this is not for class i am trying to teach myself java BY MYSELF im just using a book for problems to use. I am in college,but i am not taking a java class....[/QUOTE] well ... Ezzaral has an excellent point. … HALP!! I need a look on my future Community Center Geeks' Lounge by tougheart Heyo guys, and girls Well, something to start with is that I'm lost... I'm a computer science graduate for 5 years now, and since then, I never worked at programming, been bouncing from one job to the other and that wasted a huge amount of time for me. So, lately I decided to get back on the track and persue my old dream, programming... and I … Re: HALP!! I need a look on my future Community Center Geeks' Lounge by deceptikon It really depends on what you enjoy, but if you're just trying to get into programming as a career then it would be wise to take what you can get and use that to build up experience. Once you have a little more experience you can make educated choices as to what you *want* and also be in a a better position to make it happen. Re: HALP!! I need a look on my future Community Center Geeks' Lounge by chrishea You seem to have some internal conflict on whether you want to program or not. First you say "...persue my old dream, programming..." and then later you say "...I don't really like web development...". Is programming the dream or is the dream to get a stable, well-paying job (ie a career). If you spent the last five years not … Re: HALP!! I need a look on my future Community Center Geeks' Lounge by tougheart Thank you guys for your replies, really appreciate it :) @deceptikon That's what I'm trying to do, doing self study first, going for a certificate then looking for an open source project to work on, and we'll see how this goes :) Thanks a lot @chrishea First of all thanks a lot for the time and effort you put in your answer, means a lot to me, but… Re: HALP!! I need a look on my future Community Center Geeks' Lounge by stultuske > You seem to have some internal conflict on whether you want to program or not. First you say "...persue my old dream, programming..." and then later you say "...I don't really like web development...". ehm .. ChrisHea ... am I right in believing you imply here, that all development and programming is web development? … Re: HALP!! I need a look on my future Community Center Geeks' Lounge by chrishea I do windows desktop development as well as web development. At one time I worked on IBM mainframes. If you enjoy designing and programming then the essentials are the same no matter where you apply them. If you really enjoy programming then you'll probably be doing it on your own time not just when someone is paying you to do it. I'm sure that … Re: problem with calling a function Programming Software Development by crahhhhhb halp verizon t720 ringtone help Hardware and Software Hardware Mobile and Wearables by Can someone please halp me? Ive been lookin forever to find a way to … New PC Problems Hardware and Software Hardware by philpotrebel … to build and every thing is brand new. so please halp me i need to get this built so i can…