Software Development Network Logo
  • Game Technologies
  • Smart Device
  • Visual J#
  • Visual FoxPro
  • Architecture
  • SQL Server
  • Windows Live
  • VS Express Editions
  • Visual C++
  • Microsoft ISV
  • Windows Forms
  • Visual C#
  • .NET Development
  • Visual Studio
  • VS Team System

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

FrankenJeroen

Member List

Indigo Blues
foto_robin
oregonasian
Norman Headlam
Tect-PeM
Jim TheGreat
Terkamian
Notre
Ryan Osman
samperiau
Nate Dogg28871
old_nick12
fozia
zx225
Ljones27
pauleley
pri
Hardik Mehta
noicamz
John Mollman - MSFT
Only Title

FrankenJeroen's Q&A profile

  • Windows Forms Setup option to start installed program

    Simple, how do I tell my setup project, in Visual Studio 2003 or 2005 to bring up a dialog box, or button to allow a person installing a program to run that program after setup has completed Thanks, ...Show All

  • Software Development for Windows Vista Vista networking

    Not sure if this is the right place to ask, please redirect me if not. I have just installed the Vista beta and can't connect to the LAN or the internet. the adapter is detected and working properly. It is configured for a static IP. I know that those settings are correct. I have turned off the windows firewall and still can't connect to any server resources. I am not trying to connect to a domain, just access a shared server. The server has the same username and password as the Vista PC. I have tried to ping the servers and the request times out. I previously had XP installed on the same machine, with all the same IP settings a ...Show All

  • SQL Server can I get the Parent task in a custom data flow task?

    I'm building a custom data flow task to handle errors in a generic way in C#. I want to output the Task name (the name of the Data flow) as well as the Task name that is inputting data into my custom task.         Is there a way to get both the task name and the previous data flow task name that's inputting the data THanks in advance, -Chris PS, the VariableContainer didn't seem to contain any of the system variables- ex. the below statement returned false. this.VariableDispenser.Contains("System::SourceName") Are you talking about a control flow task ...Show All

  • Visual C++ set_terminate doesn't work (VS2005 beta 2)

    I have a program which is generating an exception somewhere and terminating, but I don't know where.  In order to find our, I added a call to set_terminate(), but it doesn't work.  To test it, I am doing this: set_terminate(TerminateHandler); throw "Test"; I understand that set_terminate does not work if the process is being debugged (which is very impractical and frustrating, BTW), so I am testing without the debugger present.  When I run my program, I get a message box like this at the point I call throw: Microsoft Visual C++ Runtime Library Runtime Error! Program: This application has requested the Runtime to termina ...Show All

  • Visual C# Searching a csv file

    Hi, I am trying to search a csv file until it hits a null value. The csv file is set up in such a way that I can search line by line until the first cell is blank (MB/Code). At the moment I just want to find this null cell and get the program to return the value, and then I can find the Res-Code and do some further calculations. Below is an example of the file I am searching. MB/Code Description Res-Code D desc1 D01 desc2 D0101 desc3 A001023 Thanks, Scott here's a few pre-done bits. http://www.heikniemi.net/hc/ar ...Show All

  • Windows Forms Email from app

    How do I setup a linklabel in my Windows form to use outlook to send email  I'm assuming this is much different than doing from a web page. Robert Have you added the reference to System.Web.dll   This involves more than the Imports/using directive at the top of your code file.   Under the solution explorer there is a category called&n ...Show All

  • Visual Studio Express Editions What to do?

    A little story: - I have on my computer 2 OS (Windows XP SP2 - with all the things: .NET Framework 2.0, Visual Basic Express Edition 2005, all updates and Windows XP SP2 - without .NET Framework and Visual Basic) I maked a program in Visual Basic (ok...is running) but on the other OS (without .NET Framework) is not running.What I can do to make the program running on all computers without installing .NET Is necesary .NET or no If is necesary I most return to the classic Win 32 Programing. :-( ...Show All

  • Visual Studio 2008 (Pre-release) AsyncCallback threw an exception

    I have created WIndows Service & deployed it on Win 2003 Server. This service just has Add/Multiply function. My WCF client is noramal WEB App. which is consumming this service the Service returns me the Result but after proxy.End MethodName ( IAsyncReslt ) gets executed it gives me the Error saying AsyncCallback threw an exception. Can anyone please help me on the same. Following is my Web Page Code. public partial class _Default : System.Web.UI. Page { NTServiceProxy p; protected void Button1_Click( object sender, EventArgs e) { PageAsyncTask task = new PageAsyncTask (BeginInvoke, EndInvoke, EndT ...Show All

  • Smart Device Development .NET Compact Framework 2.0 Guidance and Documentation is Pitiful

    I would like to know if you are finding this to be a problem also see: http://realworldsa.dotnetdevelopersjournal.com/net_compact_framework_20_guidance_and_documentation_is_pitif.htm   Check out this old sample by Ron Hovard on how to use SOAP extention for encrypting messages. http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnaspnet/html/asp09272001.asp http://www.gotdotnet.com/team/rhoward/ I've not tried it on CF, but I think it should work. ...Show All

  • SQL Server Uploading File in a different environment

    This is the first time i'm using reporting services, but need it to work for my graduation next week, i hope someone can help me with this. In our Test Area i created a report (.rdl) with Visual Studio 2003.NET with reporting services (standard). This report connects to a sql-database on a different server in the test area. Here it works fine when i upload the rdl file in de reportserver. But now i'm implementing it at the Production Area and I took the same rdl file from the test area and changed the data source connection strings and the database names. I get this error message: query execution failed for data set "WUG ...Show All

  • Visual Studio Team System Custom UI to when double clicking an Issue in the results pane

    Once FxCop is finished running all the rules, i'd like to be able to show a custom UI when i double click the Issue created by my custom rule.  I noticed in the FxCopUI.dll there was a CustomAction class, along with an enum of Triggers.  Can these be used to hook the event and show my UI vs the stock FxCop UI Hi John, The CustomActions code is the code we use to show IL when rightclicking a target, further we use it for hooking our test code into fxcop. It is not meant as a general purpose plugin architecture, I would not depend on this functionality as it can be broken or completely gone in any fu ...Show All

  • SQL Server setup.exe /qb REMOVE=ALL instancename=test

    Hello , I am using MSFT SQL Server 2005 (v 9.00) and have 3 databases listed under Database when I launch SQL Mgmt Studio These are: Deva, Devb, Test I have to UNINSTALL and REMOVE only the TEST instance. I did following: setup.exe /qb REMOVE=ALL instancename=test I launch the above from C:\Program Files\Microsoft SQL Server\90\Setup Bootstrap> but it does NOT UNINSTALL that TEST instance... can anyone please help me on this Whats the BEST WAY to remove a DB Instance via COMMAND LINE.... NOTE: I have to use COMMAND LINE only to uninstall... please help THANKS! Mr. Bombay ...Show All

  • SQL Server Bulk Insert Unicode

    Good day, We are using bulk insert with a formatfile to load a text file into sqlexpress. One field in the text file contains non-ascii (unicode) charaters and the corresponding database field is nvarchar. When the record and row are specified in the format file as: <FIELD ID="23" xsi:type="CharTerm" TERMINATOR="\t" MAX_LENGTH="400" COLLATION="Latin1_General_CI_AS"/> <COLUMN SOURCE="23" NAME="FullName" xsi:type="SQLNVARCHAR"/> the value "Boca Cura" gets imported as "Boca CurA!". This is true even with datafiletype set t ...Show All

  • Visual C# Hosted control crashes IE unexpectedly

    We have a hosted user control that sometimes crashes IE when disposed. The nature of the crash varies. Sometimes Windows throws up a 'program needs to close' box, and sometimes the browser just closes without ceremony. The control uses Ink and appears to work fine on a tablet PC, but when used on a desktop machine (making use of a Registry modification to enable Ink emulation) it is very unstable. Could you provide some Exception Messages or Source code causing the problem under WinForms x86 so we can evaluate what is going on..If we can, of course.. ...Show All

  • Visual C# Searching a byte array for a pattern of bytes

    I am reading a binary file into a one dimensional byte array. Now I need to search that array for a pattern of bytes. In other words, this is the equivilent of String.IndexOf() I want to search the binary array and return the index of the subvalue that I searched for. For whatever reason, I'm having trouble wrapping my head around this. Can anyone give me an example of how to achieve this byte[] b = new byte[AnyLength]; for (int i = 0; i < b.Length; i++) { if (b[ i ].ToString()=="Any Value") { // Do the work here } } ...Show All

©2008 Software Development Network