It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
How to realize auction expiration? Make it inactive after 1-3-5 days? Something like eBay?
Any links for information would be appreciated,
I have "active" boolean field in my auction table
There's a lot of ways to do this. I think the question was very difficult to understand and that's why you didn't get any answers. Check out this question to see if it gets you on the right track: Best way to run scheduled tasks
Related
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 9 years ago.
I'm developing a web page (asp.net, C#), where the users enter some data every month and save it. I use oracle database.
If the data is not entered for a month, I want a mail to be sent to some email ID, ie. myid#abc.com.
Can anyone help me doing this?
Given how vague your question is, here is an answer to match - use Oracle Alerts.
This blog article should put you in the right direction.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
I have a form as Dashboards. I want to automatically refresh data without the data being read from the database and the user are shown.
What is the best late for this scenario? I did this using a timer, but the best for this scenario is late?
If you want to show data to user but you didn't want to crash your form you can Use background worker or use threads in advanced.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 11 years ago.
Can't find any information in Web, so is there any standard possibilities for creating search by columns in default WPF DataGrid?
Here is a good one for you.
But, there is no Standard easy way of doing this. I think the easiest way is writing your own method which hopefully would save your time and give you more flexibility.
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 12 years ago.
Im just learning about reflection in C#. Anyone know of some good tutorials or want to give me some sample code to look at? Thanks!
You might like to look here to start with.. (Its the first result in Google Search)
http://csharp.net-tutorials.com/reflection/introduction/
It's difficult to tell what is being asked here. This question is ambiguous, vague, incomplete, overly broad, or rhetorical and cannot be reasonably answered in its current form. For help clarifying this question so that it can be reopened, visit the help center.
Closed 10 years ago.
how can i make a login and logout history in c#
recording who's the username and the time and date in c#
This would probably be best done with a new database table that records the username/id, the action (login/logout), and the time. Which each future action, your login/logout logic writes another entry to this table, saving it for future requests.