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

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

Batisse

Member List

xplosiv_1
EA512
maws
SaimaSalim
hunb
Synced23
adb123
Andrew Mercer
crackula
lustigorMolch
DoctorWho
vengattaragavan
WV John
Gurjit Singh
Thomas Weiss
Dvlnblk
Candela
Mike Humphrey
JLovero
Jamie Plenderleith
Only Title

Batisse's Q&A profile

  • Visual Studio Could not fine CrystalImageHandler.aspx

    Please find me a sloution for this error. Description: An error occurred during the processing of a configuration file required to service this request. Please review the specific error details below and modify your configuration file appropriately. Parser Error Message: Could not load file or assembly 'CrystalDecisions.Web, Version=10.2.3600.0, Culture=neutral, PublicKeyToken=692fbea5521e1304' or one of its dependencies. The system cannot find the file specified. Source Error: Line 56: </customErrors> Line 57: --> Line 58: <httpHandlers><add verb="GET" path="CrystalImageHandler.aspx" type="CrystalDecisions.Web.CrystalImageHandler, CrystalDecisions.Web, Version=10.2.36 ...Show All

  • SQL Server How to use coalesce function in derived column component?

    Hi all, You know the coalesce function is not offered in the derived column component. how can I use the coalesce function within the component And how can I use a user defined function within derived column component Would you be kind enough to give an example Thanks! Any reply or comment is highly appriciated. Robert You can simulate a simple coalesce by using the conditional operator. ISNULL(@[User::StringVar]) "Value is Null" : @[User::StringVar] You cannot add user defined functions to the expression syntax. ...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

  • Visual Studio 2008 (Pre-release) The generated client code with complex data type

    Hi, Dear all A simple question about the generated client code with svcuitl. The type DataTable is replaced with AddResponseAddResult in the client code generated. Is there any way to generate the same type as DataTable Thanks -Jessie The code sample in server side: [OperationContract] public DataTable Add(double n1, double n2) { double result1 = n1 + n2; Console.WriteLine("Received Add({0},{1})", n1, n2); Console.WriteLine("Return: {0}", result1); DataTable result = new DataTable("result"); return result; } The code generated in client side: public AddResponseAddResult Add(double n1, double n2) { AddRequest inValue = new AddRequest( ...Show All

  • Software Development for Windows Vista who knows how to get the reference to workflowruntime in the customerAcitiviy?

    I write a local service to like this ----------------------------------------------------------------------------------------------------- Imports System.Workflow.Activities <Serializable()> _ Public Class DocService Implements IDocService Public Sub RaiseDocCanceled(ByVal xDocumentContext As IDocument) Dim e As New DocEventArgs(xDocumentContext) RaiseEvent DocCanceled(Me, e) End Sub Public Sub RaiseDocCompleted(ByVal xDocumentContext As IDocument) Dim e As New DocEventArgs(xDocumentContext) RaiseEvent DocCompleted(Me, e) End Sub Public Sub RaiseDocCreated(ByVal xDocumentContext As IDocument) Dim e As New DocEventArgs(xDocumentContext) RaiseEvent DocCreated(Me, e) ...Show All

  • Windows Forms How to override the default HTTPHeaders in WebBrowser.Navigate(,,,) method

    Hi, I am using WebBrowser.Navigate method in my project. I need to override the default HTTP headers that is used by this web browser . WebBrowser1.Navigate( urlString As String , targetFrameName As String , postData As Byte (), additionalHeaders As String ) I need to change some headers especially the "Cookie" values in my modified HTTP Request that i want to send to a web server. After assigning some cookie values to the additionalHeaders string and calling the webbrowser navigate method, it still sends the original previous cookie to the web server and not my assigned values. here is the code, additionalHeaders = "Cookie: PREFID=1323:abc"+ VBCRLF + "Content-Type: application/x-www-form-url ...Show All

  • SQL Server can I use * to specify 'Output Column' for OLD DB Source Editor?

    I am working on a situation similar to 'Get all from Table A that isn't in Table B' http://www.sqlis.com/default.aspx 311 I noticed that if one column's name of source table changes,(say Year to Year2) I have to modify all 'data flow transformations' in the task. I am new to SSIS. thanks! -ZZ What Your problem is the fact that your schema is changing, not that SSIS can't handle it. Are you saying that its impossible to know what your schema will look like from one day to the next I've never seen a company that would run its systems like that nor would i want to. Sorry to sound rude but it just sounds crazy to me! -Jamie ...Show All

  • Visual Studio Team System TF30162: Fails portal creation when creating Team Project

    Attempting to create a new Team Project gives the following error. We're using the release version of TFS and MSF for Agile template. Following the instructions in another thread: https://forums.microsoft.com/MSDN/ShowPost.aspx PostID=150809&SiteID=1&mode=1 I think I've been able to find the issue. When I try to add a top level site to the "Default Web Site", I get an error that says: "The virtual server that is referenced here is not in the config database." Anyone have an idea what I'm missing here I do find the server in the STS_CONFIG_TFS database in Servers and VirtualServers. 2007-02-19 08:32:58Z | Module: Internal | Team Foundation Server proxy retrieved | Completion time: 0 seconds 2007-02-19 08:32:59 ...Show All

  • Visual C# about 'flag'

    Does anybody know what compiler flag generates XML documentation I'll appreciate for help. Thank you for the help. How about compilers' flag turns on run-time interger range checking Regards. ...Show All

  • .NET Development Using webbrowser as a file explorer

    I have a need for a component that can display files in a local directory just like Windows File Explorer but I want the window integrated into my application. I expected such a component to exist in the .NET base classes but after failing to find one, I then discovered some 3rd party tool on the internet to do this (but you have to pay for them), so presumably I am not being stupid in not finding one. However, after a little experimenting I have discovered that the WebBrowser component almost does what I want. If you call Navigate(filepath) it seems to display the same ActiveX component that File Explorer uses. The downside is that I get a task panel down the left side with 'File and Folder Tasks', 'Other places', 'Details' and the files ...Show All

  • SQL Server DSNLess connection with Failover on SQL Server 2005 Cluster ?

    Hi, We have configured two SQL Server 2005 in a cluster (without Witness). We have severals ASP (using ADO) that are connecting to SQL Server 2005 with SQL Native Client in a DSNLess connection String : driver={SQL Native Client}; server=MAIN\MAIN; Failover Partner=BCKUP\BCKUP; uid=log;pwd=pwd;database=MyBase When using this connection string, the connection to MAIN is alrigth, but when we simulate a unavailability situation on "MyBase" or on the entire MAIN instance, the new connection are joining the MAIN and not the BCKUP SQL Server. We tryed several Connection Strings including Failover_Partner , Initliag Catalog instead of database... but no one succed in joining the BCKUP SQL Server. I precise that the DNS ...Show All

  • SQL Server Inserting image into table

    Plz write me syntax for creating table to store image & side by side one example of inserting image into table. Which version of SQL Server are you using You can download the SQL Server 2005 samples for some projects and code. Books Online & MSDN also has several code samples and topics. Also, depending on the version of SQL Server, ADO.NET and/or .NET the methods vary. ...Show All

  • Visual Studio VS2005: Document Explorer auto-update remove the class library reference

    Hi guys, I have installed VS2005 and MSDN library for a few months everything works fine. However, when i opened up the MSDN library today, it pop-up a Help update in Progress dialog. Afterward, the whole .NET class library reference is gone, i can't find the class library reference. What is going on Can anyone from MS help me Below is the list of program i have installed on my machine: VS2005 Professtional (with MSDN library) VSTS Team Explorer VS2003 Profresstional (with MSDN library) .NET 3.0 VS2005 add-on for WPF, WCF Thankx in advance. Ivan ...Show All

  • SQL Server Time intelligence

    I was trying to using the BI wizard and add time intelligence, but when I try to do so, I get an error stating: "One or more dimensions do not have a data source view. The time intelligence wizard can only be run if a data source view is present." Does anyone know how to get around this error Thanks! ...Show All

  • Visual C++ Compile error on MFC/CLR app

    Hi, I'm new to Visual c++ and am currently making one of my first programs. I'm trying to use the CCriticalSection and CSingleLock classes in this program, and to do so, I know I need to include <afxmt.h>. Well, when I try to compile my program for debug, I get all kinds of errors like this: I duno why I get them, but if some1 could please help me fix the problem, I would greatly appreciate it. ------ Build started: Project: Dales Name Genz0r Beta, Configuration: Debug Win32 ------ Compiling... stdafx.cpp C:\Program Files\Microsoft Platform SDK\Include\mfc\afxv_w32.h(194) : error C3641: 'DrawState' : invalid calling convention '__stdcall ' for function compiled with /clr:pure or /clr:safe C:\Program Files\Micros ...Show All

©2008 Software Development Network