Tek-Tips is the largest IT community on the Internet today!

Members share and learn making Tek-Tips Forums the best source of peer-reviewed technical information on the Internet!

  • Congratulations TouchToneTommy on being selected by the Tek-Tips community for having the most helpful posts in the forums last week. Way to Go!

Search results for query: *

  • Users: HelpMEDude
  • Order by date
  1. HelpMEDude

    Changing registry in vista, does not work

    Tried running your compiled program with administrative rights?
  2. HelpMEDude

    Delphi 2007 - Creating/Opening project fails

    Hmmm. I'm admin and always allow Delphi 2007 to run with admin privileges. I noticed one thing just recently. When I don't run it with admin privilege. In messages section, it is one line that says (only one) "Setup.exe(1): Den begärda åtgärden kräver en privilegiehöjning" It's in Swedish...
  3. HelpMEDude

    decode and encode numbers to text

    Can you please give a very clear instructions what should be done. Graphically explain could be a good resource. What numbers are most common, or is there not any? etc. As far as I've understood it, the raw and unsophistiated solution would be just to convert the numbers to base 255. And then...
  4. HelpMEDude

    Delphi 2007 - Creating/Opening project fails

    Hello, I've bought my copy of Delphi 2007 now and run it on my Vista system :). Though the interface is working like a charm, I can in no way manage projects, I can't open anything that uses a project, that includes almost everything. I can open .pas and .dfm files, look at them and edit, but...
  5. HelpMEDude

    Any type or record to file or stream or string?

    Hello everybody! I have created a record, that contains a couple of integers, classes, strings, and some additional own made types. I want to be able to save all the values, to save the whole data type to the disk. Is that possible?, I would prefer a way that is fast for the program. Of...
  6. HelpMEDude

    JPEG Pictures

    uses Jpeg, ClipBrd; procedure TfrmMain.ConvertBMP2JPEG; var jpgImg: TJPEGImage; begin chrtOutputSingle.CopyToClipboardBitmap; Image1.Picture.Bitmap.LoadFromClipboardFormat(cf_BitMap, ClipBoard.GetAsHandle(cf_Bitmap), 0); jpgImg := TJPEGImage.Create...
  7. HelpMEDude

    Poll: Concise or Simple code?

    The second, since I wouldn't understand the first one :) harebrian - Instead of the code in the {}-tags, can't you just describe with real words what the code does, or even better. Both :D? To be honest, the argument that the first one makes the source take 10B less disk memory is just stupid...
  8. HelpMEDude

    TOleGraphic shrinks images width height with ~10%

    Thanks again :) I thought TOleGraphic is the one because other classes can't convert most image kinds, or have I misunderstood something ^^? TGraphic is abstract, can I use it anyway?
  9. HelpMEDude

    TOleGraphic shrinks images width height with ~10%

    That's true aaronjme, I see it when I load an image with a lower screen resolution, I did not know this, but how can I solve the problem then :o ? Is the solution maybe that I must use the OleGraphic.picture.get_width? If it is, how can I call the function get_width?, it seems to require an...
  10. HelpMEDude

    TOleGraphic shrinks images width height with ~10%

    Hello, once again, for those who remember me ^^! I've tried to make a procedure that simply loads any frequently used image type (jpg, gif etc.) and then converts it to a 24 or 8-bit bmp-file. I decided that OLE was a good solution for this, since it's built-in in Delphi and all... I'd wrote...
  11. HelpMEDude

    Idhttp, how to send the data in idhttp.request

    Hello, I'm not sure really what XML or HTTPS is :(. If you mean I've got a code that can send HTTPS data (I assume HTTPS is alike HTTP protocol) and recive XML (I assume XML is alike HTML) data, then no, I send HTTP and recive HTML code using http://www.badfan.com/delphi/TIE_http_https.html...
  12. HelpMEDude

    Idhttp, how to send the data in idhttp.request

    Stretchwickster - The third link i found useful, thank you :). buho - Yea, it seems so, I've mixed up two things (one i still dont understand what it is...), but my question from the start was how to send all those (in idhttp.request) things/values to a server, I've not found any procedure that...
  13. HelpMEDude

    Idhttp, how to send the data in idhttp.request

    Nope, it just crushed at the http.post-line, thank you anyway tough. I began worrying we ain't talking about the same thing when you wrote the parameter examples: ParamData.WriteString('username=' + Username); ParamData.WriteString('&password=' + Password)...
  14. HelpMEDude

    Idhttp, how to send the data in idhttp.request

    Hello, I guess no-one remembers me when i posted here for over one year ago, but now I'm back :). I'm having trouble to simply send the values in idhttp.request to a webisite, the help file says: "Specifies the header values to send to the HTTP server.", however I have not found out how to send...
  15. HelpMEDude

    Image changeing picture during runtime

    Sorry didnt work, can it have anything to do that i must uncode *.jpg* files or something?
  16. HelpMEDude

    Image changeing picture during runtime

    Hello?!!? Please respond if you can
  17. HelpMEDude

    Image changeing picture during runtime

    Here i am again! My next problem is about the same issue, since i noticed another less urgent problem. The problem is that the area image1 is on turns white for a fraction of a second (i mean a very very short second if you didnt understand) and that makes an irritation in the program. Also...
  18. HelpMEDude

    Image changeing picture during runtime

    Thank you. i didnt get much about the edample in the folder you showed me but the first post helped me much, thank you!
  19. HelpMEDude

    Image changeing picture during runtime

    Hi and thank you for answering on my previous question and now im up for my second question which may look easy but i never found any answer. The problem is what the topic says: When I load a picture to image1.picture the (TJPEGImage) text appears, thats no destination, if it was i could...
  20. HelpMEDude

    Delphi Cannot Identify something alredy declared :/

    Thank you so much!!! :):)

Part and Inventory Search

Back
Top