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

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

ulven

Member List

programmer01
BirgitZ
Alvin tiow
Vishal Shah
GregAbd
WillySnowMan
sirpelidor
Rick Spiewak
Ryan Garaygay
andyedw
Can-Ann
Ken Corbin
Tom from cener.co.uk
Sen_p_kumar
U_T_A
zoomer
harkat1
AlexBB
dannyg_uk
Yaakov Ellis
Only Title

ulven's Q&A profile

  • Visual Studio Disabling packages

    In the course of evaluating pre-release versions of several add-ins I've often been presented with an error message from VS asking to disable a misbehaving add-in or "package". One example is disabling the built-in unit testing support. This has piqued my interest in how to achieve this manually. Why There are many add-ins I use that provide overlapping functionality. ReSharper, for example, provides really nice code snippet support and refactoring. But ReSharper doesn't disable the built-in functionality it replaces. How do I do this How do I disable things like code snippet & refactoring support And yet there's obviously a way to disable packages that are not add-ins otherwise users would not b ...Show All

  • Smart Device Development Receive data from a web server in Compact Framework

    I'm developing an application for a PDA and i want to read a text file (that i have uploaded on a web server) and store every line in a String Array on the PDA. In .NET Framework, it can be easily done with webclient class but Compact Framework doesn't support this class. How can i receive/open a file uploaded on a server in Compact Framework Thanks, Socrates On NETCF it's done by using HttpWebRequest class. This is a common question, please search or look it up on MSDN if you'd like a sample. ...Show All

  • SQL Server Copying databases

    Hello,   I'm attempting to launch a new ASP .NET site and I'm having problems moving my database, caused I'm sure by my own ignorance. I built the database in SQL Server 2005 Express but found that I couldn't use it to copy the database to the deployment server, so I uninstalled it and now I'm using a 6 month trial version of SQL Server 2005 Enterprise Edition. The server to which I want to copy my database is SQL Server 2003 (version 8.0.760). My first attempt succeeded in uploading the tables and their data, I then used the "Generate Scripts" command to produce a large query detailing how to create my stored procedures, I ran this script on the destination server and it eventually worked ok. However, for some reaso ...Show All

  • Software Development for Windows Vista Multiple NTVDM.exe

    I work for a corporation(TimeManagement Corporation) that uses a 16 bit application that runs in the virtual dos machine. Two years ago Microsoft released a security patch(MS04-012) that caused each new 16-bit file to open in it's own ntvdm thus not allowing our 16-bit application to communicate with other files that it calls. We contacted Microsoft about this but it was not taken care of until we posted on a forum. They then released a hotfix(KB841559) to fix this issue. We are now having the same problem with MS Windows Vista and would like to know if we can get a fix for this issue to allow our program to be compatable again. Possible scenarios where an app might be invoked in a new NTVDM are app ...Show All

  • SQL Server should be simple - FLAT FILE - HEADER / DETAIL LINES

    I can't believe it's been a few days and I can't figure this out. We have a flat file (purchaseOrder.txt) that has header and detail lines. It gets dropped in a folder. I need to pick it up and insert it into normalized tables and/or transform it into another file structure or .NET class. 10001,2005/01/01,some more data SOME PRODUCT 1, 10 SOME PRODUCT 2, 5 Can somebody place give me some guidance on how to do this in SSIS The problem I see is that SSIS does not handle flat files with an uneven number of columns very well. Flat File and uneven number of columns: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1134754&SiteID=1 Perhaps you can use a flat file source with on ...Show All

  • SQL Server about Db table cell setting

    How do I enable multiline on data table rows (cells) When I press enter the cursor jumps to the next cell and no the next line in the same cell. Thanks ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. hlsl file problem?

    hi all, i fined flag effect fx file in internet, i tried use fx file in my game. But i can't draw effect in my display. Below is my source code, Hope somebody can help me fix this bug. fx file code ========================= string XFile = "flag.x"; // model int BCLR = 0xff000000; // background colour texture Tex0 < string name = "EuropeFlag.jpg"; >; // transformations provided by the app as input: float4x4 matWorldViewProj: WORLDVIEWPROJECTION; float4x4 matWorld : WORLD; float time: TIME; struct VS_OUTPUT { float4 Pos : POSITION; float2 tex : TEXCOORD0; }; VS_OUTPUT VS(float4 Pos : POSITION,float2 tex : TEXCOORD0) { VS_OUTPUT Out = (VS_OUTPUT)0; float angle=(time%360)*2; ...Show All

  • SQL Server Localization and BUILTIN groups

    Is there a synonym for the group BUILTIN\Users which can be used for GRANT ... TO and sp_grantlogin/sp_grantdbaccess, but which will work on localized computers I have a number of automated unit tests I wish to run on two different computers. The process involves recreating a database if it does not exist and then granting access and privileges to the BUILTIN\Users group. The problem is that one computer is installed with a Swedish Windows XP Professional (the users group is called BUILTIN\Anvandare) and the other is an English WinXP MCE (the group is called BUILTIN\Users) so I cannot easily script this. An alternative is to be able to retrieve the respective name through a .NET class or the Windows API. Is any of this possible ...Show All

  • SQL Server Timeout exception during long running stress test

    Hi, We have built two testing apps for sending and receiving files across the network reliably using SQL Express as the database backend. The apps seem to be working fine under light load. However during stress test, we always get the following exception: "System.Data.SqlClient.SqlException: Timeout expired. The timeout period elapsed prior to completion of the operation or the server is not responding." During stress test, both the sender and receiver are running on the same machine. Sender creates file fragments, store them in the sender database and then send out to the network. File fragments will be deleted from the sender database when the sender receives acknowledgement from the receiver. ...Show All

  • .NET Development .Net Framework 1.1 vs 2.0 (Does Installing .NET Framework 2.0 Make Installation of .NET Framework 1.1 Unncessary?)

    Hello all, I have been spending a good deal of time trying to figure out the implications of the .Net Framework 2.0.  Unfortunately, most of the resources I have found do a great job of talking around the subject, without really talking about it.  One of the most common statements made is that 1.1 was a Rapid Application Development (RAD) environment while 2.0 is more of a platform.  What does this actually mean to the programmer   Is it just a fancy way of promoting WinFX (which has strong ties to the .Net Framework platform) From what I can tell, the .Net Framework 2.0 is a replacement for 1.1, however I still see the majority of development happening in 1.1.  Is this because 2.0 is still ...Show All

  • Visual C++ How to use Regex class into MFc dialog based application

    Can anyone tell that how to use class Regex in mfc dialog based application created in vc++(2005). Any help is appreciated. Have a look at http://www.codeproject.com/string/mfcregex.asp . Also note that there is a MFC newsgroup at http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.vc.mfc&lang=en&cr=US , where the strictly MFC questions are far more likely to be answered than here. ...Show All

  • SQL Server AWE upper memory limit

    Hi, I have a question that I hope someone can help me with. I am running SQL Server 2005 on a Windows 2003 Standard edition (x32). I have 6GB of memory in it but have realised that Windows can't use more than 4GB (I have enabled /PAE and /3GB in the boot.ini). My question is: Can SQL Server make use of the extra memory I have in the server Otherwise I guess it is pointless having more than 4GB in there. Thank you for your help! Kind Regards Stefan Ghose Hello Stefan - The way memory is used between 32-bit processors, the various Windows operating systems and SQL Server can be confusing. Because of 32-bit architectures and software design decisions, the first 2GB of RAM in a Win ...Show All

  • SQL Server Cannot connect to SQL Express from WEB Application on internet

    Hi, I have installed SQl express 2005 SP1 and then configured it to accept remote connections which works within my internal network. I can connect other client stations within our internal network. However, when i try to connect to the database using a VB.net web application, the application cannot connect to the database. I have a hardware firewall which configured to foward port TCP 1433 and UDP 1434 to the SQL express server. I have also carried out a telnet communication to ports 1433 and 1434 and able to communicate on port 1433 and get an error message cannot connect to host on port 1434. What am i doing wrong Thanks To make Remote Connections available on SQL Server Express E ...Show All

  • SQL Server Too long text and sorting does not work.

    Hello : If the title of a column is very long and the sorting is active, the posting is not good. The image of sorting is not posted(shown   You met this probleme. Thenk you.   Use Rectangle in the column title. Go thru the topic Using Rectangles to Control Item Growth and Displacement to get clear idea on it. Hope it helps. Cheers ...Show All

  • Visual Studio 2008 (Pre-release) hide partially shown listbox item

    Hello Is there a way to hide listbox item that is only partially shown At the moment last item in the listbox is shown partially when window is not just the right size. Thanks, Kalle Do I need to create my own ItemPanel The default ItemsPanel for ListBox is VirtualizingStackPanel that implements IScrollInfo. I could retrieve the VirtualizintackPanel but all the values seem to be null, 0... : VirtualizingStackPanel panel = (VirtualizingStackPanel) MyListBox.ItemsPanel.LoadContent(); IScrollInfo scrollInfo = (IScrollInfo)panel; Thanks Kalle ...Show All

©2008 Software Development Network