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 Mike Lewis 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: *

  1. Julio_MGM

    Changing Fields in a View

    I don't know if i understood what you where saying but, why don't you work with one array, and you fill the 2 listboxes with the data from that array. (value_display, show_lb1, hide_lb1, selected_lb1, show_lb2, hide_lb2, selected_lb2)
  2. Julio_MGM

    Add Option To _SCREEN OS Menu

    In remote app you don't have the remote desktop only the remote app, it shows on the local computer has a local APP. But when you right click the windows taskbar it shows the RDP options.
  3. Julio_MGM

    Add Option To _SCREEN OS Menu

    I am only using this option because of remote app. The way it is working for me (i think) is the best solution. But i agree with the solutions that were given here. The only problem was the amount of code i need to change to make it. If i was going to start something, i would go with that...
  4. Julio_MGM

    Add Option To _SCREEN OS Menu

    I am using foxypreviewer. I understand the other options but i need to make lots of changes so that they can work. I have it working. I can put the link to the forum with the answer but i don't know if it is allowed.
  5. Julio_MGM

    Add Option To _SCREEN OS Menu

    There are some option where i disable the menus and all shortcuts, like for example in print preview. And in that cases if i want to open a new windows its not that easy. So this way if i am using the system menu it will always work.
  6. Julio_MGM

    Add Option To _SCREEN OS Menu

    I am sorry for the delay to answer. I am running the app in windows remote app so right click is not the way to go.
  7. Julio_MGM

    Add Option To _SCREEN OS Menu

    I want to add one new option to the windows system menu, in my app (_screen), the menu that shows when you right click the title bar or when you click the icon on the title bar. In this case the option i want to add is "Open New Window" and it will launch a new instance of my app. I am not...
  8. Julio_MGM

    Add Option To _SCREEN OS Menu

    i have found it in VB.NET but i don't know if it is possible change the code to VFP. Imports System.Windows.Forms Imports System.Runtime.InteropServices Public Class CustomForm Inherits Form ' P/Invoke constants Private Const WM_SYSCOMMAND As Integer = &H112 Private Const...
  9. Julio_MGM

    Add Option To _SCREEN OS Menu

    Hi everyone. I am trying to add one option to my app System Menu, the menu that appears when you right-click on the tittle bar or you click on the icon. Is it possible? Thanks
  10. Julio_MGM

    HTTP Post to upload file

    Thanks it is working. Can you help me use the Eventhandler to monitor the upload? With WinHttpRequest i am only able to monitor the download. Thanks.
  11. Julio_MGM

    HTTP Post to upload file

    I know i can get the file now but i wanted it to work without the var_dump.
  12. Julio_MGM

    HTTP Post to upload file

    i changed the code a now i get the file as "HTTP_RAW_POST_DATA" when i do a var_dump in PHP current code: loHTTP = CREATEOBJECT("WinHttp.WinHttpRequest.5.1") loHTTP.Open("POST", "http://www.----------.com/webspace/getfile.php", .F.) xBOUNDARY = "+++++" vbCrLf = CHR(10) + CHR(13)...
  13. Julio_MGM

    HTTP Post to upload file

    from what i understand of the php error log i am not parsing this variable in vfp. $_FILES['file']['name'] is there a way for me to do this.
  14. Julio_MGM

    HTTP Post to upload file

    I have another app that is working just fine with the upload.
  15. Julio_MGM

    HTTP Post to upload file

    Hello everyone. I am trying to use WinHttpRequest to upload a file but it is not working. this is the code i have, it gives me a response of 200 but the file isn't uploaded. The VFP Code filecontent = FileToStr(ficheiro) loHTTP = CREATEOBJECT("WinHttp.WinHttpRequest.5.1")...

Part and Inventory Search

Back
Top