kangalert's Q&A profile
SQL Server Downloads becoming corrupt while use FTP Task
I have a Package that downloads apprx 15 data archives from an FTP site using FTP Tasks. My problem is that the data contained within these archives (.Z) are becoming corrupt after download/extracting. I have isolated the problem to the FTP File Task by manually downloading the archives myself from IE's built-in FTP client and disabling the downloads in the Control Flow. The Control Flow will then execute the extracting script and continue without any problems. If I run the Package with the FTP Tasks enabled it will get to a random spot in the validation (I haven't been able to see any consistency with where it errors) of the flat files and error with either a truncation error or a (don't remember exactly what it was) error that talks abou ...Show All
Visual Studio Express Editions Program to help read documents
I am not very good at programing. How would I make a program to read microsoft word or text documents. What functions, libraries and things to i need If all you need is to open a Word Document in Word, then you can use Process.Start(). For details on Process.Start with a VB code snippet take a look at the following thread: http://forums.microsoft.com/msdn/ShowPost.aspx PostID=77106 If you need to programmatically use the Word Object Model, read the following KB Article: http://support.microsoft.com/default.aspx scid=kb;en-us;316383 From VB you can open an instance of word with a document loaded using something like the following. Dim wordApp As Word.Application Dim wordDoc As Word.Document Try ...Show All
Visual C++ Native C++ Or C++.Net2005!!!???
Common Guys, I Did Many Test, And Always The Rersult Tell Me That Native C++ More Faster Than C++.Net.How Is This Plz Tell Me, Does This Is True NuclearChicken wrote: Why on earth would anyone want to develope a 3D game in dotnet to (MSIL) as opposed to native In fact why would anyone develope anything to MSIL (unless your integrating different modules in different languages etc) Its not like MSIL will have an interpreter for Linux or Mac. Native every time for me. You haven't heard about Mono ( http://en.wikipedia.org/wiki/Mono_%28software%29 ) :) ...Show All
Smart Device Development Help with PPC 2003
Hello, We have a Windows Mobile 5.0 application that works well, however we have a client that would like to use their pocketpc 2003 devices. When changing the platform of the project we have some errors that I am hoping someone might know the answers to. Below is a list of the keywords that I am looking for a similar conversion for pocketpc 2003. Thanks in advance. John Issues: SystemProperty Dim ActiveApplication As SystemProperty = SystemProperty.ActiveApplication SystemState Private WithEvents _CradlePresent As New SystemState(SystemProperty.CradlePresent) CameraCaptureDialog (How do I code for a camera in pocketpc 2003 ) Dim cameraCapture As CameraCaptureDialog = New CameraCaptureDial ...Show All
Visual Studio Express Editions OleDbConnection and listview
hi i have a listview that i want to load in it the contents of my database(its in access) ,i read that i have to use OleDbConnection for that . i found some articles to how make connection with database ,but i still don't know how to load it to the listview.can you help me for that ...Show All
SQL Server parameter issue in with member
Not sure where the problem is The @bucket-size is an integer value being entered by the user. with set [end] as strtomember (" [REL TURN HRS].[TRN HRS].&[" + @bucket_size + "]" ) member measures.bucket1 as iif ( isempty ( sum ([REL TURN HRS].[TRN HRS].&[0] : [end],[Measures].[FACT CUT RELEASE Count])),0, sum ([REL TURN HRS].[TRN HRS].&[0]: [end],[Measures].[FACT CUT RELEASE Count])) SELECT NON EMPTY { measures.bucket1} ON COLUMNS , NON EMPTY {[CUSTOMER JOB].[Cust-Title-Issue-Job].[JOB_NUMBER]. ALLMEMBERS } ON ROWS FROM [DW INSIGHT] WHERE ([CUSTOMER JOB].[JOB_NUMBER].&[A403EZ0]) Have you created the parameter throught t ...Show All
Visual Studio Tools for Office No web item templates, errors installing Outlook add-in MyBlogs (no projecttype dir), no ASP.NET
Hi, Thanks for your time. I am a DBA/Database and BI developer. I do heavy SQL, tons of Office development, desktop VB apps. I'm now getting on track with ASP.NET, Reporting Services, and software deployments over the web and local install packages. Mainly coupling SQL BI and performance monitoring through client web interfaces. So cool. My issue is I don't think and maybe don't know what templates are supposed to show up in my vsto2005se new projects or new items list, but I do not see anything for ASP pages, and I cannot do any webforms at all (except in VWD). I installed SQL2005Developer off the VSTO cds and there are many project/item types that are not in VS. Same for the other environments. I'll list my installs and please let ...Show All
Visual Studio Team System how to check the unused "using" directive
hi, Is there anybody can tell me how to check the unused "using" directive in C# by FoxCop thank you! ...Show All
.NET Development Problem with library referencing
Good morning, I am having a problem with DLLs in my .NET application, and I am hoping someone can shed some light on this. Our application uses nine DLLs: five are third party libraries, four are in house. The executable as is currently requires these nine files to be in its same directory. The application is called using a SHELL command from a VB6 application, and it seems to work fine in most situations. However, there appears to be a referencing problem with the executable finding the DLLs. At some point, it appears that the executable no longer looks in the folder it resides in for its DLLs. This seems to happen especially when using one segment of the VB6 program called Builder. When builder is loaded up, one must go through the menu ...Show All
Windows Forms Height limit
Hi all I am using C# in VS.Net 2005. I have found that I cannot set the height of a form greater than 1036. Does anyone know if 1036 is absolutely the maximum for a form's height or any way to change the limit Thanks, How can a developer ensure that the form will size itself correctly no matter what the resolution settings may be on the end users machine I develop with a resolution setting of 1280 by 1024. Some end user monitors that we have here in house can be, and are by some of our users, set to a smaller width and or height causing some of the form controls to be cut off... any help and advice would be great. thanks. ...Show All
.NET Development WS-I18N, Web Services Internationalization
Has anyone done any work implementing the WS-I18N header enhancements with an ASP.NET Web Service, or similar Pablo has posted an implementation of it for WCF, you can find the article here: http://www.codeproject.com/winfx/WSI18N.asp I hope it helps. Gabo ...Show All
Visual Basic Working with Byval and ByRef keywords
Hey, Could anyone show me how to work with ByVal and ByRef Keywords in Visual Basic.Net Thanks http://msdn.microsoft.com/msdnmag/issues/02/06/Instincts/ It's actually a long story and it's described well in the article above. First of all Byval mens that your method receives a private copy of the object it's receiving. If you modify it, you are modifying the private copy, not the actual object. ByRef passes an address and not a copy. It's slightly slower since it is an indirection. If you want to modify a value and pass it back, use ByRef. If you just want to read something and use it as a scratch pad use ByVal. BYVALs are associated with TYPES classes and other reference object are as ...Show All
SQL Server How do I schedule JOB in sql 2005
Can anyone please help me for scheduling JOB in sql 2005. Thanks in advance. Raviraj you could emulate the agent by writing a batch script that calls some sql commands using sqlcmd , then use windows "scheduled tasks" to give it a daily job... though scheduled tasks isnt super reliable IMO it can pretty much get the job done ...Show All
Visual Studio Team System TFS Fails - Report Services Cannot be confirmed
Just a note to MS - TFS installation is a joke. A travesty. An embarassment. And as it's taken 10+ hours just to get to this point and we've decided to abandon this endeavour I wanted to let you in on some error the Reporting Services Configuration tool spewed out. Good bloody luck with this unfortunate product. ReportServicesConfigUI.WMIProvider.WMIProviderException: An unknown error has occurred in the WMI Provider. Error Code 80070003 at ReportServicesConfigUI.WMIProvider.RSReportServerAdmin.SetWebServiceIdentity(String applicationPool) More on the continuing saga. Decided against buying another box. The electric bill is too high as it is. (You folk in CA and elsewhere will flip the bird at me wh ...Show All
Smart Device Development Data Connection Options and Techniques
Hi All, I am new to the .NETCF and actually the .NET Framework itself. I'm a MS Visual Foxpro Developer by trade and have experience developing client and web based applications using the following languages VFP9/VB6/C++6/XHTML/XML/ASP. I have recently been extremely excited by the prospect of using the ,NETCF2.0 and WM5.0 to develop a Windows Mobile based solution for one of our clients. I've done a lot of investigation into using the .NETCF2.0 to build this client solution, but not actually coded anything yet. I have created a design document detailing everything this solution should included and the language and platform to be used. Unfortunately I've hit a stumbler, my design document is far to idealistic. I have been tasked to b ...Show All
