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

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

DuckPuppy

Member List

nanci ruhl
Gabriel_M
bp457
Jeff Johnson
leamas
djdarkblue
Cesar Dela Paz
namso
Herr Vorragend
RunRockRide
Rhinpoche
SQL AB
denis1900
Mark Wills
frannack
cvuppala1259
domi
Thomas Leirer
Chester D. Tester
Gabriel Kevorkian
Only Title

DuckPuppy's Q&A profile

  • Windows Forms DotNET Newbie

    Im new to .NET and im currently looking at implementing a corporate application using .NET. What security mechanisms may be used and how decisions should be made in order to secure the application. BTW the company is a Windows-based infrastructure with  a policy-based security system in place.  I would suggest you get very familer with AD  ...Show All

  • Software Development for Windows Vista Event cannot be delivered

    We have developed a workflow application similar to the order workflow sample we get this error "Event \"RequestApproved\" on interface type \"RequestLocalServices.IRequestService\" for instance id \"8ce3ae0f-a8f5-4c15-826d-59dfbadf2515\" cannot be delivered." Can any one plz help Which build are you using Where are you hosting the workflow Are you using a state machine or sequential workflow With a state machine if you are not in the correct state yet this can happen. If it is just a timing issue with your state transition you can try setting WaitForId ...Show All

  • Visual C++ ostream::seekp not working.

    After I converted the following from VC 6.0 to VS 2005, the seekp() call stopped working. Can anyone confirm that this is a bug, or have I configured something incorrectly std::osftream myStream; myStream.open( " myFile ", std::ios_base::out | std::ios_base::app ); myStream << < xml version=\"1.0\" >\n<LogFile>\n"; myStream << "</LogFile>"; . . . myStream.seekp( -10, std::ios::end ); myStream << someText; myStream << "</LogFile>"; The clear() has no affect. According to ...Show All

  • Visual Studio VSS 2005 WebService problem

    Hi hi. I'm trying to use the new WebServices in VSS2005. After fiddling around, reading through the forums and doing some more fiddling I've just given up. The problem is authentication. I can open the share from my computer, open the project from the share (with the non-internet version of the VSS plugin) and open the webservice url from my computer. I've tried doing SSL, but the result is the same. If I directly open a project under source control I get "VSS Web Service could not open the database". *but* if I use Open project.. and then use the "SourceSafe (Internet)" option to navigate to the .sln file in the VSS database and open it - t ...Show All

  • Visual C# Find End of DataRow[]

    I am getting an exception because I am running past end of file. How do I check for this Here is a code snippet: DataRow [] myRows1; DataTable myTable; myTable = dataSet21.Tables[ "Table" ]; myRows1 = myTable.Select( "ID > 1" , "ID ASC" ); Do {...stuff } While MyRows Thanks in advance - Dan Works Great! Thanks for helping a newbie Karthik. ...Show All

  • Visual Basic Problem with CStr in VB .net

    Hello! I have a question about using CSTr.Everytime I do it in my decimal number it adds 0 at the decimal part. How can I make it get the true value( no excess zeros) of my number Thanks guys! The following code should produce the same results for you. Public Class Form1     Private Sub Form1_Load( ByVal sender As System. Object , ByVal e As System.EventArgs) Handles MyBase .Load         Dim s_string As String         Dim int1 As Integer         Dim int2 As Integer   ...Show All

  • Windows Forms I don t know how to pass variales and text controls values between forms

    Hi, 2 little questions pls: From a form frm1 I call another form frm2. The form frm1 has a text box with a text in it. I don t know how to access that value in frm2. Also I would like to access i frm2 certain vaiables defined in frm1. 2/ What d be the help section in Visual Basic where I ca find such guidelines.   Thanks a lot It actually perfectly resolves the issue dear Jelle. It s the owner a nd not the parent. Thanks for reloving my puzzle. Thanks to all the guys, u re really great, happy new year 2006 , hopefully, with no mistakes when debugging ...Show All

  • Visual Basic Handling of unsigned values?

    Why is this code not compiled Const UnsignedValue As UInteger = &H80004005 To make it more strange this compiles: Const UnsignedValue As Integer = &H80004005 The value is larger than Integer.MaxValue but smaller than UInteger.MaxValue.   In VB, literals (including hexadecimal literals) are considered to have type integer - as such &H80004005 is actually a negative number (representation in two's complement) - so in your first statement you're trying to assign a negative integer to an unsigned variable, and in the second statement you're assigning a valid negative ...Show All

  • Windows Forms Help in my application using HelpProvider

    Hi group, I am looking for some recommandations, good advice..anything that can point me in the right direction. This is the scene: I have an application shell that gets deployed via ClickOnce. Once the application shell is started it loads several modules (plug-ins) based on what the current logged on user (customer) has bought access to. There are standard modules for all customers, customized modules for indivual customers and buyable add-on modules for all customers. Each module is an assembly. I have come so far: Help files (ressources) must be leveraged from each module. I am using the module ressources for ...Show All

  • Visual Studio Compartment Shape for Model

    Is it possible to create a compartment shape for the whole model I want to have sections of the canvas that only allow specific shapes to be embedded, and each section have a title that is non-editable. I would also like this compartment to resize to fill canvas. Is any of this possible Jezz, a quick update: I just noticed the a new download posted on this formum by Alan Cameron Will (member of the DSL Team). This download contains a doc and some code example to explain how to write some custom code to improve the modelling experience.  http://forums.microsoft.com/msdn/Sh ...Show All

  • Visual C# Migration from .net to vs2005

    hello, Im writting test tools for different hardwares. I started with C# .net and everything seems to work normally. Then the company wants to migrate everything to 2005. So i opened my projects in 2005 and convert them. first of all i noticed that everything run slower (does 2005 mean better ). I have some cross threading issue but i turned the warning off with the system controls so it works like .net. And third thing which is the worst is that the program is not working with some hardware. I think the code is too slow for the hardware to respond correctly back. Is there any way to speed up the code. Im using VS2005 Professional edition. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. THANX

    Hi everyone, i'm making my arcade 2d engine using d3d9 sprites, particles ditto. I have a problem with creating the device. First of all i tried all the ways i knew to make the hWnd handler which i guess is the problem. Any ways here's my code for creating the device. /* dx9.pD3D is basically our d3d object d3dpp is presentation parameters and dx9.pd3dDevice is our d3ddevice object.*/ if( FAILED( dx9.pD3D->CreateDevice(D3DADAPTER_DEFAULT, D3DDEVTYPE_HAL, hWnd ,D3DCREATE_SOFTWARE_VERTEXPROCESSING,&d3dpp, &dx9.pd3dDevice ) ) ) state = false; p.s. please give me a working source code for making a simple hWnd handler as well as the p ...Show All

  • Windows Forms Can't click inside text box

    I have a MDI application that has tabs, one of the tabs has a tree with a panel switcher. My problem is once and a while I will click to open this MDI window, and click on one of my tabs, and I can click on text boxes but the cursor always starts at the first character in the string no matter where I click, if I double&nbs ...Show All

  • .NET Development The Undo operation encountered a context that is different...

    This is not specific enough information for me to know what I did wrong and where. Does anyone have any insight to this It appears to have something to do with asynchronous socket I/O completion. System.Transactions Critical: 0 : <TraceRecord xmlns="http://schemas.microsoft.com/2004/10/E2ETraceEvent/TraceRecord" Severity="Critical"> <TraceIdentifier>http://msdn.microsoft.com/TraceCodes/System/ActivityTracing/2004/07/Reliability/Exception/Unhandled</TraceIdentifier> <Description>Unhandled exception</Description> <AppDomain>PPSManager.vshost.exe</AppDomain> <Exception> ...Show All

  • Visual Basic Do MS provide an equivilent for Infragistics UltraDocManager for flyouts

    I have been working with VS.net for 3 years. I am not pleased that I have to use 3rd party tools for things I wish the product did by itself. An example is flyouts. The concept of having things flyout for the end user the way they do for the developer is appealing. In the past I have made use of the Infragistics UltraDocManager which allows me to create tabs on a form that flyout and then go away on demand. With the release of Visual Studio 2005, Microsoft has provided more functionality and it is very much appreciated. I don't know yet, however, if there is anything in VS 2005 that will allow me to do flyouts easily. If there is, I would li ...Show All

©2008 Software Development Network