Results 1 to 10 of 10

Thread: Can Delphi work woth BV
      
   

  1. #1
    Rob (SA)'s Avatar
    Rob (SA) is offline Lieutenant Colonel
    Join Date
    Nov 2006
    Location
    Centurion, South Africa
    Posts
    580

    Question Can Delphi work woth BV

    Hi folks ,

    In not knowing much about programing I have found software that could solve many of my problems.

    DELPHI

    1.Can one use this programing in Bluevoda?
    2.Can one get this software free and not on trail downloads?

    Any good links relating to this software would help enormously

  2. #2
    Karen Mac's Avatar
    Karen Mac is offline General
    Join Date
    Apr 2006
    Location
    X marks the spot
    Posts
    8,353

    Default Re: Can Delphi work woth BV

    If its the Delphi im thinking NO its not free.. you could use it with blue voda however, its basically a script editor for connecting to databases and customizing the out put...its a BUILDER itself.. you would have to copy and past all its code to into html.. and probably do some editing..but i suppose you could make it work to some extent, but .. not as its intended to.

    Karen

    VodaHost

    Your Website People!
    1-302-283-3777 North America / International
    07031847328 / United Kingdom

    ------------------------

    Top 3 Best Sellers

    Web Hosting - Unlimited disk space & bandwidth.

    Reseller Hosting - Start your own web hosting business.

    Search Engine & Directory Submission - 300 directories + (Google,Yahoo,Bing)



  3. #3
    Rob (SA)'s Avatar
    Rob (SA) is offline Lieutenant Colonel
    Join Date
    Nov 2006
    Location
    Centurion, South Africa
    Posts
    580

    Thumbs up Re: Can Delphi work with BV

    Hi Karin,

    Seems like youre the only one awake - smile.

    Thanks for the reply.

    I want to write a program that will work looking similar to the microsoft popups that can be activated within BV.

    Delphi allows me to build popups but does require extensive knowledge.

    Maybe there is a quiker easier way? HELP

  4. #4
    Karen Mac's Avatar
    Karen Mac is offline General
    Join Date
    Apr 2006
    Location
    X marks the spot
    Posts
    8,353

    Default Re: Can Delphi work woth BV

    You can make popups in bv.. just make a link and change it to open in a pop up and make whatever page you want appear in that pop up.

    Karen

    VodaHost

    Your Website People!
    1-302-283-3777 North America / International
    07031847328 / United Kingdom

    ------------------------

    Top 3 Best Sellers

    Web Hosting - Unlimited disk space & bandwidth.

    Reseller Hosting - Start your own web hosting business.

    Search Engine & Directory Submission - 300 directories + (Google,Yahoo,Bing)



  5. #5
    Rob (SA)'s Avatar
    Rob (SA) is offline Lieutenant Colonel
    Join Date
    Nov 2006
    Location
    Centurion, South Africa
    Posts
    580

    Thumbs up Re: Can Delphi work woth BV

    Hi Karin,

    Thats perfect as you say and a good idea.

    It will howver then only work with BV and while I am logged onto the net.

    I would like it to be stand alone - meaning run on my local/ or a local computer and if required then take dat from that program to the database.

    A scoring system for golfers.

  6. #6
    Karen Mac's Avatar
    Karen Mac is offline General
    Join Date
    Apr 2006
    Location
    X marks the spot
    Posts
    8,353

    Default Re: Can Delphi work woth BV

    Ok.. on my second cup of coffee here. I dont even want to think about the convulusions that occur here...not to be rude but wtf do you want a pop up on your computer that can connect to your database? And if you are trying to create this so OTHERS can connect to your database.. you are really opening a can of worms.

    Nevermind I dont want to know...lol carry on!

    Karen

    VodaHost

    Your Website People!
    1-302-283-3777 North America / International
    07031847328 / United Kingdom

    ------------------------

    Top 3 Best Sellers

    Web Hosting - Unlimited disk space & bandwidth.

    Reseller Hosting - Start your own web hosting business.

    Search Engine & Directory Submission - 300 directories + (Google,Yahoo,Bing)



  7. #7
    Rob (SA)'s Avatar
    Rob (SA) is offline Lieutenant Colonel
    Join Date
    Nov 2006
    Location
    Centurion, South Africa
    Posts
    580

    Thumbs up Re: Can Delphi work woth BV

    Hi Karin,

    I want to make a program available on the web that can be used at different venues - under a password that is specific to each event.

    the scores and mebership details will be stored on my database.

    I know you said you didnt want to know - apologies.

    Hence my original thought to develop it in Delphi and thus connect it to BV and my Database.

    I make thjings so complicated - there must be an alternative

  8. #8
    Karen Mac's Avatar
    Karen Mac is offline General
    Join Date
    Apr 2006
    Location
    X marks the spot
    Posts
    8,353

    Default Re: Can Delphi work woth BV

    Well.. I know how to create a switchboard in Access that allows users on a network to update a database.. im sure the same can be affected in php scripting and mysql .. however.. Naval or Watdaflip would have to instruct you there..cuz.. i know just enough php to get me in trouble most of the time. Basically you need a simple form to update the database fields and a script that writes to the database from this form.. then you need this script to dynamically generate an updated page to your website.

    Naval or watdaflip can fix this up for you.. but not for free... cheaper im sure than buying the whole program

    Contact one of them.

    Karen

    VodaHost

    Your Website People!
    1-302-283-3777 North America / International
    07031847328 / United Kingdom

    ------------------------

    Top 3 Best Sellers

    Web Hosting - Unlimited disk space & bandwidth.

    Reseller Hosting - Start your own web hosting business.

    Search Engine & Directory Submission - 300 directories + (Google,Yahoo,Bing)



  9. #9
    Rob (SA)'s Avatar
    Rob (SA) is offline Lieutenant Colonel
    Join Date
    Nov 2006
    Location
    Centurion, South Africa
    Posts
    580

    Thumbs up Re: Can Delphi work woth BV

    Hi Karin,

    Persistance pays off

    As you know something about php.

    I have 5 files that need to be ammended and yes one is a register.php

    The first file has :

    <?php
    session_start();

    $dbhost = "localhost"; // this will ususally be 'localhost', but can sometimes differ
    $dbname = "users"; // the name of the database that you are going to use for this project
    $dbuser = "root"; // the username that you created, or were given, to access your database
    $dbpass = "7trky17u"; // the password that you created, or were given, to access your database

    mysql_connect($dbhost, $dbuser, $dbpass) or die("MySQL Error: " . mysql_error());
    mysql_select_db($dbname) or die("MySQL Error: " . mysql_error());
    ?>

    Whilst it is all pretty self explanitory It requires help from people like you to me - Please

    What do i change

  10. #10
    Karen Mac's Avatar
    Karen Mac is offline General
    Join Date
    Apr 2006
    Location
    X marks the spot
    Posts
    8,353

    Default Re: Can Delphi work woth BV

    After you have created your database as i explained in the first post.. and made your user name and password.. you change the

    dbname=database you created accountname_database
    dbuser=accountname_user
    dbpass=password you created for that user

    Just like it says right there..

    you are just reading TOO much into it.

    Karen

    VodaHost

    Your Website People!
    1-302-283-3777 North America / International
    07031847328 / United Kingdom

    ------------------------

    Top 3 Best Sellers

    Web Hosting - Unlimited disk space & bandwidth.

    Reseller Hosting - Start your own web hosting business.

    Search Engine & Directory Submission - 300 directories + (Google,Yahoo,Bing)



Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

     

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  

1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49