836 Posted Topics
Re: If you continue to use the rich edit control you need to make a note of where the colour change should start, select the length of string you need to colour, and then set the current selection colours/font etc. | |
Re: Depends how you show them in the picture box at a guess.. | |
Re: A readln should do roughly the same (without a message of course) but, if thats not working it would imply its not reaching the end.. invoking a system shell for pause is generally a frowned on answer, but I would expect it to be shellexecute | |
Re: Learning takes many forms, andso much depends on simple basics, which there are a number of ways you can learn, however, the best example of building blocks and fun I found at [url]http://www.3dbuzz.com[/url] you'd need to register on the site (free) and then you can watch the c#/XNA (no xna … | |
Re: Unfortunately Salem has a number of very valid points. If theres not enough time to think of your own project, can you really be sure to give it sufficent time to design, code and test it? the ftp transactions is far too simple a task, Id expect that of someone … | |
Re: so, is a class represented by a row in the table? if so, easy.. just look for the tr tags | |
Re: Yep looking at your code F3 should be null, you never created anything to fill it. | |
| |
Re: Exactly as you described. Although asp.net is probably best asked in its forum | |
Re: Then show us what you tried and why it didnt work.. *then* we will help you | |
Re: Small projects flex more, in a bigger project you need to have a clear view before you start. Wether you use a digital design system, or notepad, or a pen and paper, at the end of it you need to work out a lot of symantecs before you start, or … | |
Re: Problem is outlook express is different enough from outlook that the standard outlook integraiton you'll find over the internet doesnt work. If you have a way in c++ chances are thats because its win32, and you would need to do all but exactly the same in c# | |
Re: Sure, but its not a guarentee doesnt stop people adding a .txt extension to anything | |
Re: The best way to become a programmer is practice. Think of something you can really get your teeth into, something you could start small and grow and grow and grow, make a torrent of practice bitty apps that do small things and then encompass those classes into your core project … | |
Re: Well without knowing more about chatserver, as a class, Im going to guess it never was told to.. thats what debugging is for. | |
Re: Well if you look at what its told you and the properties of the request object, the answer should slap you in the face | |
Re: You probably meant something like GroupBox[] Groupboxes .. | |
Re: Can you show some code? its possible its not doing it when you think.. | |
Re: I'd suggest you try the asp.net section.. They like web stuff there. | |
Re: If your exchange server supports SMTP mail connections (which most likely it will) you would just change your app to point to your exchange server | |
Re: Then you need to not draw your picture on the pressing of a button but on the painting of the box, then, you toggle within that method wether you do nothing much, or paint the picture in memory. This will solve all you problems in one hit | |
Re: c# is great but, it truly depends what you're going to code as to what you would probably best learning whats right for us isnt necessarily right for you | |
Re: Please use the search button as this has already been answered many times. | |
Re: Then please mark this as solved if you have an answer. | |
Re: If you open the exe/DLL it should be able to show you the classes and so on within.. It always seemed very straight forward. What exactly are you struggling with? | |
Re: Have you asked google? | |
Re: The wrox books are much better written in my humble opinion depending on how confident you are with your c++ skills, the transition should be pretty painless, so [URL="http://www.amazon.co.uk/Beginning-Microsoft-Visual-2008-Guides/dp/047019135X/ref=sr_1_1?ie=UTF8&s=books&qid=1232882299&sr=8-1"]Beginning visual c#[/URL] maybe a little too basic, but [URL="http://www.amazon.co.uk/Professional-C-2008-Wrox-Guides/dp/0470191376/ref=sr_1_2?ie=UTF8&s=books&qid=1232882299&sr=8-2"]professional c#[/URL] is a great read. I often mention these, as I think … | |
Re: Dont forget then to mark this as solved | |
Re: Many - have a search on using excel from c# and reading values.. and controlling excel - theres a few ways you could go about it. | |
Re: Please use search - we answered this very recently | |
Re: You should only get the some other process is using that file if you're trying to open it, so as other have said open it, dont close it until you're done with it. Then there is no major delay to writing the file. | |
Re: The ? notation is a great way of tidying things up when you're setting variables dependant on a question. Even for simple things such as [code]if (balance <0) { color = red; } else { color = black; }[/code] looks much simpler as [code] color = (balance<0)?red:black;[/code] Especially if you … | |
Re: What do you have so far, what exactly have you struggled with? | |
Re: Well. depends on the calculation - if for example you had item, cost, quantity, and wanted "totalcost" you could do so in your query. So i guess you need to work at least what you want to look up and do with any answer, as well as what calculation you … | |
Re: clientdataset can be very easily used without a table: Take a read of : [url]http://www.3dbuzz.com/vbforum/showthread.php?t=152078[/url] where how to set one up is kinda explained a little | |
Re: Is this some kinda random thread? | |
Re: Does your picture get moved around within the picture box? otherwise, Im not sure why else you wouldnt stuggle with working out where you clicked on your picture. | |
Re: Normally thats what it does by default. | |
Re: OK, so you havent worked out the placing of parameters into functions - thats a very fundemental thing. If you do look through most of the code on this site you'll find some examples of user made functions that have parameters, and how to return values (theres some hints in … | |
Re: can you do exactly that command (eg "cd /apolo/") from a command line ftp program? | |
Re: Hmm, it didnt do that for me, and the file I picked (like a moron) was huge. Only thing I could think of which may help would be [code]reader.Seek(resp.ContentLength, 0);[/code] | |
Re: Im sure google has lots. What exactly are you trying to solve, and what problems are you having? | |
Re: probably because you dont check that paraNumber < than the number of available lines. (eg you havent shown where you set textFile1_paras, as an array, it may not be big enough | |
Re: Unfortunately this is supposed to be a delphi/pascal forum, not a c/c++ forum. If you have already made your solution (in pascal I assume) what areas do you feel your solution is weak.. | |
Re: Delphi 7 is not themes aware due to its age, so, you may need to recaclulate component locations on change. Or upgrade to a version of delphi which has more theme awareness. | |
Re: Im not sure you can. I believe its imposed on you when the size of your child form is greater than the container. Only way to do it would be to resize the child to smaller. |
The End.