- Upvotes Received
- 3
- Posts with Upvotes
- 2
- Upvoting Members
- 3
- Downvotes Received
- 0
- Posts with Downvotes
- 0
- Downvoting Members
- 0
- Interests
- Programming, gaming
35 Posted Topics
Re: I personally like using notepad, Amaya, and I'm starting to get used to Microsoft Visual Web Developer 2005 Express Edition. | |
Re: Have you seen the open source Cosmos operating system kit (http://cosmos.codeplex.com/) | |
Re: Thats pretty cool jerry. Thanks for posting your resuts. | |
Re: Heres a console aplication that basically does what you talking about. Its case sensitive, so when you are prompted for a number you would have to enter D40001 to get the name. This program basically enters the whole file into a arraylist and searches it. It could search your file … | |
Re: What are you using to view the image? If it is a PictureViewer object then just set the sizeMode property of the image to Zoom. Then resize the PictureViewer to whaterver size you want. I'm not sure what your using to view the image though. Is it an excel spreadsheet? … | |
Re: It makes me feel a little better that Microsoft is at least listening to the public a little bit. The last two times I performed an upgrade I had to re-license this machine under XP, and a third time I have no idea what cause it. I must have pulled … | |
Re: Thats pretty cool that he can get involved in something like that. He has high hopes. :cheesy: But seriously, the rocket he is going up in is a modified R-7 ballistic missile that has only been used for space travel 2 times. :eek: What I've always wondered is, what happens … | |
Re: I'm going to have to agree with Dukane, I looked for information but it looks like all popup windows are blocked. | |
Re: [quote=techkar;300899]hi John Conde, I got a senerio, where the end users whats to select a directory(folder) to save the file they upload.As of now ,I gave a sentence like "Select a location(folder) where u want to save the file,if the folder is empty create a dummy .txt file and select … | |
Re: Joeprogrammer is right. Its probably the server. Putting your CSS in the HTML would help cut down on unloaded files because there are less files to load and if the CSS file does not load then your background file will not load if it is specified in the CSS. Finding … | |
Re: Well, first of all you need to know what a factorial is. You haven't demonstrated that you know anything on how to solve this problem yet. If you need a description on what a factorial is here's a link. [URL]http://mathworld.wolfram.com/Factorial.html[/URL] You would have to have a loop inside of a … ![]() | |
Re: Hey, this hailstone numbers thing is pretty cool. Apparently there are some rewards out there for anyone who can solve it (whatever that means.) I embarrased myself the other day when I resserected a very old topic in the C++ C forum from two years ago asking a question about … | |
Re: Yep. Thats right. Its easy to initialize the array. It is sometimes a pain in the butt to fill it with objects though. You have to create a loop to intialize the individual values (or use the brackets for simple data types.) But you know all this now. | |
Re: Maybe I'm missing the point, but tables work pretty well for making rounded corners and nice borders. This is some code I came up with. [html] <table border="0" cellspacing="0" cellpadding="0"> <tr> <td style="width: 25px"> <img id="topLeftCorner" src="glowctl.JPG" /></td> <td id="topMiddle" style="background-image:url(glowt.JPG);"> </td> <td style="width: 25px"> <img src="glowctr.JPG" id="topRightCorner" /></td> </tr> … | |
Re: I'm not quite sure I understand what your talking about. What kind of attribute are you looking for? What kind of data is in the text file? | |
Re: Could you post your working code for the benifit of the community? Thanks in advance. | |
Re: Hey, thats great you got that worked out. I hope you continue to join us here! Godfear | |
Re: I created a program that does what your talking about and attached it to this message. The short of it is this. I created a panel object and put a image object inside of it. I set the sizeMode property of the image to Zoom, so any sizing of the … | |
Re: I know that there are nice installer programs out there, but I haven't been able to afford them. They usually run at around $500 or more. The one I had my sights on was [URL]http://www.advancedinstaller.com/[/URL] alas, I couldn't afford it. But I was able to make the click once installer … | |
Re: You can open up a link in C# by using the start function in the System.Diagnostics.Process object. For example: [code=C#] System.Diagnostics.Process.Start("http://stockcharts.com/h-sc/ui?s=msft"); [/code] This will run your stockCharts.com link in your default browser. Its a pretty simplistic solution. I hope that is what your looking for. | |
Re: Hey good job graduating. I'm going to the university of Phoenix right now and boy its a struggle. I hope you enjoy yourself here at Daniweb! Godfear | |
Re: Thankf for pasting all your code. I'll look at it. | |
Re: Wow, Borland Pascal. Is that the same as turbo pascal? I took a turbo pascal course and hated every bit of it. But there was something intruiging about the language... Anyway, welcome to the community I think your going to love it, I do so far although I'm new also. … | |
Re: [QUOTE] Fine that means 95% are not and that is what I have found most people are good and helpful by nature but dont get noticed by press and media. [/QUOTE] Thank heavens, I don;t want to be noticed by the media. Welcome to Daniweb! | |
Re: I'm trying it now. List [LIST=1] [*]hello [*]it seems to work fine [*][/LIST]I am also using IE7. Maybe its the browser, what version are you using? | |
Re: Is it cold there yet? Its 33 degrees and raining here in idaho right now. I hope it snows. Nice to meet you RebelSage this is an awesome community we've got here. I'm new at this too. Nickname - Godfrear Height - 5'9'' Hair - Brown Eyes - Hazel Location … | |
Re: I have been guilty of the same crime. One time I said that I would format the indentation later and then forgot and accidentally turned it in. My teacher was really picky about indentation and using spaces instead of tabs. My suggestion would be to use an editor that fixes … | |
Home you are all doing well. This is a really impressiive site and I'm enjoying every bit of it. I'm currently going to the University Of Phoenix and doing a tile job full time. I wouldn't mind loosing the tile job :). I wanted to get plugged into an educated … | |
Re: I agree, VS2003 is a great IDE. I had a free trial installed and I cried when it died, but VS express isn;t really that bad considering its free. Cha ching. | |
Re: I'd have to say my favorite is the sweet potatoes my mom made with melted marshmallows on top and walnuts, brown sugar. Mmmmm... | |
![]() | Re: [quote=GermanD;271183]when i start the server which i have problems with[/quote] You need to create a button that starts the server. That way you can start it after GUI loads and you can use the same form for the client. Just add another button that connects to the server and then … |
Re: Centering a div layer is a relatively simple thing to do, its just not very intuitive. The div tag is affected by the text-align property. The problem is the text-align propery only affects child div objects, not the div object itself, so formatting must be done to the whole body … | |
Re: This is what I would do: 1. set your login div width to auto. 2. Then, set the float property of your login div to left so that your content flows around it (style="width: auto; float:left".) 3. I would make your starboard side column div float right 4. I would … |
The End.