Trato de poner en mi software como hacer para que me envíen sugerencias los usuarios o al menos saber las veces que ha sido instalado.
he pensado utilizar la función _INetSmtpMail que según la ayuda dice que sirve pero le hice algunas modificaciones, pero no tengo resultados, poniendo mi correo [email protected].
Ahora bien, ya que no logré hacer lo anterior, trato de que se escriba a través de un archivo .txt ubicado en esta dirección.
http://yasmanyorion.site11.com/?downloa ... encias.txt
desde el filezilla client tiene otorgado todos los permisos existentes.
¿Habrá como utilizar FileWrite? por que como lo he hecho reutilizando codigo de ayuda no me resulta, disculpen la ignorancia
en este enlace se puede tener acceso a los archivos que tengo subidos: http://yasmanyorion.site11.com/
Código: Seleccionar todo
#include <FileConstants.au3>
#include <MsgBoxConstants.au3>
#include <WinAPIFiles.au3>
Example()
Func Example()
Local Const $sFilePath = 'http://yasmanyorion.site11.com/?download=sugerencias.txt'
If Not FileWrite($sFilePath, "Start of the FileWrite example, line 1. " & @CRLF) Then
MsgBox($MB_SYSTEMMODAL, "", "An error occurred whilst writing the temporary file.")
Return False
EndIf
Local $hFileOpen = FileOpen($sFilePath, $FO_APPEND)
If $hFileOpen = -1 Then
MsgBox($MB_SYSTEMMODAL, "", "An error occurred whilst writing the temporary file.")
Return False
EndIf
FileWrite($hFileOpen, "Line 2")
FileWrite($hFileOpen, "This is still line 2 as a new line wasn't appended to the last FileWrite call." & @CRLF)
FileWrite($hFileOpen, "Line 3" & @CRLF)
FileWrite($hFileOpen, "Line 4")
FileClose($hFileOpen)
MsgBox($MB_SYSTEMMODAL, "", "Contents of the file:" & @CRLF & FileRead($sFilePath))
;~ FileDelete($sFilePath)
EndFunc ;==>Example
Código: Seleccionar todo
#include <ButtonConstants.au3>
#include <EditConstants.au3>
#include <GUIConstantsEx.au3>
#include <WindowsConstants.au3>
#Region ### START Koda GUI section ### Form=
$Form1 = GUICreate("Gui Sugerencias", 470, 319, 192, 124)
$Button1 = GUICtrlCreateButton("Enviar Sugerencia", 184, 264, 115, 25)
GUICtrlCreateEdit("", 16, 16, 433, 233)
GUISetState(@SW_SHOW)
#EndRegion ### END Koda GUI section ###
While 1
$nMsg = GUIGetMsg()
Switch $nMsg
Case $GUI_EVENT_CLOSE
Exit
EndSwitch
WEnd