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 SkipVought 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: *

  • Users: stranger123
  • Order by date
  1. stranger123

    Make my own HTML code for Outlook?

    I do find a few ways to do that, but Outlook just replaced my <META with its <META. I realy want to send a html formated message with my own <META.
  2. stranger123

    Make my own HTML code for Outlook?

    Hi, In Microsoft Outlook, I start a new message with format HTML. Then I right click the big window and select View Source, I can see some HTML code. My question is can I make my own HTML code for Outlook to construct the new message? Thank you in advance.
  3. stranger123

    Kill statement not works

    jrbarnett, Thank you for your comments. I have just check the "Security" and found it is set to Medium. I can delete the files by "Kill" in Visual Basic 6.0.
  4. stranger123

    Kill statement not works

    Hi, In Excel VBA, I tried Kill "C:\xxxxx\xxx.txt" without success with no error message. Why? I know the path is currect and the file is existed.
  5. stranger123

    Mini071206-01.dmp?

    Thank you. More information: When restart, the hard disk was scaned and it said the errors are fit. After restart, browsing became OK. I opened the dmp file by notepad and got lost (as expected).
  6. stranger123

    Mini071206-01.dmp?

    Thank you for all your suggestions and I am going to try to read the file: though it seems too difficult for me :( Do you think it is too hot?
  7. stranger123

    Mini071206-01.dmp?

    Hi, A few times, found my Windows XP became very slow when visited webpages, I restarted it and it scaned my hard disk and got error. Today, the report said the error are in C:\WINDOWS\Minidump\Mini071206-01.dmp C:\DOCUME~1\.....\LOCALS~1\Temp\WER1.tmp.dir00\sysdata.xml Do you know what...
  8. stranger123

    pass a dynamic array to a function

    Thanks a lot for your help!
  9. stranger123

    pass a dynamic array to a function

    Hi, I remember a book said we can use *& to pass an array to a function, but now I find it can be done by use * only. For example: void main() { int* myArray = new int[1]; myArray[0]=1; MyFunction(myArray); cout<<myArray[0]<<endl; delete[] myArray; } void MyFunction(int*...
  10. stranger123

    PasteSpecial with adding

    Hi, I think I found that. We need to add the other workbook in the same excel application....... Thank you again for your help.
  11. stranger123

    PasteSpecial with adding

    PHV, Thank you. I can do it within the same workbook manually, but don't know how to do it for the outside workbook!
  12. stranger123

    PasteSpecial with adding

    Sorry, I forgot to say! I was able to paste the values from the whole usedrange of the outside workbook, but without adding the values onte the sells. Say, I got cells(1,1)=1 in sheet1 in current workbook, and got cells(1,1)=2 in sheet1 in an outside workbook. I then copied the valu of 2 from...
  13. stranger123

    PasteSpecial with adding

    Hi, In Excel VBA, I failure to paste whole usedrange from a sheet in another workbook onto the sheet in current workbook with adding operation. ......Copy aRange.PasteSpecial Paste:=xlPasteValues, operation:=xlPasteSpecialOperationAdd That was working if I copy from the same workbook. Can...
  14. stranger123

    &quot;contenteditable&quot;

    OK, thank you again for your help!
  15. stranger123

    &quot;contenteditable&quot;

    Thank you very much! One thing not very clear: did your code covering the cases of FireFox or any other non-IE browser?
  16. stranger123

    &quot;contenteditable&quot;

    Hi, I want to use <DIV contenteditable> for a editable erea for IE65.5-IE6. For the browsers not support "contenteditable", I want to use <textarea>. How can I detect when "contenteditable" will be supported and show <DIV>, or not supported and show <TextArea>? Thank you in advance.
  17. stranger123

    &lt;textarea contenteditable&gt;?

    BillyRayPreachersSon, Thank you. I will ask this in Javascript.
  18. stranger123

    &lt;textarea style=&quot;width:100%;&quot;&gt; and textarea {width:100%;} in sty

    Sorry, I found mistake. No not answer this question, sorry.
  19. stranger123

    &lt;textarea style=&quot;width:100%;&quot;&gt; and textarea {width:100%;} in sty

    Hi, This is realy strange: I tried put textarea {width:100%;} in my style.css but it was not worked for <textarea>...</textarea> in my page. I then changed <textarea>...</textarea> to <textarea style="width:100%;">...</textarea> and this works.
  20. stranger123

    &lt;textarea contenteditable&gt;?

    Do you think we can let <DIV contenteditable> change to <textarea> when the browsew not regnize "contenteditable" in <DIV>?

Part and Inventory Search

Back
Top