836 Posted Topics
Re: You can just link to a copy of outlook and read data if thats what you need - there are a ton of examples on the net for it. If you add Outlook as a using you can access all the things you could ever want from a mailbox | |
Re: I guess it depends a little why you would have such a structure, however, if the forms have to remain forms, but work except the main form, you can of course disable it.. and have a counter so that when you close the other forms, they decrease the counter so … | |
Re: So, without my eyes burning holes, what difference do you get? | |
Re: Hmm sounds like its added the wrong library to the project thinking its a design package.. thats very clearly a runtime one. Remove it from the defaults. (just uncheck it) | |
Re: You have a lot of reading to do. If you want to use https you will need to purchase a certificate, and unless you want to make your own life excessively complex you would then use IIS to create the initial website, and you could use ASPX to then make … | |
Re: Read [url]http://en.wikipedia.org/wiki/Pascal%27s_triangle[/url] Work out on paper what you need to do program it into the languge of your choice | |
Re: I thought Ramymahrous had... after all you didnt come back with a it didnt work because. | |
Re: first thing to do is put a break point on the if combobox1.text <> 4 line and see what combobox1.text value really is and confirm its running the code | |
Re: So. Whats not working? In what way does it not work? | |
Re: There are plenty of similar translations all over, especilly the isvmware and isvirtual pc - google for them - as for the process list - there are plenty of examples of that too | |
Re: Imw ith the others if you can read one, you should be able to read the other. What stops you, What code do you have and what is the problem you have with it.. | |
Re: Thats why debugging was invented. Step through your code, see why its not doing what you thought.. First thing that comes to mind is [code] Delay (kk);[/code] kk doesnt seem to be defined, so I truely doubt that your code compiles. | |
[url]http://blogs.msdn.com/charlie/archive/2008/11/04/new-features-in-c-4-0-paper-plus-feedback-and-samples.aspx[/url] and [url]http://www.microsoft.com/downloads/details.aspx?FamilyId=922B4655-93D0-4476-BDA4-94CF5F8D4814&displaylang=en[/url] (Vmware should import the vpc..) | |
Re: google is your friend. Repeat after me repeat Google is my friend until (sunk_in = true); .. [url]http://delphibasics.co.uk/RTL.asp?Name=TFloatFormat[/url] | |
Re: Is RPC running on the remote machine What code do you have? | |
![]() | Re: If you dont thread the app, you will end up with users killing the app out of frustration with the whole "Application not responding" if they toggle away or try and move it etc. So, arguably, *any* process that could under even some bizarre circumstance take more than a second … |
Re: Depends on your level of coding, the fact you have nothing means you're gonna be late handing your code in console or windows forms? either way you probably need a menu to say, add, edit, view, delete, search.. you need to decide what data you want to enter, make a … | |
Re: Depending on the file, if you're downloading something to display specifically such as text, sure, otherwise if you need to pass it to an app such as zip files, word docs etc, you cant, the best you can do is temp files.. | |
Re: Just as you've shown how to write the contents of edit1, change the string you have in your assign file to be the edit 2.. | |
Re: ok, well you have some loops and so on thats good but the data you've shown in your file is 2d, how do you tell which dimension each part you read is to be placed in? | |
Re: I dsiagree, I would expect what you gave it, because you've overriden it, and it still conforms to the interface, but the class itself is still there! | |
Re: You should be changing the version in the compile, not at runtime. Versions are read only at runtime. | |
Re: Sure, google has all the answers | |
Re: put it in the array not the edit text box... like you wanted.. | |
Re: There are a lot of places to read on c# including microsoft who include examples with most of the methods in c#.. What are you trying to make and what problem are you having? | |
Re: Well first thing to try is telnet to port 8000, ask it a web style question check thats what you get.. Work from there. | |
Re: It hangs coz you told it to [code] for (int i = 0; i < 1000; ) { if (lotteryNumbers[i,0] == randomNumber) lotteryNumbers[i,1]++; } [/code] Look carefully at your loop | |
Re: Drawing the screens and adding simple code will be almost the same as c++ Do your code as much as you can, fix any syntax errors it whines of, then you'll probably have finished. | |
Re: Because you dont check Process32First, if there is none.. that will be fase and you could save yourself a lot of effort with changing the name of your variable to mean still looking.. so its [code] finding := Process32First.. while finding do begin if match then .. else finding = … | |
Re: Firstly you shouldnt have had to change the size of your record, if your record was defined in delphi 1 without sizes, you should have been ok with "string" now.. the record alightment is most likely the parts thats wrong. | |
Re: You almost certainly will, its the error insight. | |
Re: Might depend a bit on what the USB device is. | |
Re: Then you need to use one of the other overloads.. such as [code] List<int> locs = new List<int>(); int loc = -1; do { loc = wordToSearch.Indexof('a',loc+1); if (a>-1) { locs.add(loc); } } while (loc > -1 ); [/code] or, you could take a simpler approach and just do [code] … | |
Re: sure, use and and set the values accordingly. Assuming you understand binary logic. | |
Re: Dont hijack someone else thread with a almost non similar question just coz it has the word "web" in it. Start your own. | |
Re: OK, that reads like your course work. What part specifically are you struggling with - and what do you have so far? | |
Re: have a look in the rest of this forum theres a bunch of threads about printing PDFs and probably the simplest is to use adobe to do it for you. A driver would need to know its a PDF file to print, not just get the text of the PDF. | |
Re: yes you can, and with a small amount of imagination it was very obvious and very simple. In fact MSDN shows almost how to do it, it shows how you draw something for a given cell and it took me like 2 minutes of my life which I bothered to … | |
Re: Leaping into someone elses code is always harder than starting your own, sure find an interesting project to join, but, before you actually join in and commit, try and work on some of your own that will be relevant | |
Re: Work through the returned data setting the appropriate labels | |
Re: Have an ask of google. Google knows the answers | |
Re: No that would just call server.start For future reference you should say in what way it doesnt work. What debugging showsd you, what else you tried... The arguably best way to do it is to make your own server class, where it runs a thread, it has events to say … | |
Re: OK, its easier for us, if you tell us what you've read and tried so far. And if you dont know any c# why you picked it, and if you've coded anything else.. Google is the fount of all knowledge. | |
Re: Yep, casing sucks sometimes when it bites you, but it is a good thing overall. | |
Re: You have to update components by calling them with pinvoke - theres some great examples that come in your helpfile | |
Re: I would be useing measurestring before drawing the first - what if the space was not sufficient for the word you have? You also dont need to measure it word by word, pass the whole string. Assuming your font properties were all set, I wouldnt expect noticable white space, in … | |
Re: Theres a lot of potential answers for this, how hae you stored your words vs defintiions? which version of delphi are you using?, how much experience do you have? and what have you read about and dismissed so far (and why was it dismissed)? |
The End.