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 dencom 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
  • Content: Threads
  • Order by date
  1. 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.
  2. 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.
  3. 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...
  4. 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*...
  5. 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...
  6. 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.
  7. 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.
  8. stranger123

    &lt;textarea contenteditable&gt;?

    Hi, I want <textarea contenteditable>Something</textarea> but it wasn't correct. I know we can do <DIV contenteditable>, but don't know what will happen if the browser not support "contenteditable". Any idea?
  9. stranger123

    The handle of the previous instance

    Hi, This seems easy but.... How to find the handle of the previous instance? Thank you in advance.
  10. stranger123

    There is no &quot;Encoding&quot; under &quot;View&quot; menu in my Outlook

    Hi, Using Microsoft Outlook, I cannot find the "Encoding" under "View" menu!! Do I need better glasses or I need to re-install Outlook?
  11. stranger123

    Why Mouse_Move returns mouse click event?

    Hi, I believe you all know how to put the application to the system tray (use Shell_NotifyIconA). What I want to ask you is why we can use the X coordinate in the Mouse_Move event to determin double click? Thank you in advance.
  12. stranger123

    case insensitive indexOf ?

    Hi, Want to test "abc" in s or not with case insensitive? s.indexOf("abc")==-1 is case sensitive.
  13. stranger123

    limit the size of an image

    Hi, <img src="www.....gif"> How to limit the width and height of the image? I don't mind to cut it or put it in a box with scroll bars, but I don't want to use <img src="www.....gif" width="..."> Any suggestion?
  14. stranger123

    MS Outlook error for an email account

    Hi, In MS Outlook, when try to receive mails, I got error "The TCP/IP connection was unexpectedly terminated by the server......Error Number:0x800ccc0f)." This only happens for one email account and only happens in resent week. No error for the rest email accounts. Any idea? Thank you in advance.
  15. stranger123

    What we need for executing &lt;script type=&quot;text/javascript&quot; src...

    Hi, Many javascripts not work after move to a new server, they all have the format <script type="text/javascript" src="xxxx.xxx"></script> 1. They were working fine in the old server. 2. They are working fine at the moment in my IIS. 3. If change to format <SCRIPT language='javascript'> <!--...
  16. stranger123

    How to know email sent or not when use CDONTS?

    Hi, I want to send emails by myEmail@account2.com when myEmail@account1.com is down something like: set objCDO = Server.CreateObject("CDONTS.NewMail") objCDO.From = "myEmail@account1.com" ...... objCDO.Send If not success Then 'How to know not success?? objCDO.From = "myEmail@account2.com"...
  17. stranger123

    draw an icon with a circle

    Hi, Please point me where I should go for help if I am in a wrong place for this question! I tried to draw an icon with a circle and found the "circle" was not so smooth. I just cannot understand how the people can make such smooth circle in the same size icon as mine. Any idea?
  18. stranger123

    Sting function for API

    Hi, When pass a string between VB and API, what is the difference by use String(255, chr(32)) and String(255, chr(0))? Thank you in advance.
  19. stranger123

    how to use an abstract class?

    Hi, Can you explain how to use an abstract class? I want to use Calendar to find weekday but we cannot use Calendar calendar = new Calendar(06,04,22)...... Thank you in advance.
  20. stranger123

    Encoded file with extention .inc or .asp

    Hi, Using "screnc.exe /xl ..." I encoded a few line code in file dbConnection.inc in my site. Have found a user is trying to guess my file names for weeks, I am thinking change the file name dbConnection.inc to dbConnection.asp hoping it cannot be seen by the browser. However, I found it will...

Part and Inventory Search

Back
Top