|
Say I make an .exe file and everything is peachy. Wonderful it works.
Say I worked on a new feature on the software and I want it to be available for people who already have the older version, how can I make the software find my new version, patch it,...
Started by John McClane on
, 11 posts
by 11 people.
Answer Snippets (Read the full thread at stackoverflow):
Make your app occasionally make a request over the web to your webserver(); }
Now my main application....
You don't have to make any special changes to your code to enable, build, package and upload.
It will install it for the user.
|
|
Until iPhone 3.0 is available, I need to send an email with what my iPhone app has generated (an image) and to where the user has chosen.
Two solutions, the skpsmtpmessage library, which is not all there and still buggy; or write my own server to forward...
Started by codist on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
If you make it do something like http POST to the webserver, then let the webserver generate the message, you'll make it harder to spam, so I wouldn't worry about it too much....
Making it as exact as possible will definitely lower spam.
|
|
PHP make an Admin Area ,to check the User name and Password and then load to another Page
Started by ibrahim on
, 6 posts
by 6 people.
Answer Snippets (Read the full thread at stackoverflow):
Articles and then try to code something simple by yourself to see how PHP actually works.
|
Ask your Facebook Friends
|
How do I make my Linq to Sql class IEnumerable or an object IEnumerable in C# 3.0
Started by Greens on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
However, in your controller (assuming ASP.NET MVCTo make an object Enumerable in C# you would implement the IEnumerable interface
public class.
By "make my Linq to SQL class IEnumerable".
|
|
Hi, How can I make my own event in C#?
Thanks
Started by Gold on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
Tutorials on the use of events in .net here
I have a full discussion of events and delegates in my events;= Maximum) { i = value; } else { //To make sure we only trigger the event if a handler is present //we check the event to make....
|
|
How can I make my C++ code cross platform capable? I need it to work on Windows and Xubuntu.
Started by Cmptrb on
, 9 posts
by 9 people.
Answer Snippets (Read the full thread at stackoverflow):
(See: adapter pattern .).
And make the os-specific components easy to manage.
|
|
I have two classes: a base class, Foo::Base and a derived class, Foo::Base::Sub . I want to have Foo::Base::Sub do some type and data checking on the constructor`s argument--a hash--before blessing it. I've tried overriding Foo::Base->new 's constructor...
Started by gvkv on
, 5 posts
by 5 people.
Answer Snippets (Read the full thread at stackoverflow):
Foo::Base::Sub::ISA = qw(Foo::Base); sub new { my $package = shift; my $self = $package->SUPER::new constructor must use the two-argument form of bless :
sub new { my $package = shift; my $self = bless::Base; sub new ....
|
|
How can I make a log of my application? Like maybe when an error is catched, it emails the user a log file? Maybe something like this ?
Started by Mohit Deshpande on
, 4 posts
by 4 people.
Answer Snippets (Read the full thread at stackoverflow):
/2008/06/29/log4net-tutorial-in-c-net-how-can-i-show-log-in-a-file/
The simple built-in method is to use the DebugListener.
|
|
How would I play songs or make a splash screen for my cocoa app? I know it's a simple question but I am a complete noob when it comes to cocoa.
Started by Kevin on
, 3 posts
by 3 people.
Answer Snippets (Read the full thread at stackoverflow):
You can connect an instance of this class as the... .
You want to create an application delegate class and implement the -applicationWillFinishLaunching and -applicationDidFinishLaunching methods to display/hide your splash screen or start/stop your audio .
|
|
Hello,
i use n-tier programing on c# and i want to make a template to generate code easily (this is .cs, .csproj and .sln)
my question is, how can i make it? and if exist a software, which one you recomend???
it will be very useful your opinion
Answer Snippets (Read the full thread at stackoverflow):
Another templating....
You can also use the Visual Studio SDK to create project templates .
Code smith should be able to generate all the types of files you are looking for, SLN, CSProj and CS files .
A good templating and code generation engine is codesmith.
|