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

Software Development Network >> pepa z depa's Q&A profile

pepa z depa

Member List

thuyen
Coco King
M.A.D
Kujp Sucisv
Christiane-Annette
Dinesh BCG
CBurgett
melendez
Devendersys
Room222
Dark Luke
turgay
xfx
Robert Johnson
Rosanna
Musa-1
nkarunatilaka
Curtis Zeiszler
Quadrillion
AIM48
Only Title

pepa z depa's Q&A profile

  • Software Development for Windows Vista Register Windows Vista SDK Beta 2 in Visual C# Express

    Hi folks, I recently installed Visual C# Express. No I downloaded and installed the current Vista SDK. How do I register the SDK now with my Visual C# Express, so that I can add references, etc. The corresponding tool for registering the SDK seems to be working only for Visual Studio 2005 or C++. Not the express edition. Can anyone help please Thanks and best regards, Christian. You don't need to do anything to use the SDK with Visual C# Express. The reistration tool provided with the SDK is only used for setting up Visual C++. It simple sets the Header and Lib paths. ...Show All

  • Visual C# Enum at Runtime

    I have an enum as constructor in one class library. I would like to give the user facility to add enum members at runtime. How can I add enum members at runtime. Please reply as soon as possible. Thanks in advance I saw the below code somewhere: Can anything be done with this code AppDomain domain = Thread .GetDomain(); AssemblyName name = new AssemblyName (); name.Name = " Enum Assembly"; AssemblyBuilder asmBuilder = domain.DefineDynamicAssembly( name, AssemblyBuilderAccess .Run); ModuleBuilder modBuilder = asmBuilder.DefineDynamicModule(" Enum Module"); Enum Builder enum Builder = modBuilder.Defi ...Show All

  • Windows Forms Screen saver event

    Does anyone now how to capture the event when the screen saver fires up using the .NET framework I don't think there is an event associated with the Screen Saver firing up.  However, you can check this out yourself with the following event-monitoring tool (similar to Spy++ but for .NET): http://www.codeproject.com/csharp/controlinspector.asp Tom ...Show All

  • .NET Development How to get a DataSet from DataGrid ????

    How we can get a Dataset from the DataGrid  I even tried DataSet ds = DataGrid.DataSource(). But no result..... Sample Code as follows Private Sub Page_Load( ByVal sender As System. Object , ByVal e As System.EventArgs) Handles MyBase .Load If Not Page.IsPostBack Then Dim cn As New SqlConnection("....................................") Dim da As New SqlDataAdapter(" select * from Customers", cn) Dim dsA As New DataSet da.Fill(dsA) DataGrid1.DataSource = dsA DataGrid1.DataBind() End If End Sub Private Sub Button1_Click( ByVal sender As System. Obje ...Show All

  • Architecture business layer strategies

    Hi All, I am doing research on the all the possible Business layer stratigies(it is be compiled Vs workflow and rule engine or any other idea ).I need to know what all strategies and technologies are there in dotnet to achieve this. If somebody can refer me a good book especially on this topic, that would be of great help regards bhaskar seekbhaskar@gmail.com ...Show All

  • Smart Device Development How do I know what files are required?

    I have a program that I have been working on for some time, and it is almost finished. The problem is that when I reboot the device (not a pocket PC), the program won't run any longer, and it gives no clues as to the reason. If I deploy through VS.net, it works fine, and continues to work until I do a reboot. I need this device to function by itself. How do I know what files I'm missing if the program doesn't tell me Note you can not deploy 'selected' files of NETCF. That won't work because it’s not enough to just copy files and that would be EULA violation. To preserve CAB file after installation please se ...Show All

  • SQL Server need help!!! how to fix pie slices in SQL Reporting Services?

    would it be possible to have a uniform color for pie slices.. i mean if im going to made 3 charts with the same categories, it should have uniform color.... For example: Chart1  +America --    Green  +Philippines -- Red  +India -- Blue  +Japan -- Pink Chart2  +America --    Green  +Philippines -- Red  +India -- Blue  +Japan -- Pink Chart3  +America --    Green  +Philippines -- Red  +India -- Blue  +Japan -- Pink So then, how can i pick color for pie slices in Excel and SQL Reporting Services I need it ASAP!!! Thanks in advance :) ...Show All

  • Visual Studio VS 2005 Integration with MSBuild

    Let me ask the question and then provide some background... How much can we customize an initially VS 2005 generated .csproj msbuild project file without "breaking" the VS 2005 <-> MSBuild integration Background... Forgive me if this this overly general question has been answered elsewhere, but I didn't see anything.  I have just recently begun investigations related to migrating our existing NAnt build scripts to MSBuild for when we move to .NET 2.0.  In our current system, we ask developers to maintain the .csproj files and the nant build files.  However, only the nant build files are really important.  Our bu ...Show All

  • Visual C# Fill a shape

    I have a shape like this shape , and I want to fill it with a color, can someone help me Greets, DIII I don't know why the GDI FloodFill function is not offered in GDI+. You could pinvoke it, or ( assuming you're still working on this drawing program ), you could accumulate an array of points as the user draws, and then use the FillPath function ( from memory ), which takes a Path built on those points and will fill it as well as draw it, with the brush of your choice. ...Show All

  • .NET Development MODI not working with Windows 2003 Server

    Hi, We are developing an application which uses MODI 11.0 type library, which ships with the MS Office 2003, for OCR functionalities. Everything seems to be working fine with the development machines which are having Windows XP SP2. Now we want to install the application in our server machine which runs Windows 2003 Server OS (with SP1). But the MODI doesnt seem to be working in the server machine. Everytime we try running the OCR on a document, it gives me the following error: "OCR was not successful (no text was found) on one or more pages" . The same error shows up when I try to run the OCR with Microsoft Office Documen ...Show All

  • Smart Device Development GPS Sample Latitude/Longitude not correct

    I have a Pharos GPS unit with both the Blue Tooth and USB interface. I used hypertermal on a XP machine with the USB interface to record some raw GPS output. Then I used the file redirect to run the GPS WM5.0 Sample code in VS2005 WM5.0 device emulator. It displays the correct information on the screen Lat 42 / lon 83 when reading the raw GPS data file that I created. When I move the program to my WM 5.0 device and connect up to the GPS unit over BT, I get strange readings for the lat/lon. Lat 0d 42' 24.36 Lon 0d 83' 28.65. They look shifted right. What is degrees show up in the minutes. The number of satellites and time are correc ...Show All

  • Software Development for Windows Vista Access violation errors

    Hi.   I'm trying to make a DirectShow app in C++. I'm using Visual Studio 2005 Express, and I don't want to use .NET for various uninteresting reasons. I can get programmes to compile fine, but every time I try to run them it comes up with access violation errors. I feel sure there's something fairly simple and probably fairly obvious I'm doing wrong, but I really don't know where to start figuring out what that thing is. In this example, the violation occurs when I try to call pGrab->SetOneShot( true );. The really strange thing is that calling pGrab->SetOneShot( false ); works perfectly, or appears to (or rather, ...Show All

  • Visual Studio Team System SQL Server 2005 April CTP - Invalid SSPI Packet Size

    When I bring up SQL Server Management Studio and attempt to connect to the default database using windows authentication, I get a cannot connect error because of Invalid SSPI Packet Size.  If I try again it works.  This is causing me problems installing the application tier.  Does anyone have a clue what I can do to fix this I'm seeing the SSPI packet size error in the June CTP as well.  I've observed it on two different domains.  I opened a bug in the "MSDN Product Feedback Center" (aka Ladybug) with bugid FDBK30644 to reflect that the June CTP did not fix this. If anyone else is s ...Show All

  • Windows Forms Control Resizing In Deployed Executable !

    Hi, I have a wierd problem. I've got a Windows Form with heaps of controls which are within a SplitContainer, which is Anchored in all directions. When i run the application on my development machine (VS2005), either through the IDE or from the deployed site, the SplitContainer resizes as the Form resizes on any resolution, but when the application is run by subscribers on their machine which doesn't contain VS2005, the splitContainer fails to resize as the form resizes therefore, information appears chopped out ! Would anyone have any suggestions have you run it both via clickonce and local deploym ...Show All

  • Visual Studio Problem with Passing Null Date Parameter in Crystal Rep.

    Hello there, I have a problem with passing null values to a Crystal Report date parameter. Previously I am able to pass null value into a Crystal Report date parameter in VS 2003. The method I used is shown below MyCRReport.SetParameterValue("prmDate", null); But the above code failed in VS 2005 Beta 2 stating the the parameter passed in is invalid. Please help. It's great to know that this new "feature" is a design change, but how to we address the problem address by the post ...Show All

©2008 Software Development Network