836 Posted Topics

Member Avatar for animefun2

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 …

Member Avatar for animefun2
0
1K
Member Avatar for yosi
Member Avatar for LizR
0
214
Member Avatar for panpanf
Member Avatar for arupa
Member Avatar for LizR
0
108
Member Avatar for Kev_McG

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.

Member Avatar for LizR
0
140
Member Avatar for bulawa2002

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.

Member Avatar for LizR
0
109
Member Avatar for polo_coins

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 …

Member Avatar for ddanbe
0
505
Member Avatar for quax90

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 …

Member Avatar for LizR
0
136
Member Avatar for algo_man

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 …

Member Avatar for LizR
0
85
Member Avatar for mariashahid

What code do you have so far? What exact problem are you having?

Member Avatar for LizR
0
72
Member Avatar for AKJo

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

Member Avatar for LizR
0
110
Member Avatar for MutokoCraig

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

Member Avatar for LizR
0
77
Member Avatar for polo_coins
Member Avatar for Chris11246
Member Avatar for LizR
0
68
Member Avatar for tcoma4x4
Member Avatar for polo_coins

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 …

Member Avatar for polo_coins
0
90
Member Avatar for navcha

Your question isnt clear, but there are plenty of functions within the datetime range, have a look..

Member Avatar for Salem
0
100
Member Avatar for polo_coins

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.

Member Avatar for LizR
0
72
Member Avatar for polo_coins
Member Avatar for LizR
0
78
Member Avatar for stoymigo

If you have .net 3.5 you could read the values from excel into an array and use LINQ

Member Avatar for LizR
0
66
Member Avatar for Soundgarden

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 …

Member Avatar for LizR
0
152
Member Avatar for savi3

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.

Member Avatar for LizR
0
97
Member Avatar for dearrajaguru
Member Avatar for freshfitz

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

Member Avatar for freshfitz
0
240
Member Avatar for sanfan49er

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.

Member Avatar for LizR
0
188
Member Avatar for chris5126

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

Member Avatar for LizR
0
133
Member Avatar for absu

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.

Member Avatar for LizR
0
114
Member Avatar for bjaanes

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 …

Member Avatar for LizR
0
88
Member Avatar for amardhembare
Member Avatar for LizR
0
129
Member Avatar for arcturus2005
Member Avatar for LizR
0
37
Member Avatar for bigunn

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

Member Avatar for rapture
0
86
Member Avatar for IT_Techno
Member Avatar for LizR
0
187
Member Avatar for SeaZoneDev

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 …

Member Avatar for LizR
0
118
Member Avatar for Renukavani

Please read the 2 stickies. We dont do your work for you, please do some research and come back with a more precise question.

Member Avatar for Renukavani
0
76
Member Avatar for compovet
Member Avatar for dtakis
Member Avatar for biased36

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, …

Member Avatar for LizR
0
135
Member Avatar for kapil.tandon

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.

Member Avatar for kapil.tandon
0
118
Member Avatar for neeljpatel
Member Avatar for AKJo

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.

Member Avatar for AKJo
0
178
Member Avatar for rapture

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.

Member Avatar for rapture
0
253
Member Avatar for TheFueley

You can use almost any language you like. You can access many things through outlook, is the distribution list in the GAL?

Member Avatar for TheFueley
0
78
Member Avatar for matejkralik

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 …

Member Avatar for matejkralik
0
113
Member Avatar for toadzky
Member Avatar for legend_018

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

Member Avatar for LizR
0
127
Member Avatar for rapture
Member Avatar for LizR
0
88
Member Avatar for scru
Member Avatar for LizR
0
148
Member Avatar for legend_018

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, …

Member Avatar for jireh
0
405
Member Avatar for mufliha

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?

Member Avatar for Elmo_loves_you
0
168
Member Avatar for Zolookas

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 …

Member Avatar for pritaeas
0
153

The End.