Use our Google Custom Search for best site search results.
Search
Page 1 of 1 (8 items)
-
Under form, options, securuty, select certificate - I don't see the certificate that I expect to see to mark the form as fully trusted. I can see it under IE...but not under infopath. The certificate was assigned by a ms CA (on a ms certificate server) within the internet - which is were I'm trying to run the form. Why can't I select the ...
-
Found the root of this issue. The form has to be ''published'' and then opened from it's publihsed location for the system.web.mail library to work. Of course in hindsight this makes sence...but it sure does make coding from the vs.net interface a lot slower.
In summary...the code I posted above will work...just publish and then open the form ...
-
I'm getting this error if I try to use system.mail.web in code. Does this mean my code is bad or that I can't use
I added the system.web.dll as a reference and I put
Imports System.Web.Mail at the top of the program....what am i missing?
code:........................
Dim mail As New MailMessage
mail.To = ''cbaker@cafearizona.com''
...
-
I'm trying to understand this post in vb.net framework......is this this format correct for doing it in vb.net? (''themail'') is defined as under tools, dataconnection, submit, email..
Dim oEmail As EmailAdapter
oEmail = thisXDocument.DataAdapters.Item(''themail'')
oEmail.To = ''cbaker@cafearizona.com''
...
-
Thanks Patrick.
Actually, the code I am working with is on page 296 and I have modified it as shown below. I pass the body as a string....and then I added
'' <Field Type='DateTime' Name='StartDate'>'' + returndate + ''</Field>'' _
I wanted to put a datetime field in the default task list - in addition to the title and body. I ...
-
Patrick, I'm still working the example you have on page 297 of the book you co-authored. I'm having a bit of a struggle passing a datetime to the sample task list....I have the other part of your sample working fine.
What is the trick to getting a value back to the ''startdate'' field in the task list? with vb.net.......Thanks....Craig
-
My mistake. ''''1.New'''' is not the same as ''''1,New''''. I apologize to the members of the forum for a dumb question. Thought I had looked that over many - many times in the past 36 hours.
BTW....were do I find documentation of xxx.namespace(''z, ''#RowsetSchema'')?
-
Okay....I have found a format for a datetime constant that seems to work with my web services and display correrctly with the out - of - box wss views.
For example..if I set my string to ''2004-11-09T13:30:00.0000000-00:00'' and use this code to update list via web service....I like the results. Now I want to use the same format in the ...
Page 1 of 1 (8 items)