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 Mike Lewis 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: *

  1. howzatUK

    Ading shapes automatically on page creation

    Hi tanks for the post Ok so the following code creates a rectangle, have you any ideas how I could name it? So that when i look at the properties in visio it is always called title? Also do you have any ideas how I can set the properties so it doesnt have a border and contains some dummy text...
  2. howzatUK

    Indexing in Visio

    yes thank you for getting me this far, i have transfered the thread over to the VBA forum
  3. 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
  4. howzatUK

    Indexing in Visio

    ok my above problem is solved, but now im feeling adventorous! Can you tell me how i can automatically create a text box called title on every new page created?
  5. howzatUK

    Indexing in Visio

    Thats great I now have it listing all the page numbers. However on each sheet i have a shape called title which contains some text, i would also like that printed next to the page numbers. I have tried this below, but it compiles errors. any ideas? ThisDocument.Pages(3).Shapes("square").Text =...
  6. howzatUK

    Indexing in Visio

    Cheers. Ok i see now. So how would i get it to print to a specific shape/object?
  7. howzatUK

    Indexing in Visio

    Hi thanks for that. It feels like what I want to do may be possible then. What shall I do with the code? where do I place it? a greatfull novice
  8. howzatUK

    Indexing in Visio

    yes by my document is huge and creating an index is a very time consuming task, I was wondering If anyone on this site knew how I could create an index automatically?
  9. 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
  10. 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...
  11. 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
  12. 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...
  13. howzatUK

    Drop IF EXISTS

    thank you. Ofcourse!!!! the problem was number 3) := Thanks
  14. 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...
  15. howzatUK

    NVL function

    Thankyou, obviously when i said i tried everything, i hadnt tried that combination. Thanks so much
  16. 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...
  17. 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...
  18. howzatUK

    Error when connecting to mysql.exe

    thank you i have now been able to connect to mySql. Worked a treat!
  19. 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...
  20. howzatUK

    understanding the BDE and process

    Thank you for your help. So BDE sits between the delphi application and the databse and passes requests and data between the two? I thought this was the job of SQL?

Part and Inventory Search

Back
Top