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

  • Users: whloo
  • Content: Threads
  • Order by date
  1. whloo

    Remove the program from Open with list

    Hi All, Normally if we right click -> open with, then choose a program(example "A"). After we selected it, we start the program. But if we right click -> open with on another item, program "A" appears in the Open with list. How do I remove the program "A" in the Open with program list? Anyone?
  2. whloo

    Ensure file A completely transffered in location LA before...

    Hi All, below is my situation: ---------- 1) Process A (client) will drop file A into location LA at a random time. 2) My process will pick up file A from location LA to location LB in a scheduled time frame. * I have no control over process A. Problem: ---------- How do i ensure when...
  3. whloo

    Postmaster@mycompany.com send emails to abc@mycompany.com

    Hi All, Currently I am facing a problem, hopefully someone could advise how to solve the issue. My postmaster@mycompany.com always try to send rubbish emails to example abc@mycompany.com or xyz@mycompany.com. I catch the emails using Symantec, that marks deletion for emails send from...
  4. whloo

    DataGridTableStyle: Object Reference not set to an instance of an obj

    public void test(DataGrid _dataGrid, string _mappingName) { DataGridTableStyle oldTS = _dataGrid.TableStyles[_mappingName]; ... } DataTable xDT = getDataFromDB(); ResultGrid.DataSource = xDT; test(ResultGrid, "Table"); Hi, the code above gave me some funny problem. I able to get all...
  5. whloo

    "The specified Domain either does not exist or could not be contacted"

    Dear All, Need some kind advise for the above mention error msg. I am running on Windows Server 2003. All my users have no problem logging on to the network. When i log on as administrator, I try to change the users in the Computer Management-> Local users and Groups -> Groups -> ANY GROUP. I...
  6. whloo

    Left Join strange error....

    Hi, I am trying to make a left join for a view(SENT_ITEM_TEMP) and a table(ihex) but it seems to always give me "Sql Command not properly ended" error. "select SENT_ITEM_TEMP.incnum,ihex.number3 from SENT_ITEM_TEMP left join ihex on SENT_ITEM_TEMP.incnum = ihex.incnum" anyone able to spot...
  7. whloo

    Unique Constraint for Sequence

    Hi, i am trying to use a single INSERT statement to insert multiple rows into a table. But seems like it always give me primary key violation. ==================================================== INSERT INTO InterfaceFile(ID,CIID,OutputFieldName) select...
  8. whloo

    Auto Close Browser

    Hi, i am trying to make my program auto close my browser which prompting the dialog box that ask for my confirmation. is there anyway to do it? thanks in advance!
  9. whloo

    SMTP help. Always put mails on queue folder and only send out after

    restart my pc. any configuration i done wrong? i am writing a program that send out email automatically. but dunno why it never send out immediately. Please help. Thanks!
  10. whloo

    Scheduler for aspx page.

    Hi... I intend to create a web site that will process some data every 10 mins. Is there any way i can schedule it in IIS? Or i need to get 3rd party software to do it? Thanks! Regards, weihann.
  11. whloo

    Move item script in Outlook problem.

    Hi, I am facing a very weird problem. Below is my code. My intention is to process and move all the mails in my inbox to another folder. My code work perfectly fine before i putting in my move item function. It able to process all the msg without fails in inbox until i put in the move...
  12. whloo

    Uploading of xml files that is between 3-5M.

    Hi all, I am trying to write a uploading program that will enable me to upload xml file with 3-5M size of file successfully with a progress bar. I have been trying to do it for weeks but still unsuccessfully :( Please help.... Thanks! Regards, weihann.
  13. whloo

    Duplicate Previous Project

    Hi, Currently i have a running project called LMS. It has been running for few months and suddenly i feel that i need to duplicate the LMS to LMS1 name. It is because i want to retain the previous LMS and deploy a new LMS1 with a bit of new changes. What is the fastest way to do that? I tried...
  14. whloo

    SQL Server DB Restore to Different DB Name

    Hi, I always do a full backup of my database named "LMS". Lets say now i want to have another database (new DB name is LMS1) that have exactly the same content as LMS. I tried to use "Restore database" option but it seems to give me this error: "You are attempting to overwrite an existing...
  15. whloo

    Configuration error

    Hi, i getting a very very weird error. I have a ready project that can work perfectly ok previously. then it suddenly give me the error as shown in below whenever i try to access it :( I tried many ways such as trying to see folder access right and so on.... but it still giving me the same...
  16. whloo

    Help on System.IO.TextWriter or HtmlTextWriter

    Hi, i am trying to insert a <HR> tag into my dynamically created UI. below is my code. It keep giving me some error. Please help me. Thanks! System.IO.TextWriter test1; HtmlTextWriter test = new HtmlTextWriter(test1); test.RenderBeginTag(HtmlTextWriterTag.Hr)...
  17. whloo

    Print Preview

    Hi, I have a .Net web application. Everytime, i will dynamically generate many pages of report on the fly based on user selection. I am trying to let users to have print preview for all those reports. Is there possible for me to do that using window preview component? Thanks! Regards, weihann.
  18. whloo

    File backup

    Hi, Currently i use window backup schedule to do file backup once in a few days with the default backup file name to ABC. Hence everytime, it will overwrite the previous file. Is there a way for me to auto append date time at the back of my default file name? Eg will be ABC_DD_MM_YYYY Thanks...
  19. whloo

    Database Backup

    Hi, Currently i schedule my SQL sever agent to do database backup once in a few days with the default backup file name to ABC. Hence everytime, it will overwrite the previous file. Is there a way for me to auto append date time at the back of my default file name? Eg will be ABC_DD_MM_YYYY...
  20. whloo

    Printing By Using Port

    Hi, I am trying to write a function that allow all of my user to print using my allocated printer for them. It is because some of the users are not allowed to print for some reason hence their local pc don't have any installed default printer at all. i was thinking is it possible if i put in...

Part and Inventory Search

Back
Top