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: FurqanAhmed
  • Order by date
  1. FurqanAhmed

    Consuming ColdFusion web service

    if by wsdl you mean wsdl.exe then sure I can use it, but I'm interested in suing VS for this task. Did I understand you correctly ?
  2. FurqanAhmed

    Consuming ColdFusion web service

    Hi, can anyone tell me how to add a web reference to a ColdFusion web service in visual studio? I can do it using wsdl.exe but I want to add a web reference automatically. When I specify the web service url and press go. ColdFusion asks me for cfadmin password. After that it only shows the...
  3. FurqanAhmed

    Get Current Logined user name

    I have also tried: System.Security.Principal.WindowsIdentity.GetCurrent().Name; it also gives the same user name which is "SYSTEM". yes it is true that windows service run even when there's no one logged, how can we get the current logged user of the system, obviously if no one logged , it...
  4. FurqanAhmed

    Get Current Logined user name

    Hi All, i am retreaving user name from windows service by using the following two methods string usr = Environment.UserName; string usr = System.Windows.Forms.SystemInformation.UserName; the string "SYSTEM" is returned from both methods, but i want to get the name of the user who is currently...
  5. FurqanAhmed

    Exception On Calling System.Diagnostics.Process.GetProcesses()

    No Help found in above link regarding the exception Regards YEH GHAZI YEH TERAY PUR-ASRAR BANDAY
  6. FurqanAhmed

    Exception On Calling System.Diagnostics.Process.GetProcesses()

    No Group found with the name Performance Counters i have added the user in to following group: Performance Log Users Performance Monitor Users but still same exception is coming Regards YEH GHAZI YEH TERAY PUR-ASRAR BANDAY
  7. FurqanAhmed

    Exception On Calling System.Diagnostics.Process.GetProcesses()

    Hi All, following Exception is coming in some machine not all. Exception: "Process performance counter is disabled, so the requested operation cannot be performed" on calling the following funtion: System.Diagnostics.Process.GetProcesses(); can anyone know the root cause?? and what are their...
  8. FurqanAhmed

    Sorting DataGrid Asp.net

    Hi, How we can sort the DataGrid, if we bind it with IList (List of Object). Sorting can easily be done, if we bind it with DataTable but i want to know, how to sort with IList Best Regards YEH GHAZI YEH TERAY PUR-ASRAR BANDAY
  9. FurqanAhmed

    <CFCONTENT> donwload question

    Thanks for the hint Falconseye. The file name <cfheader> should be the file name and not the complete path. I just changed the <cfheader> to <cfheader name="Content-disposition" value="attachment;filename=#Url.Rep#"> Thanks a lot
  10. FurqanAhmed

    &lt;CFCONTENT&gt; donwload question

    I programmed a cfm page to allow users to download some text files. The code in this cfm page is --------------------------------------------------- <cfif IsDefined('Url.Rep') > <cfset fileName = "C:\Inetpub\wwwroot\Reports\#Url.Rep#" > <cfheader name="Content-disposition"...
  11. FurqanAhmed

    Hide Key

    Dear all, we use these shortcuts to view following things View.ObjectBrowser CTRL-ALT-J View.ClassView CTRL-SHIFT-C View.Toolbox CTRL-ALT-X View.SolutionExplorer CTRL-ALT-L i just want to know what whould be the key to hide them Thanks & Regards YEH GHAZI YEH TERAY PUR-ASRAR BANDAY
  12. FurqanAhmed

    Internal Server error while consuming web service using JavaScript

    Hi, I have a web service that is consumed from the client side i.e. using Java Script XmlHttpRequest object . It works fine on the local machine but doesn't work on remote machines. On remote machines, I'm getting 500 "Internal Server error". I suspect that I need to configure IIS to allow...
  13. FurqanAhmed

    Consuming Xml Web Service using XmlHttpRequest

    Hi, I have a web service that is consumed from the client side i.e. using Java Script XmlHttpRequest object . It works fine on the local machine but doesn't work on remote machines. On remote machines, I'm getting 500 "Internal Server error". I suspect that I need to configure IIS to allow...
  14. FurqanAhmed

    All Shortcuts of Using VSS.NET IDE

    Dear All.. Can anyone tell me from where we can see the all shortcuts of Using Visual Studio .Net IDE. Thanks, Best Regards YEH GHAZI YEH TERAY PUR-ASRAR BANDAY
  15. FurqanAhmed

    Book Mark Short Cut

    Dear All.. Can anyone tell me the shortcut of using bookmarks. Thanks, Best Regards YEH GHAZI YEH TERAY PUR-ASRAR BANDAY
  16. FurqanAhmed

    Ibatis Problem

    Dear All, Infact i am working on simple database application using Ibatis, i just want to run dynamic generated query through Ibatis and get the returned value. My Actual problem is, i want to develope a genric function that check the record in database which takes table name, column name and...
  17. FurqanAhmed

    Assembly Trust for Windows User Control hosted in IE

    Hi, I've developed a Dot Net Windows User Control. I'm hosting this control in Internet Explorer. When ever you host a .net Control (or an assembly) you need to give it permissions so that it can run smoothly. Uptil now I've been using Dot Net Framework Wizard (Control Panel -> Admin Tools ->...
  18. FurqanAhmed

    Problem with DIV

    Alright, here's the code. <table style="WIDTH: 704px; HEIGHT: 30px" runat="server"> <tr> <td><input onclick="showBooking();" type="button" value="Booking"></td> <TD><input onclick="showPax();" type="button" value="Passanger"></TD> <td style="WIDTH: 124px"><input...
  19. FurqanAhmed

    Receving org.xml.sax.SAXParseException: Content is not allowed in prol

    Thanks for the help guys. I changed the string requset = "xml=" + strRequestUrl; to string request = strRequestUrl; only removed the "xml=" part of the string. thanks
  20. FurqanAhmed

    Problem with DIV

    I have several DIV layers on my page and on each of these DIV layers is atleast one table. The problem is that, when I hide all Div's and make anyone of then visible, I can still see the borders on the table on the rest of the div's. Any idea on how to take care of this problem thanks

Part and Inventory Search

Back
Top