Software Development Network Logo
  • Game Technologies
  • IE Development
  • Visual Studio
  • Visual C++
  • Visual Basic
  • SharePoint Products
  • Microsoft ISV
  • Visual C#
  • Windows Vista
  • SQL Server
  • .NET Development
  • Smart Devicet
  • Visual FoxPro
  • VS Team System
  • Audio and Video

Software Development Network >> Tigers21's Q&A profile

Tigers21

Member List

ahorse
Anatoly 01
kuntushi
J. Clark
Hexadecimator
winstonSmith
Stéphane Beauchemin
lee anthony
Frederik Vanderhaegen
Aleniko29139
meFox
harcrow
Marcel leclerc
Binu Jeesman
FedericoC
dragoncells
yvolk
Dani K.
Mel Schehlein
Troy Lundin
Only Title

Tigers21's Q&A profile

  • SQL Server How to compile/translate a SSIS package in Japanese

    Hi, I have a requirement to do a data migration work for a Japanese client. The problem is I don't know Japanese and the client SME does not know English. So, my requirement is, I should be able to create a SSIS package in English and then should be able to compile or translate it into Japanese so that my Japanese SME can understand the package. Is it possible to do If so, how can I do it Thanks in advance. I'm not aware of any existing tool to do the translation. You can either do "bi-lingual package", e.g. use English task and components names, and the translator can add Japanese task and component descriptions. Or you can create a tool yourself using SSIS object model - it is easy to enumerate the tasks and compone ...Show All

  • Microsoft ISV Community Center Forums Excel: Copying cells under a specific cell containing a title

    Hi there, I have a worksheet in Excel containing various data. The data is often on the same form but not at the same position. In this I want to copy a table of data that is located under a cell with the text FX. I use this code to detect the FX cell. Sub FoundIt() Dim mycell As String Cells.Find(What:="FX", After:=ActiveCell, LookIn:=xlFormulas, LookAt:= _ xlPart, SearchOrder:=xlByRows, SearchDirection:=xlNext, MatchCase:=False _ , SearchFormat:=False).Activate mycell = ActiveCell.Address It's not neccecarily so that the table is located directly under the cell containing the text FX but at least it is in the same column. So I would need a function that from FX looks in that column after the first nu ...Show All

  • Smart Device Development Missing Dependencies & Intialization Error

    I am getting two error messages when trying to start my app. The first is: "File or assembly name 'System.Data.SqlServerCe, Version=3.0.3600.0, Culture=neutral, PublicKeyToken=3BE235DF1C8D2AD3', or one of its dependencies, was not found." Which in my project I have System.Data.SqlServerCe dll attached. My guess is that I haven't installed it on my device yet, but I can't seem to find the necessary cab files to do so. After that error message comes up my app shuts down and I am presented with a pop-up box that says: [.NET CF Initialization Error] The application failed to load required components. If the .NET Compact Framework is installed on a storage card, please ensure that this card is in place and launch the application again ...Show All

  • Visual C++ How to get control's relative position and it's size in a window / dialog box?

    Hi all, Actually I am trying to give a different appearance to my vc++ application. i.e. i like to change the appearance of all controls in my dialogs. So I like to draw control's border in my own after removing its border property. So can any one tell me how to get relative position of controls in window / dialog any suggestions would be appreciated. Purusothaman A Thanks priyasophi . I am also a starter. Regards, Purusothaman A ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Any chance of a Shared Source?

    For such a fundamentally awesome framework, I think a lot of people could benefit from seeing a sample implementation of it. Is there any chance of XNA (only the Windows version, of course) being made Shared Source Maybe, but I'm doubtful.. I think your best chance at getting a look at the source is running Dis# or any other MSIL disasambler over the framework.. I've never tried it myself, and I'm sure Microsoft wouldn't be too hapy if you did.. ...Show All

  • Visual Studio SubreportProcessing not firing

    I have a WinForms solution that displays a report in the ReportViewer. I like what I've been able to do with this new control. I have had a problem with the LocalReport.SubreportProcessing event not firing. Another post in this forum discussed this problem and suggested it occurs when the main report and subreport are found in a project that's not the executable. Is this a known issue, and if not, do you have a suggestion Thank You, Nate I just had the same issue, and after a days work I found out that a subreport must have the following criteria: - the subreport must be in the same directory as the main report - the subreport must have the rdlc extension, rdl won't work - the reportname par ...Show All

  • Visual Studio Team System Migrating source code from expired trail version to another TFS server.

    Hi all, A client has asked me to help migrating the source code from one TFS server to another TFS server. They have been running a small development project on a TFS server using the MSDN 180 trail key. They have now purhased a proper licens to TFS and has to migrate the source code from the TFS Trail server to the real server. Is the some tool to do this It is not that important that the releated work items and the data in the OPAP cube are being migrated. The important part is moving the souce code and the version history. To make matter worse ... the trail key has expired ... Any idea how to solve this problem Kind regards Tony If they haven't already installed a new Team Foundation ...Show All

  • .NET Development DATA SET

    Hai, I have doubt in dataset(data layer) creation in asp.net2005. i need example for data set like, 1.How to create the dataset. 2.how to write the methods in the dataset. 3.how to call these in aspx froms. Do you mean ado.net dataset Or what kind of dataset If you want to know ado.net dataset, You can see this aritcles in msdn... http://msdn2.microsoft.com/en-us/library/zb0sdh0b.aspx ...Show All

  • Visual Studio 2008 (Pre-release) Validation summary

    I have a ListView with many controls in it. Validation rule is defined for each control in ListView. For example: < DataTemplate > < TextBox x:Name = " TextEdit " LostFocus = " OnLostFocusPriority " GotFocus = " OnGotFocusPriority " Width = " 100 " BorderThickness = " 1 " BorderBrush = " #B4B6BC " Height = " 25 " Style = " {DynamicResource tbInError} " > < TextBox.Text > < Binding Path = " Priority " > < Binding.ValidationRules > < val:PriorityValidationRule /> </ Binding.ValidationRules > </ Binding > </ TextBox.Text > </ TextBox > ...Show All

  • Visual Studio Express Editions Invalid Email address--fail to register

    When registered, I was keeping get this error message: Invalid email address I have provided my hotmail address, like XXX@hotmail.com , What's wrong with that Please help I'm in the same boat.. registration is free.. free product.. but can't get past e-mail validator to get a code. It'd be nice if they'd fix that. ...Show All

  • SQL Server How to upload a file to a Server URL using Web Service Task?

    Hi, I have been trying to setup a web service task to use my http connection manager that connects to a server url. What I want to do is to upload a file to a web server... can this be done using web service task and what is the WSDL and what happens when my target server usis SSL so instead of http, it should use https I need help with this one... can't quite imagine how to get things rolling.. Thanks in advance! Kervy I was able to upload a file to my web server using the Put method.. I don't know why using the Post method fails.. anyway, just to test my http connection manager.. in the URL I put https because I want to test using SSL and I get this" The underlying connection wa ...Show All

  • Windows Live Developer Forums Collision Detection?

    Is there a way to have the control recognize when two pushpins are on top of each other and draw them with a temporary offset so both pins could be seen   Thanks. Well as I originally stated, this only works for loading a batch of points at once. MY logic was fairly simple, I sorted my batch of points by latitude/longitude, and as I looped through my data and plotted each point, I compared the last coordinate pair to the current one, and if they were the same, I created a list of sorts. Then, once I get a point that is different from the previous point, if a list exists, I create a default pushpin and put the list I created into the mouseover. I've thought about ways to do this outside of a batc ...Show All

  • Visual FoxPro how to make an installation disk in vfp 8

    hello, i appreciate very much all the response that i get from this forum. i have another question, how do i make an installer for the program that was developed in vfp8. my colleague told me that in vfp 6 there was a feature wherein you can create an installation disk. is this still supported in vfp8 how do we create an installation disk thank you jason Here is the Walkthrough paper: Creating a Visual FoxPro Application Setup Program Using InstallShield Express http://msdn.microsoft.com/library/default.asp url=/library/en-us/dv_foxhelp/html/fowlkWalkthroughCreatingVisualFoxProApplicationSetupProgramUsingInstallShieldExpress.asp ...Show All

  • SQL Server manipulate matrix/group column heading for subtotal column

    Hello all! I'm using a matrix with a subtotal. The subtotal shows prior to the detail (first column). For the heading I have = Fields!category.Value + " HeadCounts" (where category is the grouping for the matrix) Which is fine for the detail columns. But the subtotal column repeats the value for the first detail column heading and it is inappropriate. How do I identify this column and replace the heading when it is the subtotal column I hope I stated that clearly. You can use the InScope() function to find out if you are in a subtotal and display different content. http://msdn2.microsoft.com/en-us/library/ms156490.aspx ...Show All

  • Visual Studio VS2005 C# Install Package Error

    I am using VS2005 to create a project in C#. It installs fine on my machine, but when I attemt to install the project on any machine that does not have VS2005 on it, it gives me an Error. Unable to install or run the application. The application requires that assembly CrystalDecisions.CrystallReports.Engine Version 10.2.3600.0 be installed in the Global Assembly Cache (GAC) first. I am not using Crystal Reports in my project at all. I have found the file on my computer, but I can not copy or include it in the project. How can this be fixed without putting VS2005 on all of my clients computers. We even tried downloading the file off the internet, but it was a newer version that the install did not recognize. Thanks, Adam Ship ...Show All

©2008 Software Development Network