Search:

Type: Posts; User: hafizfarooq

Page 1 of 13 1 2 3 4

Search: Search took 0.26 seconds.

  1. Replies
    4
    Views
    3,581

    CSS is not applying on all Elements

    Hi,

    I have linked my CSS file with HTML file, it is working properly, but not applying few IDs on elements. If I apply INLINE CSS it works.

    Farooq
  2. Re: Adding Icon / Image on Top Center of LI tag

    thanks for the reply, please look at the attached snap to clear the "top-center".
    What do i do with http://http://codepen.io/anon/pen/iykGc ???

    116263
  3. Adding Icon / Image on Top Center of LI tag

    Hi,
    I have developed the menu using UL and LI tags. However, i want to place an icon or image on the top center position. please check the following code.



    <!doctype html>
    <html>
    <head>...
  4. Re: Issue in creating Drop Down Menu

    Thanks,
    By the way i have done it with css. Code is s under


    <!doctype html>
    <html>
    <head>
    <meta charset="utf-8">
    <title>Untitled Document</title>
    <style>
  5. Re: Issue in creating Drop Down Menu

    do you have some sample code for a perfect javascript menu
  6. Re: Issue in creating Drop Down Menu

    there is a solution of -moz-linear for Iexplorer, but what is the solution of my issue ?
  7. [RESOLVED] Issue in creating Drop Down Menu

    Hi,

    I am facing an issue in creating a drop down menu. Completed few steps but not got the desired result. Snaps and code is attached for reference

    MENU BEFORE FOCUS
    115935

    MENU ON HOVER...
  8. Re: Unable to check the Checkboxes with Database Values

    DONE it by putting the database values to array, and search the arry while CHECK the checkbox. Check the below code with green color


    <?php
    session_start();
    $id=$_GET['uid'];
    ...
  9. [RESOLVED] Unable to check the Checkboxes with Database Values

    Hi,

    I am unable to check the checkboxes using database values. mu database table is as under

    Name: useraccess
    uid - int
    allowaccess - varchar
    url - varchar

    Values in the table
  10. Replies
    1
    Views
    3,462

    Re: ISSET with anchor tag

    I got it ...



    <td width ='10px' align='center'>"."<a href='assignrole.php?uid=".$row[0]."' id='lnkrole' name='lnkrole'>
    <img src='role.png' width='24' height='24' alt='Assign Access'...
  11. Replies
    1
    Views
    3,462

    [RESOLVED] ISSET with anchor tag

    hi,

    How to use the ISSET with anchor tag, or is there any other way to get the value of anchor tag. My code is as under, it is for to delete the data. I want that when user click on it, the data...
  12. Re: Getting PHP result on the same Page

    Your showed way is also correct.. just need little modification on first row

    if (isset($_POST) will change to if (isset($_POST['btnsubmit']))

    Thanks for support.

    The complete Working code is...
  13. Re: Getting PHP result on the same Page

    DONE with the following code



    <?php
    if (isset($_POST["btnsubmit"])) {
    CheckUser();
    }

    function CheckUser() {
  14. Re: Getting PHP result on the same Page

    Thanks for the reply and a good guideline.
    I done as you mentioned but it is giving 2 errors. first one is after loading the page, snap is attached. Second when i give the proper username and...
  15. [RESOLVED] Getting PHP result on the same Page

    Hi,,
    I have created a User Login form "login.php" and wants to get the reply on the same page weather the provided users is valid or invalid or both user name and password fields are blank etc. If...
  16. Javascript function which focus the defined control

    hi,

    I am new to javascript, i wrote a function to focus a text box named 'txtuser', this function is typically work for txtuser only, i want to make a function in which i define the name of a...
  17. Re: SQL Query not showing the first record only

    OK.. thanks
  18. Re: SQL Query not showing the first record only

    thanks,
    its working now, but what was the logic behind this ?
  19. [RESOLVED] SQL Query not showing the first record only

    hi,
    i wrote the following code, it is showing all records except the first record,



    <table>
    <tr>
    <th>Username</th>
    <th>Full...
  20. Re: Unable to call PHP function in javascript

    Why it is not working


    echo "<script type = \"javascript\">
    var x = document.forms['frmlogin']['txtuser'].value;
    if (x ==null || x==\"\") {
    ...
  21. Re: Unable to call PHP function in javascript

    please send some example code....

    SecondlyI want to call javascript function first, then after getting the return = true, it call the PHP function.... is it possible ?
  22. Re: Unable to call PHP function in javascript

    Thanks for the reply
    so, what should i do ? I actually want to check the username and if found it will go to other page else give error on same page.
  23. Unable to call PHP function in javascript

    Hi,
    I am trying to call a PHP function "checklogin" using javascript
    my code is as below

    Javasctipt


    <script>
    function validateform() {
    var x =...
  24. Replies
    4
    Views
    1,329

    Re: Error When Redirecting a Page

    On line 18, there was an If Statement, i deleted it.

    There were few other HTML commands like <br> , <hr> etc before HEADER, delete all. Now its working fine
  25. Replies
    4
    Views
    1,329

    Re: Error When Redirecting a Page

    Thanks for the reply,
    I am using FireFox, issue is that if i create a new PHP file and write the same code for redirection, it works. It is just showing error within this project
  26. Replies
    4
    Views
    1,329

    [RESOLVED] Error When Redirecting a Page

    Hi,
    I am developing a login system. I want that if user provide correct info, the page redirects to welcome.php , but its giving an error "Warning: Cannot modify header information - headers already...
  27. Replies
    1
    Views
    583

    Whats wrong with this code

    Hi,
    I am very new in PHP and mySQL, I am unable to show the list of users in my database. Please check this code

    <?php

    $username=htmlspecialchars($_POST['txtUser']);
    ...
  28. Re: Runtime Error 429 - ActiveX Component Can't Create Object

    Project is working fine. But when i try to make Deployment Package using Package and Deployment Wizard, it gives the above error
  29. Runtime Error 429 - ActiveX Component Can't Create Object

    Hi,

    I am facing the "Unexpected Error number 429 has occured - ActiveX Component Can't Create Object" while using Package and Deployment Wizard in VB 6
    Please suggest what to do
  30. Re: Click a Website Button using VB 6

    I got a code from a site


    For I = 0 To Wb1.Document.Forms(0).length - 1

    If Wb1.Document.Forms(0)(I).Type = "submit" Then
    Wb1.Document.Forms(0)(I).Click
    Exit For...
  31. Re: Click a Website Button using VB 6

    Using google is only for example.
    Want to know how to click the web button using vb6
  32. [RESOLVED] Click a Website Button using VB 6

    Hi,

    I have a textbox named txtSrch, command button named cmdSrch and a Web Browser Control named wb1 navigated google.com on form load event.

    I want that when i put phrase in txtSrch and click...
  33. Replies
    6
    Views
    938

    Re: Make this Project in MDI

    Thanks Niya,
    Any other suggestions regarding "Changes the Look of MDI" ?
  34. Replies
    6
    Views
    938

    Re: Make this Project in MDI

    Here is the attachment. Please unzip both files in a single folder
  35. Replies
    6
    Views
    938

    Re: Make this Project in MDI

    I am unable to upload the project, it is more than 1Mb in .RAR format
  36. Replies
    6
    Views
    938

    Make this Project in MDI

    Hi,

    1 ) I have developed this attached project in SDI and want to make the same in MDI. How to do this ?

    2 ) Is there any way to open many forms like MDI Child in SDI

    Regards
  37. Replies
    11
    Views
    2,338

    Re: Using 3 or 4 State Custom Button in VB6

    Thanks for the update, its working fine with both ways. How can i find more buttons like these buttons (used in the project) ?
  38. Replies
    11
    Views
    2,338

    Re: Using 3 or 4 State Custom Button in VB6

    I m using XP. Where from i can get WIA 2.0 ?
  39. Replies
    11
    Views
    2,338

    Re: Using 3 or 4 State Custom Button in VB6

    I have tried Schmidt's demo, but its giving an error when run "ActiveX Component Can't create object" at line
    Public Function AddImage(Key As String, FileName As String, Optional ImgWidth As Long,...
  40. Replies
    11
    Views
    2,338

    Re: Using 3 or 4 State Custom Button in VB6

    Thanks for the reply,
    My basic question is to use the attached picture as button using Image Control. How it is possible to show the first part as NORMAL State, Second Part as MOUSE OVER State,...
Results 1 to 40 of 500
Page 1 of 13 1 2 3 4



Click Here to Expand Forum to Full Width