Goonie's Q&A profile
Visual Studio Crystal Reports XI R2 into Microsoft Visual Studio 2005
Hello, I'm having some problem to deploy Crystal Reports XI R2 into Microsoft Visual Studio 2005. I can't find the dll to add into the VS2005 references. I think I need to download the merge modules and run the CrystalReports11_5_NET_2005.msi. But the problem it's I don't have the CrystalReports11_5_NET_2005.msi. I was using the Crystal Reports 10 and it works fine with VS2005. I have all the DLL in the directory C:\Program Files\Common Files\Business Objects\2.7\Managed. But as for the Crystal Reports XI R2, i can't found any DLL like CrystalDecisions.CrystalReports.Engine.dll, CrystalDecisions.ReportSource.dll, etc. So could you tell me where I can found it or what I need to do to get it Thank you ...Show All
Smart Device Development Create a Web Service Proxy at run time using .Net compact framework 1.0
Hi, I need to create a web service proxy at run time using the .net compact frame work. I thought about the wsdl utility but it is not supported by the compact framework. what does the visual studio do when creating a web reference within a smart device application (how visual studio do it). pls help me in this task because i really need it. thanks Let's assume for a moment WSDL utility is supported for NETCF. It does not help you as you can't run it on device. Let's assume you can - that also does not help you as you can't compile the proxy on device. To sum up: there are many reasons you can't do that. ...Show All
.NET Development How to test for Null values in ADODB recordset in VB.Net
What is the easiest way to test for a Null value in an ADODB recordset when using VB.Net. The IsNull function does not work in VB.Net, or so it seems. Thanks If ( Not Convert.IsDBNull( dr( "FirstName" ) ) ) Then Me ._firstName = Cstr( dr( "FirstName" ) ) End If ...Show All
Software Development for Windows Vista Creating WF Rules From CodeDom
Hi everone We have a situation where will be using Windows Workflow Foundation Rule Engine along with our custom application. Now the main point of foucs is to create rules on basis of some external application (say Microsoft Analysis Services Dataminig generates rules and they will be used ) , now as we gather WF uses CodeDom to save rules , now we need to write a convertor that takes rules from one side (SQL BI ) and convert it into WF (CodeDom ) Format . Now here i need you guys support for the following (SQL Datamining Generated Rules ---->WF CodeDom) a) Let me know the best possible option(s) for this b) can any one provide detail codeDom demos (I already browsed WF Team Member Blog , i think Mustufa's and some one ...Show All
Visual Basic Problem with checking an object is nothing
I'm currently building myself a new object class and am having a problem checking wether an object has been instanciated or not. I'll show the code then i'll explain whats ment to be happening Private objRiskInformation As RiskInformation Public ReadOnly Property RiskInformation() As RiskInformation Get If objRiskInformation Is Nothing Then objRiskInformation = New RiskInformation objRiskInformation.getAccountRiskInformation(intID, strDBConnectionString) End If RiskInformation = objRiskInformation End Get End Property This property is in my main class and is ment to allow access to the risk information ...Show All
Visual Studio Tools for Office using VSTO w/ ASP.Net 2.0
Hi, Newbie using VSTO and developing office applications. The task is to import and export data from and to database, but user can select from a list columns what they want to add, there will be a dialog will appear and allow user to select data to be included in a word document, how can this be done I installed PIA, VSTO2005SE w/ runtime, MS Office 2003 Web Components and will use MS Office 2003 (ver 11.0.7969.0) with ASP.Net 2.0. I tried some links and cannot find Actions Pane Control. What Am I missing Can anyone point me to some sample codes or resources to do this Thanks in advanced. den2005 Hi Dennis Office 2003 sp2 works, as well. But you have to be careful when updating it to ...Show All
Visual Basic Nooby here again. Handle the keyDown event.
Eh i cant believe i forgot this lol... How do you make a PictureBox move with Arrow Keys I keep trying this ... But, it doesn,t seem to work :( Private Sub Form_KeyDown(KeyCode As Integer, Shift As Integer) Select Case KeyCode Case vbKeyUp: Picture1.Top = Picture1.Top - 50 Case vbKeyDown: Picture1.Top = Picture1.Top + 50 Case vbKeyLeft: Picture1.Left = Picture1.Left - 50 Case vbKeyRight: Picture1.Left = Picture1.Left + 50 End Select End Sub Thank you, Moveit Private Sub Form1_KeyDown(ByVal sender As Object, ByVal e As System.Windows.Forms.KeyEventArgs) Handles Me.KeyDown Select Case e.KeyCode Case Keys.Up Picture1.Top = Picture1.Top - 50 Case Keys.Down Picture1.Top ...Show All
SQL Server MSDE Multiple Instance
I am trying to set up multiple instances of MSDE 2000 for use by Trend Micro virus scan products. I have the instance set up but I am trying to access svrnetcn.exe to set up named pipes and TCP/IP and I keep getting a 126 error "The Specified Module could not be found". Any ideas how to set this up. thanks, eric I had this same issue and ended up searching for that 126 error message. I found a somewhat related reference to an older service pack being installed than what it wanted, so maybe SVRNETCN.exe or some of its required files were corrupted. Who knows. Maybe at some point I installed an older version of MSDE over a newer version and broke it. I went to add/remove programs and removed ...Show All
Software Development for Windows Vista Writing to Global Shared memory from an Application in Vista.
Hi all, Global shared memory is created by a service which is used by my user mode application to communicate with the service through global mutexes and events. This as of now works well in Vista RC1. 1) Are there any restrictions that an application should not write to global shared memory already created by service This application does not has any elevated privileges. 2) Can application created global named objects like event and mutex Again the application is running under a standard user privilege and not as admin. 3) Can a 32bit application on a 64bit machine get interfaces to a 64bit Local server COM object Is there any special processing required in the 32bit app or in the 64bit local server COM object. Regards, ...Show All
Software Development for Windows Vista Application COmp
Hi All, Following are few queries in terms of Application Compliance. 1.Can any one list the best practice that needs to be followed to achive Applicaiton Compliance. 2. I want to deploy a web based application to vista platform and apply Application Compliance to the same. Also what are the detail steps and process for applying application compliance to a web based applicaiton. Regards, Ajay kumar Hi Oliver, Thanks for your valuable reply. Another one question in terms of sql server 1. The previously developed application (either web or windows) is using sql server 2000 as backend database for storing the data. Now this application needs to be ported to Vista platform. so what is possible answer for the same ...Show All
SQL Server SSIS Data Flow task fails to load all text from flat file
Hi Guys, I have a flat file which is loaded into the database on a daily basis. The file contains rows of strings which I load into a table, specifically to a column of length 8000. The string has a length of 690, but the format is like 'xxxxxx xx xx..' and so on, where 'xxxx' represents data. So there are spaces, etc present in the middle. Previously I used SQL 2000 DTS to load the files in, and it was just a Column Transformation with the Col001 from the text file loading straight to my table column. After the load, if I select len(col) it gives me 750 for all rows. Once I started to migrate this to SSIS, I allocated the Control Flow Task and specified the flat file source and the oledb destination, and gave the output column ...Show All
Smart Device Development Could not establish connection to network (Actual Device not emulator)
Hello all, I am running Pocket PC 2003 with a VS 2005 app and Activesync 4.2. I have 7 devices with these configurations and of the 7, 3 have begun having issues since I updated there OSes to OEM 4.1.0. The issue is that I can connect to the computer using Activesync with the 3 problem devices but when I attempt to access the web method I receive this error Upload Failure: Could not establish connection to the network. Yet Activesync on both sides assures me that the devices remain connected the entire time. Please assist with this issue. Thank you Web method: 'Imports System.Web 'Imports System.Data.OleDb 'Imports System.Data 'Imports System.Web.Services 'Imports System.Web.Services.Protocols '<WebService(Namespace:="http://te ...Show All
Visual Studio 2008 (Pre-release) Custom binding and wsHttpBinding
Hi, there. I need help from you guys again. If I want to make the default setting of wsHttpBinding in custom binding. How can I do that The reason for doing this is because I want to change only a part of the default setting which you can not do with system-defined setting. For example, wsHttpBinding is perfect for me to connect with Java except that the soap message version is different. However, I have no way of knowing how to have the same setting in custom bindings. So if you can help me out or guide me to a page where it tells me all that. That would be wonderful. Thank you for your time in advance!!! You answer helped me great deal, Madhu. However, is there any way we can do the same thing in config file ...Show All
.NET Development Rs232-threads-problems
Hi, I have a strange problem...I work an application which is multithreading.I interrupt,with my application, the communication of two devices which send each other hexadecimal messages to communicate with Rs232..so i can check in my program what kind of messages are that and i can also change some bytes and send them back changed..the problem is that when I run this in my pc(2GHz) is run ok..everything work..I have mentioned the GHz cause I do a lot of processes until I send back the changed bytes and that some times take long time and I lose the communication(i need real time coinnection)..In my old pc (1GHZ) it also works...But when I gave that to my firend to check in his pc (3,4)..it doesn;t work...Have you any idea aboput the reason. ...Show All
Architecture System.Transactions.TransactionManagerCommunicationException: Communication with the underlying transaction manager has failed.
Hi, I am trying to open database connection two time within transaction scope in WCF Service. it is throwing exception System.Transactions.TransactionManagerCommunicationException: Communication with the underlying transaction manager has failed. I have enabled MSDTC on client and server too. I am using .Net Framework 3.0 RC1 Version and Sql-Server 2005 on windows XP. This is throwing exception only when accessing database from other machine. It is working fine on localhost. Code Snippet as follows: try { using ( TransactionScope txScope = new TransactionScope ()) { using ( SqlConnection conn1 = new SqlConnection (sqlConnectionString)) { conn1.Open(); } using ( SqlConnectio ...Show All
