836 Posted Topics
Re: Well the answer would be more evident if you debugged it. You tell me what the values of each part of that line works out to be, so Z, ln(Z), etc.. you tell me which bit fails.. and what the values are. Are you really using turbo pascal from the … | |
Re: Well give you have some code, in what way does it not work? | |
Re: Both those books will explain it further | |
| |
Re: Change it to a text box, and then as part of the check, check that the contents of that box is in the valid usernames list. | |
Re: Things like toner level arent always available through the driver, so you may have to look at connecting to the printer on any web interface it has and working from there. | |
Re: That functions for decimals, rather than to integers so.. theres 3 functions (which your helpfile would have mentioned linked to round) round - rounds 2.454 to 2.54 floor - takes 2.45 to 2, and 2.8 to 2 ceiling - takes 2.45 to 3 and 2.8 to 3 round is the … | |
Re: Hi, Firstly if you have read the stickies, you'll know we wont be giving you the code, secondly, its your home work, [B]you[/B] need to research the out come of your first question, eg, does it split the message or not. When you have code and a specific question about … | |
Re: Nope, no code.. UDP is not generally a good idea to use for transfers, as it is connectionless, it doesnt guarentee that the other end receives your data. As long as you set up a protocol such as FILE <size> <name> <DATA> you send exactly that. its up to you … | |
| |
Re: Ive not seen that, and with that screen shot its hard to tell as theres a red dot underneath.. the current line. normally that only happens when its either finding a similar named dcu or cant overwrite the current one - make sure you turn optimizations off | |
Re: When the child opens, it has to tell the parent to set the part of the treview to say its visible and when the child closes, it has to unset it.. Take it from there | |
![]() | Re: Well done, you'll find further examples of random in the helpfile |
Re: OK, so what problem are you having making it? | |
Re: As it wasnt set in coded blocks its harder to read, it also has a lot of commented code, so theres little to comment on.. other than your "console.write" lines dont actually "get" the value.. or display it.. they'll appear as random unwanted lines. What did you want the comment … | |
Re: Your question isnt clear, but there are plenty of functions within the datetime range, have a look.. | |
Re: Your question makes little sense. The date time functions have plenty of thigns to help you, you can use standard logic on a date time value.. Read first, ask second. | |
Re: Then have a look at the helpfile, it has a number of examples. | |
Re: If you have .net 3.5 you could read the values from excel into an array and use LINQ | |
Re: First question: You can get the selected item from a combo box and use that to send to your procedure.. (which is I think what you asked) Second.. hr Its just a return variable, it probably should be checked that the value is as expected.. but.. I havent read up … | |
Re: You can put it into a comma separated list (eg csv) which excel will read in, or you work with excel direct, the first is simple and there are numerous examples available. | |
Re: Then add the code to append your data also. You have the code to append data already in the scripts you provided (bad idea including a valid email though) and so, whats your actual question, you look like you posted your own answer | |
Re: If thats all your code then what its told you is right, it looks like you tried to make a console app but maybe by mistake overwrote the Main procedure. | |
Re: You could google for ping and c# and use some c# code to do it without spawning anything - which will be more compliant with working with a service | |
Re: When you say [QUOTE=absu;711271]Hello, and on the button- [icode]Button2.Attributes.Add("onclick", "openCalender_range_start_date();");[/icode] [/QUOTE] Can you show the whole line? it could be how you've placed this code. | |
![]() | Re: Thats unusual, as to be checked it means it has a value other than 0, and by default the answer is 0 or false. When you hit the plus button are you creating a class or just inserting a db record? Does it have any specical code? Are the check … |
| |
Re: Probably because you havent added the reference for System.Drawing | |
Re: Take a look at [url]http://msdn.microsoft.com/en-us/vcsharp/aa336766.aspx[/url] MS have provided a large number of tutorials on c# and xna | |
Re: You could store them in blob fields, (for which there are many existing examples) | |
Re: Wouldnt this be easier with a stream? anyway.. your while look of eof hasnt made much sense in this case, as when writing you dont normally test for eof... when you blockwrite, the params are file,buffer,count, result Your count doesnt get a value it should read something like BlockWrite(BIP,TileRec,1,itransfer); If … | |
Re: Please read the 2 stickies. We dont do your work for you, please do some research and come back with a more precise question. | |
Re: Set the name of your text box. | |
Re: If you comment out the logging - does the service still work? | |
Re: Check theres no firewalls on either machine, and see if you can connect using the built in telnet (unless its vista which doesnt bother to install it by default) , if you can connect with telnet but not the app, somethings not quite right, if you cant connect with telnet, … | |
Re: HTMl is only text, so, my advice is to devise a layout, and then use that as a template and fill it in with a routine you pass information to. | |
| |
Re: When you say your scroll bars arent showing, under what circumstance are they not showing.. For the form itself to have scrollbars, controlls would need to be below or to the right of the visible edges of the form. | |
Re: Beauty of .net is you can mix and match languages, so if your vb part goes in .net 2 then your task is a lot smaller. | |
Re: You can use almost any language you like. You can access many things through outlook, is the distribution list in the GAL? | |
Re: 2 things come to mind. 1. Is it actually calling the DeleteRowMaterialTyp ? eg, if you changed it to log to a new table like a syslog table to say "I was here with param: xxx" . does it do it? 2. is the value of CurrentRowCellparam what you think … | |
| |
Re: perhaps what you saw on the tutorial (link it if you could) was something where it was taking "myapp.myclass" and extending it.. where where myapp is the name space and myclass being the actual class being extended | |
Re: Microsoft have enough white papers to sink a ship. Try there. | |
Re: Usual questions, what have you tried, what have you found what errors do you have... | |
Re: The thing to memorize is the syntax of things, the basic things, like ifs have to have round brackets, each "sentance" has a ; at the end, its case sensitive, if you want to change from one variable type to another you almost certtainly need to do that yourself.. Then, … | |
Re: As this isnt your first post Im sure you've read no one will just post you code. What have you read and what exactly are you having problems with? What code do you have, and what errors is it giving? | |
Re: Well. For a linked list you'd need to know where you're adding the item, so, you'd need to make a class so that add is applied to an item, so its added between the 2 items, and then you can handle deletion as well as moving, etc. Well firstly Id … |
The End.