Jump to content

ichaos69

Members
  • Posts

    6
  • Joined

  • Last visited

Everything posted by ichaos69

  1. Hello all, Got a question on the basis. I would like to write the udf pack for a very specific software called prophix. Where can I find guide or manual how to write an udf or are there any methods to do it? I will post it here as I will investigate how to do it. Thanks!
  2. @JLogan3o13, Thanks for your support! Will appreciate if you could somehow explain me the basis of work: I mainly have systems to work with, These systems are site in Mozilla firefox, SAP and budgeting software. I have found UDF to work with SAP, but others can not. So I have the following question: 1. I need to spend much time downloading from SAP information required to work. I would like to automatize it in this way: I start the SAP downloading script and do some other work, so SAP just works from task bar and performs all actions required while I am working in other system on the same computer. Is it possible and if it is, would you kindly give information about where I can find some basics to learn the process; 2. I work with mozilla firefox with site, so I'd like to automatize some downloads as well. Am I supposed to write a completely new UDF and if I am, how? 3. I administrate very specific budgeting software basing on SQL Server. To calculate data, I need just start processes inside the software. Can I perform it in way like I want for SAP? Does it require the specific UDF? Many thanks
  3. Thanks a lot! Detailed example here: I've got to download information from web-portal. To perform it, I have to access the site, then go to the required report, then press the button to download. I know how to simulate it, but the simulation requires not to do anything while this is done. I want to do everything "silently", while the script is doing something from taskbar, I want for example to go to another site or another program without disturbing the acces and downloading process. Thanks for Control commands, so, is it possible to write the "silent" script as I described? Thanks a lot once more!
  4. Dear colleagues, Now I am implementing the autoIt-based program, which is meant to make processes faster. So I now have a question: can I work with program while doing something simultaneously, like programs in Windows (For example, I give the browser task to download file with help of autoit and while downloading is performed, I write smth in Excel)? This means to work with software not by simulating mouse and keyboard, but in another background way. Thanks!
  5. But after I close Form2, the Form1 (menu) cannot be closed anymore. It just freezes. What can be done here? Sorry, missclicked publishing. Thanks!
  6. Dear forumers, Kindly ask your help. I'd Like to make a menu and a form, which opens from this menu (code is below). I want form2 to be closed but the menu (form1) stay. But after I close Form2, the Form #include <ButtonConstants.au3> #include <GUIConstantsEx.au3> #include <WindowsConstants.au3> $Form1 = GUICreate("Form1", 615, 438, 192, 124) $Button1 = GUICtrlCreateButton("Button1", 224, 96, 137, 65) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE Exit Case $Button1 $Form2 = GUICreate("Form2", 615, 438, 192, 124) $Button2 = GUICtrlCreateButton("Button2", 224, 96, 137, 65) GUISetState(@SW_SHOW) While 1 $nMsg = GUIGetMsg() Switch $nMsg Case $GUI_EVENT_CLOSE GUIDelete($Form2) EndSwitch WEnd EndSwitch WEnd I'd Like to make a menu and a form, which opens from this menu (code is above)
×
×
  • Create New...