User Profile

Collapse

Profile Sidebar

Collapse
msalman
msalman
Last Activity: Mar 12 '08, 09:17 PM
Joined: Jun 27 '07
Location:
  •  
  • Time
  • Show
  • Source
Clear All
new posts

  • Problems with installing windows service using setup project

    Hey

    I created a windows service and added it to a setup project. The setup project should install the service and run it but for some reasons it doesn't install the service and gives following error: "Service cannot be started. The service process could not connect to the service controller"

    I get this error after it runs the service in the background after a while but service is never installed. I have checked...
    See more | Go to post

  • msalman
    replied to Having problem with Update from query
    Please see the following screen-shot



    Please see the difference yourself






    I first count number of records in the table for each bucket and then use the value of @@ROWCOUNT to determine the number of failed records....
    See more | Go to post

    Leave a comment:


  • msalman
    started a topic Having problem with Update from query

    Having problem with Update from query

    Hey guys,

    I'm trying to update some columns in a table using another table's data but there seems to be some problem due to join among the two tables. Here is my query
    Code:
    Update DMM_SalesReporting..sapis_test
    		SET 	Claims_Qty = ISNULL(Claims_Qty, 0) 
    			     + CONVERT(varchar(30), b.BaseUOMQuantity),
    			Claims_Dollars = ISNULL(Claims_Dollars, 0) 
    				 + b.BaseUOMAmount,
    			Update_DateTime = getdate(),
    ...
    See more | Go to post

  • msalman
    replied to DOM question: value of childnode
    thanks for the help, it worked...
    See more | Go to post

    Leave a comment:


  • msalman
    replied to DOM question: value of childnode
    hmm, that's interesting. could you please explain why? Is it because that the inital value inside div is a space character? How can i change the background color of a specific child node because the following code of line doesn't work
    Code:
    ochildNodes[0].style.backgroundColor="#0000FF"
    thank you...
    See more | Go to post

    Leave a comment:


  • msalman
    started a topic DOM question: value of childnode

    DOM question: value of childnode

    hey all,

    i'm very new to DOM and javascripting. I found a tutorial somewhere and i was playing around with it but it got stuck on getting the value of a node that i just append at the end. It returns me an empty string when i try to get the node value. I've looked around but no luck making my code work. Any help will be appreciated, thanking in advance! Please see the code below

    Code:
    <html>
    <head><title>JavaScript</title>
    ...
    See more | Go to post
No activity results to display
Show More
Working...