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

    Ading shapes automatically on page creation

    Hi all I am working in Visio and need to add a textbox or square called title to each new page i create. Can anyone help? A greatful novice
  2. howzatUK

    Indexing in Visio

    Does anyone know how to create an automatic indexing page in visio, so that it will create a list of all the sheets in my document, including their name and number? a visio novice
  3. howzatUK

    Web Parsing/crawling with VB.NET

    I am trying to create a webcrawler type application in VB.NET which will initially just look through a URL i specify to see if a certain link or picture file is contained within the page. Can anyone please help me acheive this, So far from my very limited knowledge and pieceing together of...
  4. howzatUK

    WHERES MY PRIMARY KEY?????

    How can i find the name of a primary key in oracle? where can i find the name of the primary key and what fields of a tbale make up that primary key? Thanks a desperate novice
  5. howzatUK

    Wheres my table???

    I am trying to create a proc to delete a table if its exsists in the user_tables. The syntax of the following proc is accurate but the problem is that my tables tabel_name does not exists in the user_tables tables. (thats a lot of tables in one sentence). Can any one offer me any advice so i...
  6. howzatUK

    Drop IF EXISTS

    CREATE OR REPLACE PROCEDURE DeleteIfExists AS iexists Number; BEGIN select count(*) into iexists from user_tables where table_name = 'tmpFIXDCActns'; if iexists := 1 then execute immediate 'drop table tmpFIXDCActns'; end if; END; I was told that the in ORACLE you cannot use DROP IF...
  7. howzatUK

    NVL function

    Can anyone please tell me why the following procedure does not work? I have tried everything, and it just wont work, compilation messages in the past have stated that it requires an 'INTO' clause, but adding this makes no difference and only produces another compilation error. PLEASE...
  8. howzatUK

    Translate from SQL Server to Oracle

    declare @newKey integer select @newKey = coalesce(max(actionkey),0)+1 from tbale_name update tableName set NewActionKey=@newKey, @newKey=@newKey+1 update tablename set ActionKey = @newKey+2 go Can anyone help me translate this SQL server syntax into something that Oracle will understand. I am a...
  9. howzatUK

    Error when connecting to mysql.exe

    Im trying to set up MySql on an appache server on my laptop. However everytime i try to connect to mysql.exe within the bin directory i get the following error message Access denied for user 'ODBC'@'localhost' <using password:NO> i have obviously tried to enter a password and the same error...
  10. howzatUK

    understanding the BDE and process

    Hi can anyone help me understand what the BDE does? i know it has something to do with database connectivity but was wondering if anyone could explain it in a logical way i.e what conects to what including source code, sql, BDE and the actuall database? How does this process work in what...
  11. howzatUK

    mouse over colour change

    A really simple one for anyone who has a clue about flash, which is not me. I have a button which consists of only text. I want the colour of the text to change to white when the user mouse over it. Can anyone help

Part and Inventory Search

Back
Top