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

    visual studio 2005 .net and mysql

    Hi Everyone, Does anyone know an easy way to get a c++ script to use a mysql db on windows using vs 2005. Have a mysql db installed and working just cant find much info online about c++ and mysql. what libs to use etc. Cheers Everyone.
  2. livestrong

    enum inheritance

    Hi Everyone, Im a newbie to c++ and im trying to inherit a enum from class a to class b Please see below code exerpt. #include <iostream> #include <cstring> using namespace std; //class piece class Piece { int rank; //private char* row; public: //constructor for piece enum colour...
  3. livestrong

    location header target

    Hi Guys, I need my page to relocate to my target frame below is the incorrect code im using! header(Location: ' . $mypage . ' TARGET: mainFrame'); Any ideas It works when i take the "traget" piece out header(Location: ' . $mypage); Any help would be great with this one.
  4. livestrong

    connect from unix mysql server to ms access server

    Hi Everyone, Im wondering is it possible to connect through my mysql db (running on fedora core 4) and access the ms access tables on the ms access server? I have a connection setup the other way around using an odbc bridge, is it possible to do this the other way around enabling me to view /...
  5. livestrong

    running php from command line

    Hi Everyone, I'm trying to get php working from the command line / terminal. (os - fedora core 4) Just trying to run a simple test script to echo a variable. #!/usr/bin/php <?php $test = 'mytest'; echo $test; ?> when i try run the script ->php test.php Im getting the following error PHP...
  6. livestrong

    sedmail.mc masquerading options do not seem to be working

    HI, On my Lan i have an exchange machine which my onlinestore is using to send mail at the moment, however this is the company mail server thus i wish to configure my sendmail server to masquerade as the exchage machine. In my sendmail.mc file i have the following...
  7. livestrong

    ftp shell script problem

    Hi Everyone This is my 1st attempt at writing an automated ftp script and im kinda stuck atm #!/bin/sh ftp -n ftp.open-range.com quote user <myuser> quote pass <mypass> i understand that -n restrains ftp from running through the normal process of logging in thus allowing us to pass the...
  8. livestrong

    reload different frame while not reloading current frame

    Hi Everyone, I have an online store. It has two frames that we are concerned with here mainframe = contains table of results and quick add button topframe = contains basket info At the moment when a user hits the add button the mainframe reloads and i have a piece of javascript that...
  9. livestrong

    simplexml_load_file does not load url

    Hi Everyone for example realdata.xml and http://www.myxmldata.asp?pid=111 contain the same xml <?php $realdata = simplexml_load_file('realdata.xml'); foreach ($realdata->ITEM as $item) { printf("Quantity: %s\n", $item->QTY); } ?> will work fine and return the...
  10. livestrong

    reload two frames with href

    Hi Guys, I have a href in frame 1 for eamaple , this reloads frame 2, however i need the href to reload frame 1 also. Any ideas. Any help would be great.
  11. livestrong

    installing jedit on fedora core 4

    Hi Everyone, I have downloaded the jedit4.3pre8install.jar but i cannot execute this file, it is supposed to be a java insatller for any os, I have only recently installed this os, should i be able to use the jar command to exectute this file or do i need to install a jre?? Any help would be...
  12. livestrong

    mysql obdc bridge dropping

    Hi Everyone, I have setup an odbc bridge from an access db to a mysql db (version 4.1.11) running on fedora core 4. Everytime i restart the mysql server i have to recreate the user in mysql user table to enable the bridge to reconnect. Has anybody got any ideas as to why this is happening?
  13. livestrong

    odbc bridge keeps dropping

    Hi Everyone, I have setup an odbc bridge from an access db to a mysql db (version 4.1.11) running on fedora core 4. Everytime i restart the mysql server i have to recreate the user in mysql user table to enable the bridge to reconnect. Has anybody got any ideas as to why this is happening?

Part and Inventory Search

Back
Top