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. moonmonkey

    DTS Package - Destination Table

    Thanks, but I don't think I've not explained myself well enough here. This should be a very flexible function. Lets assume for arguments sake that I don't know much about opening cheetah databases. However, once SQL Server has opened a connection, it knows the table structure of the source...
  2. moonmonkey

    DTS Package - Destination Table

    Hi. I am creating a VB function which uses DTS to transform a DBF file into a SQL Server 2000 table. This works fine, except the problem is, that I cannot assume that the destination table exists. When you create the package manually in design view, there is a button which allows you to create...
  3. moonmonkey

    Visual Interdev - Unexpected Error - Quitting

    I'm quite sure i've also tried this: http://support.microsoft.com/default.aspx?scid=kb;en-us;199272 ...but it didn't help...
  4. moonmonkey

    Interdev Debug Mode - DLL Permissions

    Hi. I have created a web project in Interdev, copied the contents of the root of an existing site into the new project and rebranded it slightly. When I set a start page, and run the project in interdev and view the site from any machine on our network, it all runs fine. However, when I stop...
  5. moonmonkey

    Visual Interdev - Unexpected Error - Quitting

    Hi. I've recently installed service pack five but this did not resolve the issue. If you have any more ideas, please let me know. Thanks.
  6. moonmonkey

    How can you make a copy of a collection?

    Have a look at this very basic function: Public Function PutFolderContentsInCollection(ByVal strFolder As String, ByRef ColFiles As Collection) As Boolean On Error GoTo errorhandler Dim strFileName As String Dim ColCopyOfOriginal As New Collection Set...
  7. moonmonkey

    Optional Object Parameter

    I cracked this one myself! If Not ListIconsControl Is Nothing Then 'object has been passed! end if easy when you know how!
  8. moonmonkey

    Optional Object Parameter

    I'm trying to write a vb function in which the developer may or may not pass an ImageList object as the final optional parameter. The question is, how do you check to see if the object was passed or not? I've tried isnull(ObjectParameterName), isempty(ObjectParameterName), and...
  9. moonmonkey

    altering an entry in the sysdevices table

    hi! Our network guy wants to change the field 'phyname' in the system table sysdevices. How can we do this? It doesn't want to let us change it. It says "Ad Hoc updates to system catalogs are not enabled. The system administrator must reconfigure SQL Server to allow this'. Apparently he...
  10. moonmonkey

    Visual Interdev - Unexpected Error - Quitting

    Hi. All of a sudden, one day when I tried to load up Visual Interdev, I almost immediately get the error "Unexpected Error: Quitting", and the application immediately quits. Please help as I really need to use this software!
  11. moonmonkey

    Server has not yet been opened ??

    I have created a Visual Basic EXE program that takes various parameters in order to create a word and csv file using the crystal reports report viewer object, and the crystal reports design and runtime library.It uses craxdrt.dll, craxddrt.dll, and CRVIEWER.DLL, among others. I am now at the...
  12. moonmonkey

    How To Show Column Headings in Crystal Reports

    Ken. yes thats exactly what I found. When I used some textboxes as headings, it put the headings in every row, which is totally stupid. Why would you want that? Does crystal reports really not print field headings? It seems unbelievable. I am having to create a separate csv with just the...
  13. moonmonkey

    How To Show Column Headings in Crystal Reports

    i've just read in a crystal reports book that there is an option in the file-options menu, under the layout tab, which is a check box option that says "Show Field Names". How do you set this option from the crystal reports Report Designer component?
  14. moonmonkey

    How To Show Column Headings in Crystal Reports

    Hi. I'm new to crystal reports, and we are using it (perhaps rather foolishly) to create CSV and word documents based on SQL Statements. We are using the Report Designer Component in Visual Basic to do this. Can anyone tell me how to tell the component to include field headings when it creates...

Part and Inventory Search

Back
Top