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

Software Development Network >> Corinna Vinschen's Q&A profile

Corinna Vinschen

Member List

nhaas
S_Parikh
71EFBB98-D1FE-4eff-BAC5-F94AC74
Jassim Rahma
Scott Croisdale
Robert Kozak
avaya12
tranders
CanadianSprings
Michal Szalai
Vedratna
Mike Koerner
Tanmaya
Kobi Reiter
BunnyStrider
Tension
IB00
Joao Cruz
Lux-
cisfreak2
Only Title

Corinna Vinschen's Q&A profile

  • Visual Studio SSIS runs very slow

    When I open up a SSIS project from Visual Studio it takes a long time to start up and I get the following warning message. Microsoft Visual Studio is waiting for an internal operation to complete. If you regularly encounter this delay during normal usage, please report this problem to Microsoft. Are you extending Visual Studio in any way If so, we would need more details on your implementation to assist in debugging this issue. If not, you might have more success in finding an answer in the SQL SIS forums at http://forums.microsoft.com/MSDN/ShowForum.aspx ForumID=80&SiteID=1 ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. What is the meaning of loadAllContent?

    I'm not sure I understand the meaning of the parameter loadAllContent to the function Game.LoadGraphicsContent. According to the documentation it is: "true if all graphics resources need to be loaded; false if only manual resources need to be loaded." But what are manual resources Thanks in advance, Per Rasmussen. You don't have to load the resources, just reassigned the variable for the loaded resources. How would the content manager know what variables you've loaded resources into ...Show All

  • Visual C# Generate the hash code for filename and its content.

    I have a requirement where I need to generate the hash code for a particular filename and its content. If it is only file name then its easy but with content also I am not sure how to go about doing all this. Regards, This would be a perfect scenario for the usage of a File Hash Algorithm such as MD5 or SHA-1 or Whirlpool.The framework has some built in functions to generate these for you, look under System.Security.Cryptography for the classes that will generate these hashes. I'll let you decide which is best as the subject of file hashing can be very complex, and you really don't want to build your own unless you are a whiz at crypto and mathematics, but basically they will create a semi-unique fixed sized string based off of ...Show All

  • SharePoint Products and Technologies Permissions per file

    Hi As I understand it, permissioning in Portal 2003 is applied on a per document library basis - is there any way to leverage more granularity out of this Here is my scenario: We have 100 sales staff, and want a way to keep their performance data on Sharepoint (2-3 Excel files per salesperson). We want them to see their own data, but our sales manager to see all data. Also some people may see others data (line managers, etc). Currently I am storing this on a file-server, using NTFS permissioning. I would prefer to fully integrate this into Sharepoint. We currently run Portal Server 2003. Many thanks for helping a noob. Short answer - not out of the box. Long answer - take a look at: ...Show All

  • Visual C# Convert a byte array to a short array?

    I have the following code that reads a number of bytes into an array then copies them into an array of shorts. // nInt16 is the number of 16 bit integers in being read in the form of bytes // br is a BinaryReader byte[] data = br.ReadBytes(nInt16 * 2); short[] arrInt16 = new short[nInt16]; Buffer.BlockCopy(data, 0, arrInt16, 0, nInt16 * 2); Is there a way, in C#, to read the data into a byte array and then "point" an array of short to it instead of copying the data Similar to what can be done in C++. (I realize that arrays in C# and C++ are totally different data structrures) Thanks. David Have you tried: BitConverter.ToInt16(); function Best Regards, Rizw ...Show All

  • Visual Studio 2008 (Pre-release) Resize Elements inside the canvas

    Canvas contains some UIelements like rectange, ellipse, button etc. I would like to resize child elements, when the canvas is resized. I'm able to resize the Canvas using Adorner. Can someone suggest me the general approach to resize any element that located inside the canvas. for e.g <Canvas><Button>Test Button</Button></Canvas>. In this case Button element should be resized with respect to the canvas. Thanks in advance, Venu Chimme, U R THE MAN. It took a while to find this i knew there was an easier way than window.resize thx very much for ur post, saved a lot a time for a newbie ...Show All

  • Visual Studio Express Editions trivial question : passing data between application forms ?

    i am using this approach to pass data and variables between application forms ----------------------------------------------------------- form2 class public Form2( string strTextBox) { InitializeComponent(); string strPass = strTextBox; } form1's button click event handler private void button1_Click( object sender, System.EventArgs e) { Form2 frm= new Form2(textBox1.Text); frm.Show(); } ------------------------------------------- In form2 how to make the variable strPass visible by other methods and fucntions in this form so i can use it i tried to use "public" keyword as i know but it produces an err ...Show All

  • SQL Server trying msmdpump.dll to msmdpump.dll getting xml parsing error at line 1: '>' expected

    hi, I am creating a PoC to access cube via http. The setup is as follows - Machine: m1 Domain X ( trusts Domain Y): Analysis Server 2005 IIS Server ( msmdpump.dll) Machine m2 Domain Y IIS Server (msmdpump.dll , msmdpump.ini is configured with server parameter to http://m1/olap/msmdpump.dll ) User from domain Y are able to access http://m1/olap/msmdpump.dll User from domain Y get following errror while accessing http://m2/olap/msmdpump.dll XML parsing failed at line ..: '>' expected. any pointers on possible cause or how to debug this , highly appreciated. Thanks. To my opinion many of the HTTP connectivity issues come from the fact that there are quite a few configuration pieces invo ...Show All

  • Visual C# typeof keyword for properties, fields, methods

    Why don't Microsoft implement some sort of "typeof" for properties, fields, methods etc For example, lets suppose we have "propertyof" keyword, then we can do the following: PropertyInfo pi = propertyof(MyClass.MyProperty) I will try to explain how this can be used. Lets suppose we have the following method to fetch data from the database: BizEntity[] e = bll.ExecuteQuery("type of the business object", " property name of the business object", ....); It takes as first parameter name of the business logic entity which objects I want to get, and other parameters are names of the properties I want to be loaded of the fetched objects (suppose we have a delay loaded business objects). I can rewrite th ...Show All

  • Visual C# HowTo: Synchronize the local system time with server time?

    What is the easiest way to synchronize the local time with a server time I tried to find a thread, but unfortunatly I only get results in Visual FoxPro forum. Is there some sample code avaible please Thanks, Andreas Here is the answer, feel free to use the code. If you find errors or if you have suggestions how to make it better please answer my post (I'm not experienced in Interop). using System; using System.Collections.Generic; using System.Text; using System.Runtime.InteropServices; using System.ComponentModel; namespace GF.Clock {  /// <summary>  /// Statische Klasse zur Behandlung der lokalen Systemuhr  /// </summary>  internal static class NativeMethods ...Show All

  • Visual FoxPro accessing a foxpro table on my website

    I have a simple FoxPro table sitting on my website. I need to read and write data to it in an standalone application on my pc. I can get to where I can read the data but I cant change the data. Any help would be greatly appricated.   It doesnt have to be fancy I just need a simple way of doing it. Thanks I was in the process of following a suggestion from his site of simply using the USE statement to access the table on the website. That would seam to be all that I need and all works well except that when I attempt to write back to the table it says that it is "Read Only" I have it added to the data envitoment of the form. Any suggestions ...Show All

  • SQL Server TargetQueue get disabled automatically ?

    I have a weird problem going on : my SB configuration involves 3 servers. Server A sends a message to Server B. there's a stored proc on Server B that is being activated (using Activation), does some processing and sends the message to server C. on C there's another SP that is activated and it's supposed to insert a record into a table. My problem is that on Server C, the record doesn't get inserted when activation is set to ON. when activation is off on C and I run the proc manually, everything works fine, but when activation is on, the record doesn't get inserted. after this happened I tried to fire the proc manually and I got the following error : Msg 9617, Level 16, State 1, Procedure spMSG_ReceiveMessagesOnSubscriber, Line ...Show All

  • Visual Basic Advanced Query

    I want to call an update on a Access database from the TableAdapter, is their another way to do it. I'm currently looking to TableAdapter.Update( I just want to add a string for the update, like normal SQL. Not the built in functions. whats the error message constructing strings like this is potentially dangerous and inviting a sql injection attack. If you dont know what that is do a simple web search on sql injection. For the sql command object use the parameters collection to provide type specific parameters for the sql statement. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Day 1 - Where you at?

    So day 1 of the XNA madness has come to a close, with many more to follow. How far has everyone gotten on their first game projects I haven't spent nearly as much time as I wanted to on this, but I managed to get my head to bounce around the screen. I think the next step would be to add another head (i.e. angelina jolie) to bounce around. Maybe I'll even add collision detection so that if the heads hit, she says something like "I want you so much!" and I go "Yeah, whatever" and bounce. ...not sure if I should have mentioned the idea for this game...now everyone's going to steal it and make millions. But enough about my awesome game in the works. If anyone has anything worth checking out, upload it somewhere and post the link in this th ...Show All

  • SQL Server The attempt to connect to the report server failed

    I have RS running on Standard server 2003 I receive the follow when trying to access the main page. The attempt to connect to the report server failed. Check your connection information and that the report server is a compatible version I can view reports from the location below just not view the main page. servername/ReportServer works fine included error log file 01/02/07 18:10:34, ERROR , SQLDUMPER_UNKNOWN_APP.EXE, AdjustTokenPrivileges () failed (00000514) 01/02/07 18:10:34, ACTION, SQLDUMPER_UNKNOWN_APP.EXE, Input parameters: 4 supplied 01/02/07 18:10:34, ACTION, SQLDUMPER_UNKNOWN_APP.EXE, ProcessID = 2364 01/02/07 18:10:34, ACTION, SQLDUMPER_UNKNOWN_APP.EXE, ThreadId = 0 01/02/07 18:10:34, AC ...Show All

©2008 Software Development Network