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

    Printing a nested-frame page

    Hi all. I have a 3-frame web site (left,top,main) and i insterted a "print" function in the top frame.The print function only prints the main frame, calling the following easy code: function PrintPage() { parent.main.focus(); parent.main.print(); } Everything works fine as long as...
  2. davideart

    Inserting an identity column in view

    Hi all..that's my problem and i really hope some of you can help me. I have to create a view selecting all fields from a table; plus, i'd like to insert an addictional column defined as an identity (or a random numeric value) so that i can create a sort of unique field for that view. To explain...
  3. davideart

    Writing File

    Hi everyone. I've developed a web site that uses the Integrated Windows Authentication as Authentication method. When I try to write a file on a LAN disk (on which the user certainly has proper writing grants) i receive the followin' error: [code] Error Type: Microsoft VBScript runtime...
  4. davideart

    Inserting macro in EVERY new report

    Hi everybody. I'd like that, everytime an user creates a new report based on a given universe, a certain VB Macro were automatically added to that report....is that possible? Every help is greatly appreciated Thanks in advance David
  5. davideart

    Stopping DB queries via BO

    Hi everybody. We have a BO system based on a ZABO architecture that access an IBM DB2 database. We would like that queries launched against the DB could be managed in order to avoid queries that last too long. What we look for is to re-create the behaviour of pressing the ESC key during query...
  6. davideart

    Format problem between Excel 97 and 2000

    Hi everybody We got an Access procedure that fills an Excel sheet (.xlt) with a recordset from an access table. The Excel sheet has particular formats for specific cells/columns. Everything goes well with Excel 97, whereas, using excel 2000, formats are completely lost. Here's the code we...
  7. davideart

    Recordset and stored procedure

    Hi everybody. I use to open MS SQL Tables via ADO (using the recordset object). I'm facin' this problem: I open the recordset using a stored procedure as object source: MyRec.Open "exec sp_spaceused",MyConn This SP returns two different sets of record...but my recorset object only...
  8. davideart

    Customizing setup

    Hi everybody I would like to install Business Objects (using a master installation on a server), but I don't want the setup wizard to install the links to the application under the start menu...i.e.: I don't want the "C:\Programmi\Business Objects\BusinessObjects 5.0\BUSOBJ.EXE" link...
  9. davideart

    Showing report via webi

    Hi, everybody. I'm a newbie to Webi, but quite expertised to ASP programming. I've installed webi on my web server and now I would like to know how to show BO reports (.rep) via asp. I know that I can use an AcitveX or an Applet Java, but I just cannot find any help or example on the BO web...
  10. davideart

    Retrieving the number of records in a table

    Hi everyone. Is there a way to find out how many records are contained in a specific DB2 table without using SELECT COUNT...FROM the table? For example, is there a SYS table which contain this (or a similar) information? I cannot use the SELECT COUNT...FROM because I show a list of DB2 table in...
  11. davideart

    designing wb sites

    Hi everybody, I have been using Visual Interdev from a quite a long time and I feel very good with it but i find difficulty in building a good, smart and nice web site diagram... Is it possible to activate a wizard that builds the diagram reading the links in the page code? (href...) Is there...
  12. davideart

    Error on executing DTS via SP

    Hy everybody I've one problem in executing DTS packages via Stored Procedure. I try executing the followin' in Query Analizer: EXEC master..xp_cmdshell 'dtsrun /S <servername> /U <username> /P <userpassword> /N <dtspackagename> /M <dtspackagepassword>' The previous script work properly on a...
  13. davideart

    Executing DTS via Stored Procedure: problem

    Hi everybody. I would like to execute DTS packages (stored in msdb database of a SQL Server 7) via SP and I was given some advice in this Forum. Unfortunetly I still find some problems: 1)I launch the followin' SP from Query Analizer (after having properly connected): exec master..xp_cmdshell...
  14. davideart

    Retrieving DTS Packages name

    Hy all. I have created a lot of SQL DTS packages (saved on server msdb) and I would like to know how I can retrieve their names using a VB application. That means: 1) are the DTS names saved in some DB table? or 2) can I retrieve them from a stored procedure? or 3) some other way? Any help...
  15. davideart

    Programming MsgBox Buttons

    Hy everybody Does anybody know if, VB 6.0, it's possible to change the captions of standard MsgBox buttons? I mean, I would like to change the captions from the standard &quot;OK/CANCEL&quot; or &quot;YES/NO&quot; to a custom string (e.g. &quot;PRINT/SHOW&quot;). Thank you in advance for your...
  16. davideart

    Programming MsgBox Buttons

    Hy everybody Does anybody know if, in MS Access 97, it's possible to change the captions of standard MsgBox buttons? I mean, I would like to change the captions from the standard &quot;OK/CANCEL&quot; or &quot;YES/NO&quot; to a custom string (e.g. &quot;PRINT/SHOW&quot;). Thank you in advance...
  17. davideart

    Some questions about SQL views

    Hy everyobody I'm not very used with SQL Enterprise Manager, and I've got some questions: 1) How can I include views in database diagrams? Enterprise manager seems to show only tables. 2)How can I create a foreign key in a table referencing a column in a view? (I can't reference the table the...
  18. davideart

    Which component\reference for a given VB control ?

    Hy everyone. How can I get to know which component or reference I have to use in my application to include a given control? For example, if I want to use the xxxyyyzzz control, what check I have to select in the Project->Components or in the Project->References dialog box? I use MSDN library...
  19. davideart

    MS ODBC driver for DB

    Hy, we are planning to develop an application (VB Client) that manages (mainly read/write) an IBM DB2 database running on MVS OS. I've read on the Microsoft web site that you can connect a client application to a DB2 database through the Microsoft ODBC driver for DB2 (Msdb2ole.dll). The...
  20. davideart

    Dictionary

    Hi everybody. I'm developing a VB system that requires an Italian dictionary (in an electronic format, of course). I mean: I just need a LIST of Italian words and not their meaning or translation. I just want to know if a certain word exsists in that language or not. I know that something like...

Part and Inventory Search

Back
Top