836 Posted Topics
Re: Are the from/to addresses local to the mail server, eg, you arent trying to relay? | |
Re: If you need it done for each and every update, triggers are pretty much the only way to do it, but you dont have any method to throttle it. If you can bear to batch it, then trigger the batch check every x minutes. You can do so. | |
Re: The class is not static, ergo, you cant. You would have to make an object, and then you can let it expire. | |
Re: Or, in a more OO term you would either set the property of the second form - which has an associated event to triger the change in form 2. | |
Re: As I said before, work it out on paper, you have a few ways to do it. One is messier to code but easier on the eyes, the other a bit more maths but easier to code. Either way, its a logic issue not a coding issue, so have a … | |
Re: Yep.. Just because you've declared a container, doesnt automagically mean its made, thefore the new keyword gives you the default contents for that type | |
Re: The classes would need to share a parent to do that and all be descended from the parent | |
Re: Glad you found it then - and please mark it as solved! | |
Re: As per the announcements at the top of the forum we dont tend to like giving flat code answers because in 90% of cases people just return the next time with an almost identical problem and cant see it because they dont take the time to learn what was given … | |
Re: Then try the appropriate forum. This is c# | |
Re: Well First step would be.. What is the path it is unable to find? | |
Re: In part you dont get 3 lines because your txtResult.Txt is never told to separate the lines! | |
Re: What have you tried? You give no example code, so we have no information to help you with .. looks like a simple case of sorting and grouping to me. | |
Re: Pressing F1 on a component will take you to the MSDN help which has examples, its really not overly hard | |
Re: The difference is the = +1 is the same as =1 where as += 1 will add one and store it. Typos FTW | |
| |
Re: You can do and send anything you would over a browser as long as you're prepared to disect it and play around long enough, this includes the login process, redirection etc. Its not something someone can just hand you an answer for. However, if you monitor the HTML to/from your … | |
Re: Easiest way is to have a hidden share, and for the file to be copied as part of a login script | |
Re: The problem is you're assuming your authority is passed on, programattically it wont, you need to do that for it. Try your code out to start with locally.. before worrying about other machines. | |
Re: You need to look at the draw event most likely | |
Re: Ok, so you clearly defined what you want.. But you dont seem to have tried anything at all.. What options have you read about, considered, tried to code? What happened? | |
Re: Its almost certainly correct: as you go to use Child_name, but you checked parent wasnt null, so child could be | |
Re: You're setting a cursor position beyond the bounds of your console window, it wont like that | |
Re: Is there a question in all this or just spam? Either way, try the asp.net forum | |
Re: Because you compiled it with runtime libraries - if you go the project options and turn it off. you wont. | |
Re: Because its happening so fast the seed is the same for all. move the [code]Random losowanie = new Random();[/code] to outside the function so its not recreated each time, so its a private variable to your class. You should get different numbers then. | |
Re: Is there any chance that the .cs file - actually isnt .cs but it thinks it has another extension like .txt after it? | |
Re: Wherever the code is run. So, unless you use .net remoting for a windows/mono app then most likely its on the client. But if you're talking asp.net (theres a forum for that) it would be the server end.. | |
Re: OK.. [code] public uint m_sumenum; public static uint Somenum { set { m_somenum = value; } get { return m_somenum; } } [/code] Not really - firstly it would only be static if the variable was static - eg it was going to be on a per class basis, not … | |
Re: But strings *ARE* made of chars.. the fact you're walking through them (at your request) as chars, will mean you get chars back.. | |
Re: Whats actually in your connection string? | |
Re: Im guessing because your object doesnt contain a file, it contains a filename, and you cant just put a string object to desktop. I googled found plenty of examples, which work - i would suggest you do the same. | |
Re: You have a lot of options. You mention share the app, well as long as you write it as 1 exe, and dont use 3rd party components you will only need the 1 exe. But it wont take the user settings with them - the best way to do that … | |
Re: You mean like the one that comes with it, eg [code]numericUpDown1.Value.ToString();[/code] I guess you didnt look very far | |
Re: That would be because either you didnt add the using, or put in a fully qualified namespace path. | |
Re: You can use panels and have buttons instead | |
Re: You show no code. its hard to help you without. FileZilla may use multiple connections to achieve a higher speed, it could be poor coding leading to delays in the processing.. Make a basic command line app that downloads your file. Post the code once you've done some tests on … | |
Re: You'll need to show how you are reading in your XML for starters. | |
| |
Re: Replacing MSGina is not as simple as I tihnk you're looking at there. I would guess a number of those elements fail as you're not logged in at that point. I dont believe its just a case of "impersonating" a specific user, you need windows to go through the real … | |
Re: Why doesnt it work - what exactly goes wrong? What code are you using? | |
Re: There are quite a few string operations - have a look under "String" | |
Re: Well if you've worked out how to read a page, posting to a page shouldnt be that much harder. have you tried posting the variable to the search page? | |
Re: Yes you can remove the line you highlighted, and for the other 2 functions too. |
The End.