Software Development Network Logo
  • Visual C#
  • Smart Device
  • Visual Basic
  • Architecture
  • Visual J#
  • Visual C++
  • .NET Development
  • SQL Server
  • VS Express Editions
  • Visual FoxPro
  • Windows Forms
  • Microsoft ISV
  • Windows Vista
  • VS Team System
  • Visual Studio

Software Development Network >> Cathal Connolly's Q&A profile

Cathal Connolly

Member List

Jasen
Antwan
peterhal
gaius
Joy19101
Jon L
fikry
tchavez
ivanbolcina
vamphibian
cost7615
NTx Beta
Rudolfh Bantim
Lenny Hoffman
Jay2006HK
CorySeaman
svashchenko
OnErrorGetHelp
Tom VanO
JYanez
Only Title

Cathal Connolly's Q&A profile

  • Visual Studio 2008 (Pre-release) Object-oriented network database

    Hi, All! I am Ukrainian scientific researcher and developer. I am developing object-oriented network knowledge database which is based on object-oriented database engine. I already implemented .NET 1.1 support. It's very cool that MS devolops declarative object query language for C#. I hope I'll be able to integrate LINQ features into my engine. Now I have to use three fields to store object soft pointers. One for object handle; One for wrapper instance to pin the object instance in memory; and One for instance of user object. I want to hide implementation details from end user. To make this I need some kin ...Show All

  • SQL Server How can I set a report as using the shared datasource I just created?

    I am making a rss script to deploy the reports and datasources. When I created all the folders, datasources, reports. I want to make the reports use the datasource as shared datasource. How can I do that Thanks. ...Show All

  • Visual Studio Express Editions Deploying a web site

    hi, I created a web site using VWD 2005 I copied the files in the web application folder to the web domain. when I try to open the *.aspx files, I get an error tells me the file(s) doesn't exist. a *.htm extension in the same place will work without problems. but my web application won't work. another issue, there doesn't seem to be anyplace where you can opt between debug and release build. debug is default and no other options are available. based on this informaion, it seems I am not allowed to debloy an application made with VWD 2005. Is this correct Where can I find the product limitations for this application UPDATE ...Show All

  • .NET Development Strange behavior of the Trace

    I use Trace class to get logs of the Windows Service. Log file could be changed dinamicalli (you change log file name and trace should to create new file and continue write trace in them). STrace (my class) contain such function to dinamically change log file: private static void AddTextListener( string FileName) { //=========================================================== Trace .WriteLine( DateTime .Now.ToString( "yyyy/M/d hh:mm:ss" , DateTimeFormatInfo .InvariantInfo) + " Names before" ); for ( int i = 0; i < Trace .Listeners.Count; i++) { Trace .WriteLine( Trace .Listeners .Name); Trace ...Show All

  • .NET Development Socket SendFile prb

    I want to transfer an image file On the client side I use this code, after creating all the connections all: client.SendFile(img); On the server side I use this: byte [] btt = new byte [1000000]; client.Receive(btt); FileStream fs = new FileStream ( "C:\\img.jpg" , FileMode .Create); fs.Write(btt,0,1000000); fs.Flush(); fs.Close(); Now, the file img.jpg is created however it only contains a part of the original image, however the image int eh Windows explorer thumbnail view is complete, and one thing is that that in the SendFile method I can not specify the buffersize, so I ...Show All

  • Visual Studio Express Editions How I do to register if I got the Express Images?

    I have installed the Express editions images, what does not requires registration. But, if even I wish register What I can do I will need get the download versions too I also need to know how to register because I use the IMG on a PC that is not connected to the internet - but I want access to the downloadable book and Corbis images. Thanks. ...Show All

  • SQL Server Deploy to SQL Server or flat files

    I'm in a quandry about how to deploy my SSIS packages and was hoping someone has some experience of the same. There are 2 approaches: 1) Deploy to SQL Server. 2) Deploy to .dtsx files. I suppose the default approach is to deploy to SQL Server however I have a problem with that. My packages contain Execute Package Tasks which use different connection managers depending on whether the package that they are calling is on SQL Server or in a .dtsx file. That means that my packages have to contain 2 connection managers for each Execute Package Task - one for pointing to a package deployed to SQL Server and one for a package tha ...Show All

  • Visual Studio Express Editions Random Number generation In Visual Basic 2005 Beta 2 Express

    Hi. Can anyone tell me how to generate a random number between 2 other's I have found a function for it in the object browser: System.Random.Next(integer, integer) but I can't access it in my code. Any help would be wonderful. ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Thanks, The Digital Pioneer OK, thanks a million. That did it. ...Show All

  • Visual C++ build errors in vc++

    Hi,             I am new to vc++. I have one vc++ source code. I am running this on vs2005. for me it is giving the following errors. I saved the source file in the following path. "c:\programfiles". The errors are 1)Error 1 error A2022: instruction operands must be the same size   the lines where i am getting the error is: TIGERROUNDSSE2 5 TIGERKEYSCHEDULESSE2 TIGERROUNDSSE2 7 TIGERKEYSCHEDULESSE2 TIGERROUNDSSE2 9   The lines highlighted with red color are causing the error. 2)Error 13 error PRJ0019: A tool returned an e ...Show All

  • Windows Forms VB.net help needed involving Printing and Print Previews

    Hi everyone, new programmer here. I'm working on a new .net windows form project, involving Print Preview and Printing. I just need to know how to send certain objects to the Print Preview window, then Print from there. Here's what I got so far: Public Class frmVBACCW Inherits System.Windows.Forms.Form Private Sub mnuFilePrintOrder_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles mnuFilePrintOrder.Click 'Begin the process for Print Preview With ppdPrintPreview .Document = prtPrintDocument .ShowDialog() End With End Sub Private Sub prtPrintDocument_PrintPage(ByVal sender As Object, ByVal e As System.Drawing.Pri ...Show All

  • Visual Studio Msgbox On Windows Server 2003

    Hi Guys, I'm really new to .Net development and need your advise on this. Recently I've completed a web application using VB.net (Visual Studio .Net 2003). In the application whenever the user clicks the delete button, a msgbox will appear prompting the user to confirm the deletion via the Yes or Cancel button. On my own machine (Win 2k IIS5), the msgbox appears without any issues. However when I deploy the application on a Windows Server 2003 machine, the msgbox will not appear and a event will be captured in the system log as "Application Popup" containing the text that I wanted to display (e.g. Do you really want to delete this user rec ...Show All

  • SQL Server horizontal ordering of column names

    Hi friends, When  I write: select * from table_name Is it possible to order the column names in alphabetical order in Sql Server (I don't want to order the values in columns, i want to order the column names in the select list.) with regards, Hello. I must admit that I can't really see good uses for this, but since it is something I have never done in SQL, it is fun. So I did it. There shoud be easier ways of doing it, but this worked: --Snippet USE AdventureWorks go ALTER PROCEDURE pTableWithSortedFields ( @tableName nvarchar ( MAX )) AS DECLARE @sql as nvarchar ( MAX ) SET @sql = 'SELECT '   DECLA ...Show All

  • Visual Studio Express Editions Starting (loading) the form from just above the system tray of task bar

    I have to load an alerting form (just like the new e-mail alert from MSN/Yahoo Messenger) from just above the system tray of the task bar irrespective of the screen resolution of the system where the application is running. How to go about it Also, how do I find out the screen resolution of the system where the application is running This info too would be handy for me. Appreciate your help!! Best Regards, Aravindh R When it comes to determining the screen size and working area, take a look at the properties provided by Screen class and it's PrimaryScreen property (found in System.Windows.Forms). ...Show All

  • Windows Forms Crystal reports : Database login dialog - how to awoid it?

    I'm using Crystal reports as a part of Microsoft Visual studio .net 2002. I'm using field definition file (ttx) and a datatable as a datasource for report. (In VB .net code, Datatable is filled with data and then is set to be datasource for the report). Program works fine on the development PC. But when I try to show report on some other  ...Show All

  • Visual C++ How to link to the correct STL library when a third party dll is based on VC6?

    I have a third party dll targeted for VC6 and .net 2003. It worked well with my old MFC application. After it was migrated to VC 2005, it throws an exception of access violation whenever the stl string information in the object is accessed. Accessing other members of the object is OK. I guess it might be linked to the stl.net library instead of the old stl library that the dll is based on. Anyone knows what is the problem  and how it can be solved   Thanks. Please post more details inlcluding a simple repro case reproducing the issue so that folks on the forums can help you. Thanks, ...Show All

©2008 Software Development Network