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

    Add Double Click event to MonthCalendar

    I see that I forgot something in my previous post. Public Class MyMonthCalendar Inherits MonthCalendar Public Event MyDoubleClick(ByVal sender As Object, _ ByVal e As System.EventArgs) Public Shadows Sub DoubleClick(ByVal sender As Object, _ ByVal e As System.EventArgs)...
  2. Denaeghel

    Add Double Click event to MonthCalendar

    Hello I want to add a double click event to my MonthCalendar object. I just simulated double click by the following code: Private Sub MonthCalendar1_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles MonthCalendar1.MouseDown Dim x As Date If...
  3. Denaeghel

    Change right popup menu in Windows explorer

    Hello How can I change (or add) commands to the (right-click) popup menu in the windows explorer. Thanks karel.denaeghel@barco.com
  4. Denaeghel

    Reading a Blob field in MS-Access

    Hello I still have some problems with my pictures in VB. When I try to show (or even read them), I always get: Invalid Picture. I have SQL Server 2K. When I export my table to an Access File, make a form and I'm able to show the picture. When I try that in my VB application, save the image...
  5. Denaeghel

    CheckUPS and HPUX-v10

    Hello I've a system that is connected with a UPS system. I use CheckUPS software on my machine. When I test my UPS, I get communication with my UPS (time remaining on my battery, etc). But I never get the shutdown commando. I've checked my settings and everything seems OK...
  6. Denaeghel

    SQL Server is not starting

    Check if your SQL Agent is still running on the server karel.denaeghel@barco.com
  7. Denaeghel

    DTS and MS-Access

    Hello I have the same problem with the DTS package. I must import Access DB into my SQL Server. When I run the package manual there is no problem, but when I schedule the DTS job, I always got an error. I found a document on the site of Microsoft. Perhaps this will help your problem. It is a...
  8. Denaeghel

    Sysname

    Ok thanks James That was the answer that I was looking for Karel
  9. Denaeghel

    Sysname

    I have a question about the types nvarchar and sysname. When I use the following query I get for nvarchar 2 types: select sc.name as [name Field], st.name as [Name Type] from sysobjects so join syscolumns sc on sc.id = so.id join systypes st on st.xtype = sc.xtype where so.Xtype = 'u' and...
  10. Denaeghel

    outer join question

    I think you forgot the ON statement SELECT * FROM (SELECT * FROM Instructor, InstructorZipCode WHERE (math crap)) AS InstructorTable LEFT OUTER JOIN Classification ON InstructorTable.ClassificationID = Classification.ClassificationID Perhaps this will help karel.denaeghel@barco.com
  11. Denaeghel

    Incorrect syntax near '='

    I think you forgot your ' in your sql statement Try this sql = "SELECT * FROM tblInformation WHERE pkey= '" & request.form("Pkey") & "'" Hope this will help Karel karel.denaeghel@barco.com
  12. Denaeghel

    BCP Question

    Is it possible to import data from Access into SQL-Tables with BCP. Now I do it with DTS, but the combination of SQL Server 7, Windows 2000 and ADO gives me problems with scheduled tasks (bug in SQL Server 7). See http://support.microsoft.com/default.aspx?scid=kb%3ben-us%3b255900 Thanks in...
  13. Denaeghel

    Dynamic Insert procedure

    Is it possible to write a stored procedure that can insert information where the column name is variable? Thanks Karel karel.denaeghel@barco.com
  14. Denaeghel

    Search for linked server

    Hello I want to see all views, stored procedures, ... (from all databases in a SQL-group) where I make a connection with a linked server. Thanks in advanced Karel karel.denaeghel@barco.com
  15. Denaeghel

    Autonumber Listview

    We load the information from the SQL Server into the listview. It is dynamic. You can change the order of the listview by clicking on the column headers. It is just a counter that we need. But my question is if Listview can do that automatically or must I use a simple counter. Karel...
  16. Denaeghel

    Autonumber Listview

    I got some problems with my listview. I want that my first column of my listview shout be an auto number. Is that possible in the listview and how? Thanks karel.denaeghel@barco.com
  17. Denaeghel

    Listview and Printform

    Hello I have a form with a listview. When I want to print my form, with printform, I always got an empty listview. I see the columnheaders, but I can't see the information in my listview. Anyone an idea how to fix this problem? Thanks Karel karel.denaeghel@barco.com
  18. Denaeghel

    ActiveX Document Can't be viewed from another machine

    Check your Internet Temporary files and you will find a file with the name ?CodeDownloadErrorLog!name... Open this file in IE (it is the log-file that you can see which dll or ocx file failed to register). Then you must make your cab-file again with Package and Deployment Wizard and leave the...
  19. Denaeghel

    VBD problem

    We have an ActiveX application on out intranet, and some people aren't able to start the application. Some people (not all of them) get the popup with the question which application they need to start the file ReportBuilder.VBD. The Package & Deployment Wizard creates the CAB and VBD files...
  20. Denaeghel

    NTFS Boot Partition is corrupted! Help..!

    You must make a bootdisk with the files: First: format a:/s copy the following files on the disk (you can find them on the root). Ntldr Ntdetect.com Boot.ini You can find this at the site of microsoft: http://support.microsoft.com/default.aspx?scid=KB;EN-US;Q214748& Karel...

Part and Inventory Search

Back
Top