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 SkipVought 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. robinmiller

    Connectivity Issues

    Hope someone can assist. I have an OLAP server residing on a majority Novell Netware network. I am using a tool called Proclarity, effectively a GUI for OLAP. In order to connect to the OLAP services on the 'box' the connecting PC needs to be part of the trusted domain that the OLAP server is...
  2. robinmiller

    Outlook2000

    thanks for the help. Yes contacts...
  3. robinmiller

    Outlook2000

    Exchange server. The issue has arisen because of a domain change, now assumes the user is a new user and has screwed up the mail settings.
  4. robinmiller

    Outlook2000

    Hope someone can assist. 1 Where does Outlook2000 store personal address information. 2 How do I re-import it . 3 Simmilar questions for Personal folders ? Help...please :)
  5. robinmiller

    SQL Stored Procedures

    Thanks. Much appreciated
  6. robinmiller

    SQL Stored Procedures

    I am attempting to return a record set from a stored procedure to a VB app. Question is : 1) What must I have in the stored procedure to return a recordset. 2) What must I have in VB to accept it ? Procedure is as follows CREATE PROCEDURE .sp_Order(@ID as int) AS SELECT...
  7. robinmiller

    Front end tools to access MS Analysis Server cubes

    Proclarity. We are about to use the same product set. DataWarehouse of Oracle 8. SQL2000 OLAP tools for the datamarts/cubes Win2k Server to run on. Also offers thin client access as well as full / rich client. Integrates with outlook,excel and others. It appears to beat all the other...
  8. robinmiller

    Help With Program Design!

    For a technical design document you should clearly specify all variables modules etc at design stage. If not specified already you will fall into the trap of adding bits and pieces as you program. Which in turn means you have not clearly though out your design specification. If you used a...
  9. robinmiller

    Threads in VB

    Appologies... you also need a type library that goes with this. Runnable.tlb.. If you want it I can mail it.
  10. robinmiller

    Threads in VB

    Alternatively you could try the follwing within your ActiveX.exe to imitate Java out-of-process style threading model in VB. I use this. This will give you a 'real' asynchronous effect. ' ============================================================== ' FileName: mStart.bas ' Author: SP...
  11. robinmiller

    Why will this statement not work???

    No problems. Robin.Miller@Telewest.co.uk There a a number of books out there on objects. Some are good others are very hard to read clearly and give you a unclutered understanding of Objects In my opinion , the best start is probably two books. 1st Beginning Visual Basic 6 Objects by Peter...
  12. robinmiller

    Exporting & Importing Data in VB Program and backend is Oracle.

    Try looking at this in the HELP file of VB ADO and data-aware class application, reading delimited text file Ill try and help a bit later. Sorry really busy at the moment.
  13. robinmiller

    Why will this statement not work???

    Visual Basic provides three kinds of property procedures, as described below. Property Get Returns the value of a property. Property Let Sets the value of a property. Property Set Sets the value of an object property (that is, a property that contains a reference to an object). (IGNORE SET...
  14. robinmiller

    Why will this statement not work???

    Why not create some properties to hold the values, each time an item is added, intercept the values and increment the property values. The call a routine to carry out the calculations. ie.. Option Explicit ' member variable for LaborRate property Private m_LaborRate As Currency ' member...
  15. robinmiller

    Exporting & Importing Data in VB Program and backend is Oracle.

    If you extract the data via ADO, you can persist it (save it) into anx XML file automatically, using the ADO recordset object. In order to return it into the other database, simply read it in from the persisted (saved) XML file, again using ADO recordset object.

Part and Inventory Search

Back
Top