CodeGuru Home VC++ / MFC / C++ .NET / C# Visual Basic VB Forums Developer.com

Search:

Type: Posts; User: Waqas_Badar

Page 1 of 2 1 2

Search: Search took 0.03 seconds.

  1. Replies
    7
    Views
    4,234

    Re: invoke WCF method using PHP

    have u tried __soapCall function? I think it will resolve ur issue
  2. Replies
    2
    Views
    1,400

    Re: Javascript: Getting invalid Time Zone

    Ok i resolve the problem. It is showing me one hour difference because on my system "Automatically adjust clock for day light saving" is on.
  3. Replies
    2
    Views
    1,400

    Javascript: Getting invalid Time Zone

    I have found following piece of code for client time zone:


    alert((new Date().getTimezoneOffset()/60) * -1)


    It works fine for positive time zone. But when set negative time zone on system. I...
  4. Replies
    1
    Views
    733

    question about subnetmask

    is there any method in C# to which i pass ip address and subnetmask and it return true if given ip is in subnet mask?

    For example, i give ip 192.168.0.149 and subnetmask 192.168.0.0 to the funtion...
  5. Replies
    1
    Views
    909

    How to use SSL

    How to use SSL in desktop application?
    In fact, i am developing desktop application which download mails from gmail. But there POP3 require ssl. I want to know which class i should use for SSL? is...
  6. Replies
    10
    Views
    9,584

    Re: C# windows Service problems

    i have posted the code. See, one thread above. On run following error is return:

    "ERROR 1053: The service did not respond to the start or control request in timely fashion"


    And on uninstall,...
  7. Replies
    10
    Views
    9,584

    Re: C# windows Service problems

    I have written another simple window service. The code is as follows:


    namespace WindowsService3
    {
    public partial class Service1 : ServiceBase
    {
    public Service1()
    {
    ...
  8. Replies
    10
    Views
    9,584

    Re: C# windows Service problems

    i have put try cath in start method but nothing is written in event log.
    ANY OTHER CLUE TO RESOLVE THIS ISSUE?
  9. Replies
    10
    Views
    9,584

    C# windows Service problems

    I have written a window service in C#. On windows XP it runs fine. I checked it on my computer and some other computers in office. I am able to install it on production system. But when i try to run...
  10. Replies
    1
    Views
    650

    Receive data of Unkown Size

    I am using socket class for udp connection. I have to receive data from server but i do not know the size of data. In receive method we have to send byte array. Is there any way i can know how much...
  11. Re: Pass Javascript variable to hidden field and php form

    Have u try this:


    document.getElementById("subtotal").value = total;
  12. Replies
    3
    Views
    1,233

    Re: [JS] Write to text file

    I think it can not be done because java script run on client side. And this will have some security issues.
  13. Replies
    1
    Views
    5,434

    ListViewItem Transparent BackColor

    I am putting background image on ListView control. But items on list view are coming in white background. I set item background color to transparent but it still has white background. Any idea how to...
  14. Thread: Ipsec

    by Waqas_Badar
    Replies
    0
    Views
    672

    Ipsec

    Is there a way to use IPSEC through C#? I want to ban and allow some IP on server.
  15. Replies
    0
    Views
    2,590

    RCOn Library in C#

    Is there any library in C# for RCON?
  16. Replies
    2
    Views
    703

    Re: Strange Bug With Firefox, Php(mysql)

    If u r seeing PHP code on firefox then u have not configured php.ini file. If u r putting ur code of php in <? ?> tags then try it to replace with <?php ?>
  17. Replies
    3
    Views
    835

    Re: GROUP BY returns zero rows...

    can u explain ur query like ID is primary key? and ON WHICH COLUMN YOU WANT AVERAGE?
  18. Replies
    0
    Views
    1,333

    Pcket Filtering in C#

    My target is to allow only specific ips to connect my computer. I google it. Most of people are saying this work should be done in C not C#. I think we can import DLL in C# so it may be possible to...
  19. Replies
    4
    Views
    6,717

    Re: CascadeDropDown not working!

    As far as i know, ajax do not allow to call page from other domain. e.g. if my site is hosted on localhost and i try to call yahoo pages through ajax then it is not allowed. But if i give the path of...
  20. Re: How do I turn this form button info into just a link

    it think you can use submit function of form. Consider following code:



    <a href="javascript: document.forms['USERFAVOUR'].submit()">Submit</a>
  21. Replies
    5
    Views
    15,725

    Re: XMLHttpRequest not getting initialized?

    i think onreadystatechange takes a function with no argument. If you have to send argument then use this line of code:



    httpReq.onreadystatechange = function (){showAjaxData(httpReq, id)};
  22. Replies
    8
    Views
    998

    Re: From to Textbox

    I think to get value from select element first you to get its selected index and then from options array get its value. For example


    <select name="abc" id="abc" onchange="showSelectedValue()">
    ...
  23. Replies
    8
    Views
    8,258

    Re: TyneMCE : mandatory fields

    Do you receive this error on pressing button?
    Have you try alert tinyMCE? if you alert it should show an object. If you do not see it then see configuration of tinyMCE on their site.
    if you...
  24. Replies
    8
    Views
    8,258

    Re: TyneMCE : mandatory fields

    did u put file tiny_mce.js?

    if so then correct its path in head tag. I have written the code after testing.
  25. Replies
    8
    Views
    8,258

    Re: TyneMCE : mandatory fields

    OK see below code


    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml">
    <head>...
Results 1 to 25 of 49
Page 1 of 2 1 2





Click Here to Expand Forum to Full Width

Featured