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

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

elittle27

Member List

moveit
Tom25
jchau
masta
breceivemail
Miao1106
killfr0g
Peter Chapman
polymorphicx
vtortola
ION T
Adam Covington
RR06
nextpaco
MeAndYou
zdrae
gdylp
Corby111
Shrek.NET
Kobingo
Only Title

elittle27's Q&A profile

  • SQL Server Displaying images that are accessed through URL

    Hi, I have trouble displaying images that are accessed through URLs in my report. If I call the URL directly in the Browser the Image can be opened without problems. The images can be accessed with an anonymous access. When I deploy the report or in the Preview of Visual Studio I get the following message: [rsWarningFetchingExternalImages] Images with external URL references will not display if the report is published to a report server without an UnattendedExecutionAccount or the target image(s) are not enabled for anonymous access. In Layout View of Visual Studio the image is showen correctly. The Images are stored on a Solaris maschine with WebSphere 6.0 as WebServer. Any ideas Thank you. Frank ...Show All

  • SQL Server Problems in calling SQL Server 2005 Web Service asynchronouslly!

    I have created a SOAP/HTTP end point which returns .NET DataSet ( ... FORMAT = ROWSETS_ONLY ... ). Then I created a proxy class using Visual Studio 2005 and wrote a cusumer .NET class in which I call that web service's method synchronously. Everything is Ok but when I call asynchronously "TargetInvocationException" is raised. I need urgent solution to this problem. Thanks ! Got this to work on my end, here is a simple example: 1. Create test database, endpoint, procedure and webmethod: create database testDb go use testDb go create endpoint testEndpoint state=started as http (path='/testUrl',authentication=(integrated),ports=(clear),site='*') for soap (batches=disable ...Show All

  • Visual Studio Express Editions About NEtFrameWork

    I am using win. visual studio 2005 and i am trying to do an application. But my application doesnt work without Netframework 2.0 How can my application works in all computer without netframework. Please reply.its very important Sorry for my bad english. It cannot work without the framework. it must be installed on all of the machines your projet is unstalled on. Generally this is part of the installation of your project. ...Show All

  • Visual C# Open multiple files within the same EXE

    I am trying to recreate functionality commonly seen in other applications. For example... If I open a file in photoshop, and then open another, it opens the second file in the first running instance of photoshop instead of spawning a new instance. Similarly, firefox can open urls in new tabs even when the urls are called from other apps instead of starting a whole new firefox instance. Right now I have recreated this functionality by detecting a currently running instance of my app upon app startup and then using IPC to send parameters that are then processed by a thread running in the primary instance. This works, but it seems like there must be an easier way. When I click on a second file to be launched by my app, I briefly see 2 instanc ...Show All

  • Visual C# Using GDI+ to shape forms

    Could someone help me with some code or tutorials on how to shape my form at the top right and top left ...Show All

  • .NET Development Is this only possible in XPath 2.0

    I can't fugure out how to write an xpath to do the following in xpath 1.0: Doc < Plane > < Seats Number =" 1 " Window =" No "/> < Seats Number =" 2 " Window =" Yes "/> </ Plane > I would like to concatinate the @Number & @Window fields on each node set returned Desired Results: 1^NO 2^Yes The problem is if I use concat in xpath 1.0 I only get a single string result. Any ideas I guess this may be simplified to translate(concat(   normalize-space(concat(/*/*[1]/@*[1], ' ', /*/*[1]/@*[2])), '&#xA;',   normalize-space(concat(/*/*[2]/@*[1], ' ', /*/*[2]/@*[2])), '&#xA;',   normalize-space ...Show All

  • .NET Development TcpClient.BeginAcceptTcpClient / Socket.BeginAccept / all other variations...

    First, I'm sorry for the cross-post...I didn't see the networking forum, so I posted into the vb.net forum. I've been having a problem with the use of any of the async methods of TcpClient, Socket, etc eating >95% cpu after receiving the first connection. I've been working on this for over a week now and I'm unable to find references to this issue anywhere. I've tried every way I can think of to work around this problem. Even if no data is sent or received on the connection....or if I close the received connection -- some unknown thread uses all the available cpu power after the first connection occurs. I created a small project that reproduces the problem -- I've zipped it up and posted it here: http://www.profitfuel.net/T ...Show All

  • Visual FoxPro Dot matrix printers with Visual Foxpro

    Hello all, We are in the process of converting an old Foxpro 2.6 (DOS) software into VFP, the problem that we face is that the printing is very slow on dot-matrix printers We cannot shift to laser printer as the stationery is pre-printed and has to be multi-part. Can anybody offer the solution Thanks in advance Open your word document, type some Chinese. See if you have fonts to select, like Kaiti, Songti. Try to send to your dotmatrix printer. If you cannot see regular characters, you have to install a Chinese software. Also test if you can print a Chinese document on a laser printer. ...Show All

  • SQL Server I was fianlly able to install VS tools over the weekend.... Help with installing VS Tools

    Hi, I have a problem with the installation of SSCE31VSTools-ENU.exe into VS2005. The installation ended after a few seconds although in the event log there is information that the product is successfuly installed. However, when I run Visual studio there is no project under Smart Device regarding SQL Compact database or something similar (there are only templates for: device application, class library, control library, console application, empty project and nothing more) VS2005 is in this version 8.0.50727.762 (SP.050727-7600) In application event log there is: Product: Microsoft SQL Server 2005 Compact Edition Tools for Visual Studio 2005 [ENU] -- Configuration completed successfully.'" Has anyone some idea if there is a ...Show All

  • Visual Studio Team System What about Jobs, DTS, Replication?

    Are there any plans to add support for sql jobs, dts packages or replication Jobs and DTS do not represent schema objects, so the answer to this is no. I am not sure what level of support you are looking for from a replication perspective. The main thing we will do is not break replication when we deploy your schema. -GertD "DataDude" Development Manager ...Show All

  • SQL Server SQL Server CE doesn't show in Reference dialog

    I already have VS2005 SP1 installed and after installing : SQLServerCE31-EN.msi SSCE31SDK-ENU.msi SSCE31VSTools-ENU.exe When I create a Smart Device project and and try to add a reference to SQL Server CE only the old version (3.0.3600.0) shows up. How do I get the new one (3.1) to show up A couple of questions to establish your working environment: Is this a mobile or a desktop application Which reference to the sql server ce dlls did you add - the desktop or the mobile dll Double check that you do indeed have a reference to System.Data. The reason I ask is that this sounds like there is a conflict between the version of System.Data you have in your project and the version that is be ...Show All

  • Visual C# Generating a random string of letters

    Hi, this is probably a stupid question, but I cant seem to find the answer. My problem is this: I want to make a program that generates a random string of letters when the user clicks a button (I'm going to use it as a sort of name generator). I was thinking of maby having a string variable, and then a loop that generates a random letter and adds it to the string, until the string is at the desired length. My main problem will probably be getting it to only generate letters of the alphabet. Anyone know how I'll update my version:   public string Generate( int lenght)     {         Random random = new Random();         StringBuilde ...Show All

  • Visual Studio Team System TEAM FOUNDATION SERVER

    Hello. I need some information, We want to use TFS in no .net framework projects, for instance, C/SIDE. How we can do it Thanks. You can install the Team Explorer client separately but there won't be integration with your IDE, unless the IDE supports the MSSSCI interface which would then provide you with source-control integration, see this post for more info about this: http://blogs.msdn.com/bharry/archive/2006/09/07/744993.aspx ...Show All

  • .NET Development .NET 3.0 breaks printing subsystem on non-english XP / VERY ugly effects

    After installing .NET 3.0 on non-english XP two things will break parts of the printing subsystem: - parts of XPS are installed in English, i.e. unidrv.dll / unidrvui.dll / unires.dll etc. are non-localized As a consequence Printing dialogs of all unidrv.dll-based printer drivers show mixed output localized/english. And the default Input Tray is set to 'Automatically Select' even on a german XP which leads to strange effects like printers suddenly asking for paper in the Manual Tray instead of using Tray 1 as usual. - unidrv.dll / unidrvui.dll / unires.dll etc. are Windows Vista DLLs and incompatible with many XP Printer Drivers As a consequence some printer drivers will print all pages of multi-page documents on one sheet, all ...Show All

  • Windows Forms extend binding navigator service

    Hi I want to add two button controls to the binding navigator for query by example first button: filter , in that case , all controls of the form are cleared , and user can enter values in the controls. second button: apply filter, when user click it , the filter which is composed by reading every control value is applied to the base table and data is reterieved. i want to add these services to the binding navigator . can you help me thanks in advance I know what you mean now, try this .textBox1.DataBindings[0].BindingMemberInfo.BindingMember ...Show All

©2008 Software Development Network