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 bkrike 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: McKaulick
  • Content: Threads
  • Order by date
  1. McKaulick

    Refreshing a div.

    Hello, I have a div on my page that looks like that: <div id="rightBg"> <? include("stat.php"); ?> </div> I want to refresh this DIV. This does not work: <!-- <javascript> --> function refreshDiv(myDiv) { //alert('I see this'); curDiv = document.getElementById(divID)...
  2. McKaulick

    Query working on MySql Querier not on PHP

    Can anyone tell me what in this query could create a PHP bug but good when I execute the query on SQL Yog. Thanks all for your help. $myQuery = "SELECT merchants.PK_MERCHANTS_UID AS bob,merchants.MERCHANTS_NAME as bob1,discounts.PK_DISCOUNTS_UID as bob2,discounts.DISCOUNTS_DESC as bob3 FROM...
  3. McKaulick

    Adding one year to a date

    Hello everyone, I want to add one year to a date with this format: "2007-12-13" so I can say if today's date is smaller than the one on the database + 1 year. Can someone has a way to add it. When I print $todayDate+1; the result = just the year "2008" but not "2008-12-13". PHP has lots of...
  4. McKaulick

    Installing curl on windows

    Hello everyone, I get this error when I want to run this script: Fatal error: Call to undefined function: curl_version() in c:\program files\easyphp1-8\www\boulangerie\test.php on line 3 Here's the script: <? //include("PostGateway.function"); echo curl_version()...
  5. McKaulick

    Finding quotes in a string

    Hello, I have a string coming from the database, and I want to verify if the string has a double quotes (") at the first position of the string and the last position of the string. I tried many things, but nothing works like this! $sv['SEARCH_TEXT'] is a field from the database and has doubles...
  6. McKaulick

    Problem with join query - One step futher.

    Problem doind a query - 3 tables. Hello everyone, first of all, thanks to r937 for answering my last question. Here's the deal, I have table call ContactSkill with 2 fields 1)Contact_key 2)Skill_Key And another one call Search_Skill with 2 fields 1) Skill_Key 2) Search_Key I want to...
  7. McKaulick

    Problem doind a query - Might be a bad join

    Problem doind a query: Here's the deal, I have table call ContactSkill with 2 fields 1)Contact_key 2)Skill_Key And another one call Search_Skill with 2 fields 1) Skill_Key 2) Search_Key I want to retrive all contact_key that have all the skills selected from a given search_key. Right know...
  8. McKaulick

    ListView in a single column

    Hello, I have a ListView that display the content of a folder. In this folder, I have 6 files. The files are beign displayed 3 per lines and I have 2 lines, I would like to have an Item per line and 6 lines (One column). I tried many things, but for some reason, it does not work. Here's the...
  9. McKaulick

    Problem with a SQL Query with VB 6

    When I executes this query, I get this error, and I really don't know why. And I can't test the query result on the query analyser of Sql Server tools. Can anybody could me help figure out what could be my problem. This error is showing when I try to open the connection Run-Time error...
  10. McKaulick

    Showing a Dsr file

    I want to show a DataReport, but I get an error when I load it. So basically, I have a form with a button, when I click on the button, I want to load the DataReport. Here's the code when I click the button: Private Sub cmdFaxLetter_Click() rptFaxLetter.Show End Sub So I got an error saying...
  11. McKaulick

    Display 4 per lines in a table!

    I want to display datas from a database in an html table. I have many records but I want to display them 4 by line, how can I achieve that? Here's the code that I have now that works but he display all of them on the same line. Thanks for helping :o) <table> <tr> <? $requeteProducts =...
  12. McKaulick

    Attachments +ProgressBar

    Hi all, I have a simple WindowsForm app that send images selected on the disk by email! I want to have a progress bar that increment as long as the app is sending the mail. How can I do that? ///// For info System.Web.Mail.SmtpMail.Send(mailMessage); Mckaulick
  13. McKaulick

    Image's weight!

    Hi all, I have a little Windows.Forms program that can browse through the disk to get images and then gives me the width and the height of the image... But I want to have as well the weight of the image, the Ko, the size. How can I have this! There's is properties for width and height but not...
  14. McKaulick

    Inherited Form (Visual Studio.NET)

    I have an Inerited Form that of course inherit from another form. The form is a email message with the classic from, Cc, subject with there textboxes and a textarea for the body of the mail! My reply form inherit from this. The problem is, I can't put the ReadOnly property to true on all the...
  15. McKaulick

    Web Form +Dynamic Button +C#

    Hi all, here's my problem, I have a dynamic form that contains a profile, all the textboxes in the form are enabled = false. When I click on a dynamic hyperlink I pass a value that puts all the textboxes enabled = true and I create a Button, I want to call a function with this button that will...
  16. McKaulick

    C# +webform +USEMAP

    Hi all, I have an image that I generate dynamically. The thing is, I want to use this image as a image map! So I can click many parts of this image to load a javascript function. The thing is, how can I tell the image to use the right map? Can I put the &quot;<img map>&quot; on the html part of...
  17. McKaulick

    Image wont change... !!! (asp and javascript)

    Ok, I have a asp function that occur everytime a page is loading! In this function I change a Session with a link corresponding to the page where the user is! And then I want to write this adress on the top frame so the user has some kind of navigator! But I need each time to refresh the top...
  18. McKaulick

    Retreiving values!

    Hi all! I dynammicaly add radiobutton on a webform! When I submit the form, I want to retreive all the value, but I can't get them! Is there a way to do that? Because I can't acess the controls after the submit! I hope I'ts clear... Mckaulick

Part and Inventory Search

Back
Top