...With taskOutLook
.Subject = "This is the subject of my task"
.Body = "This is the body of my task."
.ReminderSet = True
* Set to remind us 2 minutes from now.
.ReminderTime = DateAdd("n", 2, Now)
* Set the due date to 5 minutes from now.
.DueDate = DateAdd("n", 5, Now)
.Save
End With
Thank you Mike. It worked.
Now another thing: I have already a form to work with so if I add olecontrol (choosing insert new Microsoft Excel worksheet) to the form when in design mode my OleClass is "Excel.Sheet8" and Documentfile propery is read-only. How can specify now which Excel file to...
I have a crosstab table that I would like to show on the form by automating pivot wizard. Can anybody provide some examples of how to automate pivot wizard?
Thank you.
Myclass.vcx is the name of class compiled into myprogram.exe. I set the path to myprogram.exe as well.
SET CLASSLIB TO myclass IN d:\test\myprogram.exe
Any ideas?
Thanks,
ikh
I have a form excluded from exe file that uses classes built into this exe. In VFP command window I type:
SET CLASSLIB TO myclass IN myprogram.exe
MODIFY FORM myform
VFP comes with error "Error instantiating class. Cannot find class myclass.vcx".
Can anybody suggest any idea to fix this...
It looks weird because I am running client part from VFP not VB. Are you suggesting that I should check my permissions on IIS where receive.asp is located?
Thanks.
I created receive.asp file with Tarwn's code
<%
Dim xmlDoc
Set xmlDoc = Server.CreateObject("Msxml.DOMDocument")
xmlDoc.load(Request)
%>
I also created following program to send XML:
oHTTP = CREATEOBJECT('Microsoft.XMLHTTP')
oHTTP.Open("POST","http://my_server/receive.asp",.F.)
xmltext =...
Hi,
I need to write ASP code (Server side) that will accept XML message sent using HTTP POST method. I am new to ASP and XML so some simple examples would be greatly appreciated.
Thank you.
I need to write a simple update trigger which should do following: update a logical field with .T. if any other fields changed. I wrote few lines of code that I thought should do it, but I am failing with "Cannot update cursor" error. Can somebody help???
This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
By continuing to use this site, you are consenting to our use of cookies.