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 TouchToneTommy 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. huggyboy

    System.Net.Mail MailMessage - detecting email size

    Thanks for your input. My calculations on the email size was a first attempt/experiment - I will do it more rigorously (as you suggest) if there is no other way. H
  2. huggyboy

    System.Net.Mail MailMessage - detecting email size

    I have written a VB.Net program which generates emails via SmtpClient creating a mailmessage with a html formatted body with no attachments. All OK so far. However I would like to detect in the code what the size of the generated email message is - Mailmessage class doesnt seem to have a size...
  3. huggyboy

    Control to run window application in on a form

    Good point - i discovered that way of doing it just after i posted. Thanks for your input - i will tweak the program when i have a moment.
  4. huggyboy

    Control to run window application in on a form

    Just a follow-up to the previous post ... I eventually got it to work after solving a few small wrinkles ... the application i was running was expecting to be run in its own folder (to check some kind of registration / licence file) so i had to create the process then Process.StartInfo.FileName...
  5. huggyboy

    Control to run window application in on a form

    A simple windows form application written in vb.net seemed to work ok - havent got the actual program yet - it is a program that monitors & controls machinery using a dedicated panel but runs under windows. As long as the program get get a windows handle from the application then it should work...
  6. huggyboy

    Control to run window application in on a form

    On the 8th page of Google results i managed to find the answer - start the program as a process then set a panel control on the form to its parent - the example below runs windows calculator and doesnt need the sleep however when i created a .net windows app and called it instead the process...
  7. huggyboy

    Control to run window application in on a form

    Thanks Sorwen for your reply - i will describe in a bit more detail. I have been asked to create a form with buttons down the left hand side with an area on the right - depending which button is clicked different things appear on the right eg internet, display pdf document (can do those with a...
  8. huggyboy

    Control to run window application in on a form

    I am looking for a suitable control to place on my form to run a windows application (.exe) in, working in a similar way to the webbrowser object 'runs' IE inside it. I have a feeling I may be missing something obvious here. Anybody got any starting points? Is some kind of custom control the...
  9. huggyboy

    Compile Error

    If rs.RecordCount > 0 Then Checkload = True Else Checkload = False End If You will find an example of a function in the help (well it is in access 2000 the version i am using)
  10. huggyboy

    How do I user fontbold in vba e-mail from ms access

    I have found the easiest way to format email messages is to create the string as if it is a HTML document strmsg="<html><body> Hello <b>FRIEND</b> </body></html>" then set objOutlookmsg.HTMLBody = strMsg when you come to add to the message object before sending - probably need to amend your...
  11. huggyboy

    Conditional Formatting based upon the color of a cell

    As Skip said - post it on the VBA forum and let the clever people there have a look at it - if you havent done any programming it would be a start recording a macro and looking at the vba it produces - record changing the background colour of a cell - thats what the vba will have to do
  12. huggyboy

    Conditional Formatting based upon the color of a cell

    Are you still interested in solving this problem via the programming route?
  13. huggyboy

    Conditional Formatting based upon the color of a cell

    Might help if you posted the workbook you have done already. If it were my problem I would be writing some VBA to do it - because you have a relationship between the gate and the matrix via the relationship between the gate and the values - probably not something you can do via conditional...
  14. huggyboy

    Interpretation of date field in csv file by excel

    Excellent - thanks for your input
  15. huggyboy

    Interpretation of date field in csv file by excel

    Indeed - looks like the only dependable way around this on. Thanks for everybodies comments As a final parting shot csv file ... 2009-08-20,yyyy-mm-dd 2009/08/20,yyyy/mm/dd 2009-Aug-20,yyyy-mmm-dd 2009/Aug/20,yyyy/mmm/dd opened in excel ... 20/08/2009 yyyy-mm-dd 20/08/2009 yyyy/mm/dd...
  16. huggyboy

    Interpretation of date field in csv file by excel

    Yes I discovered that in my investigations before I posted. Very useful - thanks - doesnt address this particular issue though.
  17. huggyboy

    Interpretation of date field in csv file by excel

    The interpretation of the date by excel is correct however my point is the formatting it automatically applies to the cell - seemingly dd/mm/yyyy if the date is numeric or dd-mmm-yy if it contains letters (ie month) It isnt a major problem - i can reformat later - i just wondered if anyone had...
  18. huggyboy

    Interpretation of date field in csv file by excel

    On further investigation - csv file of 20/08/2009,dd/mm/yyyy 20/08/09,dd/mm/yy 20-08-2009,dd-mm-yyyy 20-08-09,dd-mm-yy 20/Aug/2009,dd/mmm/yyyy 20-Aug-2009,dd-mmm-yyyy 20 August 2009,dd mmmm yyyy is displayed in excel as 20/08/2009 dd/mm/yyyy 20/08/2009 dd/mm/yy 20/08/2009 dd-mm-yyyy 20/08/2009...
  19. huggyboy

    Interpretation of date field in csv file by excel

    This seems to be a slightly new twist on a recurring issue. I am writing a csv file using a vb.net application i have written and one of the fields is the date using the statement Format(Now, "dd/MMM/yyyy") and opening the file in notepad i can see that it is correct eg 20/Aug/2009. However...

Part and Inventory Search

Back
Top