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.
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 want to allow other apps associated with .docx files to be able to edit the files I have inside my App document library. Is that applicable?
Impossible! Each app has its own private folder that is not accessible by other applications! If this was allowed then any app could break other apps files. Doesn't seem logical
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 have to build a calendar like the one in the picture. I saw that the library eiste Tapku Library but is different from what I get. Do you have suggestions?!
Use klazuka_Calendar:
https://github.com/klazuka/Kal
And Also This is best site for all custom Controls.
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 starting this tutorial and would like to know if the complete database is anywhere to be found please?
Thanks
Inside the zip of the sources there is a directory called DatabaseScripts you simply have to execute the script to create your Database
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 want to store and retrieve images from sql database in Delphi XE.
My code:
TBlobField(query.FieldByName('image')).SaveToStream(MStream);
Image1.Picture.Graphic.LoadFromStream(MStream);
Don't forget to set the stream position to 0 between saving from the database and reading from the image.
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.
i had created two service,both are using same folder..i want to unlocked the folder when first service work got over..plz help?????
Its not clear what you want. But two or more processes can use the same folder.
You can't delete or rename a folder that is in use by another process.
If you read and write a file at the same time, results can be unpredictable. But if you open a file you can specify if you want exclusive access.