Search Result

Collapse
9 results in 0.0038 seconds.
Keywords
Members
Tags
check
  •  

  • PHP - Verify username and password of remote website

    I am not a programmer, i want to check the username and password of remote website using php curl script. I have to code but it doesnt work. Can any one make changes to this script and make it workable?

    Here is the script
    Code:
    $username="yumiyao0926"; 
    $password="yumiyao0926"; 
    $url="http://www.hotfile.com/login.php"; 
    $cookie="cookie.txt";
    ...
    See more | Go to post

  • Why does the application work only on double click?

    I have a method that works, but when I click a link the first time the new form opens as it should. I then have in the method to check to see if the new form is open by using a bool variable. This works properly, but requires that I click the button twice before it will perform. What is causing this? Any Ideas or Suggestions? I have attached my code below for the Method.
    Code:
    private void lblClose_LinkClicked(object sender, LinkLabelLinkClickedEventArgs
    ...
    See more | Go to post

  • gwidaz
    started a topic Email confirmation during registration
    in PHP

    Email confirmation during registration

    Hi,im trying to make registration form..And i want that users can use just couple of emails to register..I will try to explain what i mean:

    Im using code to check mail:

    function checkEmail($str )
    {
    return preg_match("/^[\.A-z0-9_\-\+]+[@][gmail_\-]+([.][com_\-]+)+[A-z]{1,4}$/", $str);
    }

    This works fine if u trying to register for example with sample@gmail.co m..But confusing...
    See more | Go to post

  • How to check a string to see all the characters are number or space?

    this is my code and problem is with the space between months and years::

    for(;;){
    char TmpAge[10];
    cout<<"What age is the pet? (yy mm ) => ";
    cin.getline(Tmp Age,MaxChars);
    if(strlen(TmpAg e)==0){PetRecs[NumRecs].Age.Mths = PetRecs[NumRecs].Age.Yrs =-1; break;}
    else if(is_number(Tm pAge)==false){
    cout<<"Invalid input1!\n"<<end l;
    ...
    See more | Go to post
    Last edited by behzadkhalili; Mar 27 '11, 09:02 AM. Reason: spelling problem

  • C# validate contents of a file against another file

    Hello All.

    I have 2 Files.
    File 1 - is a new file conataining some data and
    File 2 is a predefined file in the system

    Now when the user uploads his/her file for validation, I need to check each and every field in the uploaded file with file already present in the system.

    Can anyone guide on how to proceed on this!
    See more | Go to post

  • How to check for existence of a control label (without error handler)?

    Hello,

    Right now I'm having some performance issues (forms taking 2 or so seconds to check) when trying to check for all control labels in a loop. Currently the code I have is this:
    Code:
    Function hasLabel(ByRef ctl As Control) As Boolean
        Dim tempstr As String
        
    On Error GoTo err_handler
        tempstr = ctl.Controls(0).Name
        hasLabel = True
        Exit Function
    err_handler:
    ...
    See more | Go to post

  • Check if link in a table record is deleted (Error 3167)

    Hello,

    I have a function that goes through each field in a form and checks if it was changed between itself and the existing recordset. It is used to track changes done in any record when the logged in user (Forms!frmLogin !cboUname.Colum n(4)) is logged in.

    The problem I have is when my control loop checks a field that is linked to a table with a deleted record, the function crashes. This situation arises when two forms...
    See more | Go to post

  • accessbeginerry
    started a topic Check field in subform

    Check field in subform

    I have a form with subforms on it (subforms are designed on tabcontrol and each has separate page)

    After user enter information on form and tries to hit "Save" button i would like the access first to check if value in a subform field is not empty.

    It is tblTakeOrder form. When user fills information on form with order id, client name and required date and try to save it - access needs to check SubForm "Order...
    See more | Go to post
    Last edited by Niheel; Jun 2 '10, 11:11 AM. Reason: additional information, cleaned up the question

  • How to check Internal and External duplicates?

    Recently, I have a requirement to develop a vb.net application wherein the input excel sheet data which has an average of 5000 records should be checked for Internal duplicates (duplicates within the same sheet) and external duplicates (duplicates which exist outside this sheet). I have gone through lot of logics..some of which are ...

    - Common and currently testing out..

    - First insert the excel sheet data into DB..then...
    See more | Go to post
    Last edited by tlhintoq; Aug 24 '09, 06:16 PM. Reason: [CODE] ...your code goes here... [/CODE] tags added
Working...