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

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

newbnet

Member List

Vishwanath
absolute_magic
Isolated
seve7
DanielRehn
Paul_French
Gilles Gilles
Denis Ruckebusch
Mulktide
markiemooster
ThePerfessor
Johan Olofsson
PrashantAtlanta
Scott Francis McGrath
Oliver Michalski
Suzanne Paradis
AbhishakeL
Melchior91598
dharmendra singh
Gino Abraham
Only Title

newbnet's Q&A profile

  • Visual Studio 2008 (Pre-release) xaml in IE6 only animates on startup screen on multimonitor

    I'm wondering if this is just a problem with my setup or if others have this problem. If you have a multi-monitor setup Take a xaml file like this: < StackPanel xmlns = " http://schemas.microsoft.com/winfx/2006/xaml/presentation " xmlns:x = " http://schemas.microsoft.com/winfx/2006/xaml " TextBlock.FontSize = " 18pt " > < UniformGrid Rows = " 3 " Columns = " 3 " Width = " 450 " > < Button Content = " Button 1234 " /> < Button Content = " Button 1234 " /> < Button ...Show All

  • Visual C++ Boolean Conversion

    <wdhough@discussions.microsoft.com> wrote in message news:d1b20b55-fc8e-4827-80c8-37a552c78681@discussions.microsoft.com > I use the following code to convert an integer into a CString > > int i = 9; > CString s; s.Format(L"%d",i); AfxMessageBox(s); > > I was wondering what changes need to be made to this in order to > convert a boolean   I realise i can just put the boolean in there as > it is, which would return me 0 or 1, but i wanted to see if there is > a conversion i can do such that the CString is set to false or true. bool b = ...; CString s = (b "tru ...Show All

  • SQL Server Run entire package

    Hello, i have a problem that i don't understand why it occurs: i have a package like this (resumed and ordered by its correspondingdata flow): 1. move data files to a path through by a file system task 2. import data of data files to a sqlserver database (each file through its own data flow ). The origin of data is in files that have been moved to the path of step 1 3. execute a procedure of database ( sql task ) to manipulate data and finally export resume ( data flow ) to a new file in the path (moved by other file system task ) PROBLEM: if i execute the package task by task (one by one), it runs ok, but then when i build ...Show All

  • Visual C# Constructor Chaining in C#

    Dear All, I am actually new to Object Orientated Programming. I was just studing about Constructors  and I came across the concept of Constructor Chaining.Can some 1 explain me about what is this constructor chaining.I know it means that we can call one constructor from another constructor. I have tried 1 example which is as follows: class Class1 { private string e_name,e_JobTiltle,e_Address ; private Class1( string name, string Title) { e_name =name; e_JobTiltle=Title; } private Class1( string name, string Title, string Address) { e_name =name; e_JobTiltle=Title; e_Address = Address; } Now how can I impleme ...Show All

  • SQL Server Displaying Character Format in Numeric Field

    I have a Calculated Member that displays values of 999.0 when the calculation cannot be computed based on certain criteria. I would like to be able to format the numeric field so that is displays a character such as "X" when the value of the Calculated Member is 999.0. Does anyone know how to do this ...Show All

  • .NET Development Possible bug? FileIOPermission failed

    I think the following code should throw an SecurityException if I run the code from a network path. But it does not. try {     FileIOPermission perm = new FileIOPermission(PermissionState.Unrestricted);     perm.Demand(); } catch (SecurityException ex) {     MessageBox.Show("Sorry, you can only run this application from your local disk.", "Security Error", MessageBoxButtons.OK, MessageBoxIcon.Error);     return ; }   And another problem I found is that I do not need to call Demand() to let SecurityException be thrown. Look at the following code: FileIOPermission p ...Show All

  • Visual FoxPro Form Feed Character

    Hello Experts: I am using FPUTS to write text to a file. At the end of each page I need to insert Form Feed Character. How can I do this I normally work them from memory but any decent ASCII table would show it. Here's one I found through Google: http://www.lookuptables.com/ ...Show All

  • Visual Studio Team System Source control for non.NET environment

    We have several COBOL programmers that store their source code in a home-grown source control system. Their filenames are a max of 8 characters; no file extensions are recognized, and it's not COBOL.NET so many of the features in TFS would be wasted on this code. Still, I'm trying to integrate their code with TFS so we have a company-wide source code control system Here's how I integrated their source code: 1. I created a .NET project 2. I added a new folder under this project, just to house their source control (to isolate their code from .NET files) 3. I created a new Team Project 4. I added the Solution in 1) to TFS So ...Show All

  • Visual Basic Making a picturebox have a transparent background

    I have a picture of a panda with a pink background (panda_down.bmp) and I was wondering: how do I get that pink background to be transparent Draw the image yourself in a paint handler, and use the imageattributes class to make 255/0/255 ( magenta ) transparent. ...Show All

  • Windows Forms Service writing text file

    Hello all, I just wrote my first Windows Service using VB.NET 2003 and i have a small problem. In the service i am trying to write a text file to a mapped drive but it doesn't work. I know the service works because if i change the path to my local hard drive, it works ok.  Currently, i've got the service running under the LocalService ac ...Show All

  • SQL Server Is 64 bit excel driver (of office 2003 or office 2007) available now?

    Hi! Today we moved from 32bit to 64bit computing environment.  64bit Window server 2003 and SQL 2005 are now our playing ground. And 32 bit Office 2003  is also installed.  Excel  in  Office program plays  important roll in our mission.  One of our routine task is that  step 1. get  Excel data files  from other websites and step 2. extract specific data from them and step 3. converting them into some type of data that can be compatible  with SQL Our problem occured in step 3.  To convert data, we realised taht  64 bit ...Show All

  • Visual Studio Express Editions Cannot open file.

    Okay I click new project , then I click windowed application and then finish. all works fine then I push F5 to build. I get the following information in a dialoge box. ------ Build started: Project: zane, Configuration: Debug Win32 ------ Compiling... stdafx.cpp c:\program files\microsoft platform sdk for windows server 2003 r2\include\windows.h(157) : fatal error C1083: Cannot open include file: 'excpt.h': No such file or directory Project : warning PRJ0018 : The following environment variables were not found: $(ProgramFiles\Microsoft Platform SDK\Include;$(VCInstallDir) Build log was saved at "file://c:\Documents and Settings\Owner\My ...Show All

  • .NET Development inline query vrs sqlcommand duration

    Hi, I am migrating a client-server application to a N-tier using webservices. Now client connect to the server using webservices which execute queries to a SQL Server 2000 database. The old application was using inline queries (" WHERE CustomerId = '" + customerId +"'";.... Now I am using SqlCommands but I have detected a real slow down in the performance, running a query that retrieves 7000 records for example it takes upto 16 seconds more than older application. I suspected that was because of the XML serialization so I moved to remoting with binary serialization and reduced the time to 8 seconds, still way too ...Show All

  • Visual C++ vc++8.0 bug: access violation upon call of any CImageList methods

    I have sucessfully imported and compiled a complex MFC 6.0 project from vc++6.0  into vc++ 8.0 (MFC 8.0). It contains several subprojects (libs and dlls). In vc++ 6.0 those project linked MFC6.0 statically and after I imported it to vc++ 8.0 I set the linkage of MFC8.0 to "shared". However when I try to compile and link the project in vc++ 8.0 in release mode (debugmode works fine) I get an acess violation in afxcomctl32.inl. This happnes whenever I call any of the CImageList methods. When I comment out all lines that call mehtods of CImageList everything work fine in release mode too. When I look at the disassembly the crash pattern i ...Show All

  • Visual C# Using C# with Visual C++.Net

    I have Visual C++.net 7.0 installed on my PC, but would like to try C#. Is there a way I can integrate the free C# compiler and tools available in the .NET SDK into Visual Studio so I can use it from there Thanks for the replies, guys. The reason I was asking is I want to use SoftWire (www.softwire.com), which needs Visual C#.Net or Visual Basic.Net. All I have is VC++.Net, so I wanted to integrate the C# stuff into Visual Studio to let me run Softwire. Doesn't look like it's possible though. ...Show All

©2008 Software Development Network