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.
I have a basic console window. It is blank and all my program does is run though sockets to a host computer. How do I make the black console window not visible?
I'm using Delphi 2007.
Remove
{$APPTYPE CONSOLE}
from the source code...
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.
How can I change the content of a memory address using ddd?
Well, ddd runs gdb underneath, so in the gdb window you can just type something like:
set *((int *) 0x822b2ec) = 0x100
See How to modify memory contents using GDB?
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.
I am making an ios application the i want to know how can i use a video as background?!
Actually the "Vine" application already did it.
you can hide the movieplayercontroller's default controls, and add any other views. it's just like set the video as the background.
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.
Is it possible to create program that is compatible with all operating systems?
If not, what would be the best way to break it down and configure it to suit.
Please take a look at QT http://doc.qt.digia.com/qt/supported-platforms.html but it is not supported on iOS.
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.
How make program like skype,?
What should I have to know to make it like the program?
Which component should I use?
On Windows, Skype is written in Delphi and uses Indy for its network communications. You will have to implement the actual audio/video protocols manually.
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.
the images should be store in a directory(image) under the project
In windows forms, the user doesn't need to 'upload' the file, because the application runs locally. Instead, ask the user for a filename (typically through an open dialog); then copy the indicated file to the target location.