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

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

MilkMover

Member List

gareon
jcgalveza
David N.
prathima.k
Louis Phillipee
KiwiJohn
rrrpak67191
vb help
Flipit
Brian Lounsberry MSFT
FrankV
mdsawyer58
Eric M.
Trevor Watson
JohnGriswold
platinumbay
Babu S S
Theory
Tundra Programmer
Clementino Mendonca
Only Title

MilkMover's Q&A profile

  • Software Development for Windows Vista Query on SQL Tracking service for WWF

    Hi,    Windows Workflow Foundation provides a mechanism for tracking the activities and events that occured with the help of some tracking services available for e.g. Sql tracking service. Is it some way possible for an application to add some data to the Tracking database before the Workflow runtime actually enters data and at the same time maintain consistency of the Data within the database Regards, Sudheesh Suresh K There are two ways that you could do this.  You could add custom tracking entries from the workflow that you are developing.  Or you could write a cust ...Show All

  • Windows Forms sending mouse move message

    this is probably the simplest of things to do. I have a control in the middle of my form which I'd like to be able to move the mouse cursor w/ the keyboard when the mouse enters it. I'm watching OnKeyDown for the arrow keys, and need to move the mouse pointer. how exactly do I make the mouse move inside it can I send the WM_MOUSEMOVE message and if so who's handle do I use. I'm open to any way to make it happen. this is for a tool I'm using and dont want to spend a lot of time on it, and it doesnt need to be pretty. thanks. Cursor . Position = New Point (0,0) ...Show All

  • Windows Forms printout/report generation ideas

    A quick question to ask what people tend to use as a reporting tool for winforms application that DONT use a database as their underlying data storage. In the past we've tried various methods from writing our own routines, data dynamics, component one and devexpress and found all un-satisfactory in one way or another. What I'd like is to give the end users the ability to create a template in say word and drop in markers and then fill this in, however I don't want to impose a restriction that the end users machine has to have word installed. The type of data to be filled in would be things such as graphics and other sub report ...Show All

  • Windows Forms my own EULA

    How can I put my own EULA to be accepted by the end user during a setup application deployed with ClickOnce approach Thanks armindo Hi armindo, To the best of my knowledge, there's no way you could do this in the out-of-the-box clickonce deployment. However, a work around would be to make sure the user goes to a page and accept the EULA before they get redirected to the page for download. To prevent direct access to the page, you could tag an object to the session of the user that might say "agreeEula=false". It would only be true when he had clicked on the accept button. Thu ...Show All

  • Visual C++ Embedding an edit control into a tab control

    I want to embed four different edit controls into four different tabs. How do I do that Please include more details What technology are you using What have you tried so far yourself Thanks, Ayman Shoukry VC++ Team ...Show All

  • .NET Development UnauthorizedAccessException thrown when Writing to a Remote Registry key

    Hi all,   I am trying to set a registry key value on a remote machine.  I can open the key and read the current value without problems.  I can also use Regedit (on my local box) to update the remote key value without problems. However, when I issue the following statement, I get an Unauthorized Access Exception thrown: ... regKey = RegistryKey.OpenRemoteBaseKey(    RegistryHive.LocalMachine, remoteName).OpenSubKey(strKeyName); // Getting the value is just fine... string strVal = ( string )regKey.GetValue(strValueName); // However, Setting it throws an exception regKey.SetValue(strValueName,strValue); ... (where ...Show All

  • Visual Studio Express Editions Odd 'replace text' behaviour in Richtextbox control

    I did some testing with the Richtextbox control and ran into a problem: when replacing text some formatting seems to be removed. I made a text sample in Wordpad which contains the text and format Bold! Not bold. in rtf this looks like this: {\rtf1\ansi\ansicpg1252\deff0\deflang1043{\fonttbl{\f0\fswiss\fcharset0 Arial;}} {\*\generator Msftedit 5.41.15.1507;}\viewkind4\uc1\pard\b\f0\fs20 Bold!\b0 Not bold.\par } I saved it as 'test.rtf', made a simple form with a richtextbox1 and a button1 and ran the following code in VB: Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1. ...Show All

  • Visual Studio How to get win app to work using Microsoft.VisualStudio.SourceSafe.Interop.dll running on a computer without VSS installed

    Hello Im trying to run my win application that uses Microsoft.VisualStudio.SourceSafe.Interop.dll on a computer without VSS installed. First off, I got the "CLSID {783CD4E4-9D54-11CF-B8EE-00608CC9A71F}  failed". I got rid off this by running regsvr32 ssapi.dll (copied from the development computer). Trying my luck again, I get a message box titled Visual Source Error, saying: "A required resource cannot be found on your computer. To resolve this issue, run setup to repair your Visual SourceSafe installation." And an exception: System.Runtime.InteropServices.COMException: Error HRESULT E_FAIL has been returned from a call to a COM compon ...Show All

  • Windows Forms System ShutDown...

    Hi, In my program I need after doing some job to be able to shut down the system. So I wrote that code: public event SessionEndedEventHandler ShutDown; ............ ............ this.ShutDown += new SessionEndedEventHandler(OnShuttingDown); ............ ............ protected virtual void OnShutDown(SessionEndedEventArgs e) {    if(ShutDown!=null)          ShutDown(this,e); } void ShuttingDown(object sender, SessionEndedEvent ...Show All

  • Visual Studio Express Editions vwd 2005 express beta 2 and final .net framework 2

    Hi First of, i am very pleased with the product vwd 2005 express beta 2, but after the final release of the .net framework 2, and some (unsuccessfull) experimenting, i have two questions which  i hope someone would answer. Is there a way to make the vwd 2005 express beta 2, work with the final release of the .net framework 2. Will the final release of vwd 2005 express have any further limitations, compared to  the vwd 2005 express beta 2 product. Best regards Peter Is there a way to make the vwd 2005 express beta 2, work with the final release of the .net framework 2. Have you tried this ...Show All

  • .NET Development Generic Properties and Methods

    It's pretty funny that microsoft wrote Generics capability into the .NET framework, but they give almost zero documentation on how to write Generic Classes, Properties, and Methods. I have a book at home that documents this all from top to bottom, but unfortunately I am at work at the moment and need an answer now. I have been searching the web for the last hour on writing Generic Classes, Properties, and Methods, and there's practically nothing on the topic. I have to wonder how the author of the book I have at home ".NET Generics 2.0" learned so much about it when there's nothing available on the topic anywhere, other than ...Show All

  • .NET Development Packets Glued together Problem

    I am writing a program , a simple chat program,but when i try to send packets or msgs from the client to the server very fast the server recives the packets glued together, and not one after the other as it should be this causes an exception in the xml processor method. why would packets get glued together, or even get broken in 2 when the reach the server Avada You really need to understand the TCP programming. I suggest you pick up a book on Network programming and suffer through it. I wish I could explain the stuff here but I would be writing another book :-) Here are some hints 1) TCP is a realiable protocol. Data is not sent t ...Show All

  • Windows Forms Deployment and Updates

    I am new to deploying and updating an application.  Anyone seen a good article explaining the process and possibly an example Thanks That was exactly what I was looking for. Thank you. ...Show All

  • Visual Basic Migrating from Ms Access to SQL Server 2000

    Hi, Is there many changes need t o be done in order to change my DBMS. Currently, i'm using Microsoft Access in my VB.net program. however, i need to change the DBMS to SQL Server. So what should i do can i still use back the same coding what namespace should i include Hi there, Firstly, I would consider using the Access Upsizing Wizard to migrate your database from MS Access to SQL Server if you have not done so already. If you've migrated via a different means, then a good start would be having the database schemas for the two databases almost identical (you won't get an exact match because SQL Server 2000 has a couple of differe ...Show All

  • Smart Device Development Installer for .net Application

    I have some questions regarding the handling of .net CF installation I have a cab file and a working MSI installer for my app. (based on http://msdn.microsoft.com/library/default.asp url=/library/en-us/dnanchor/html/CompactfxTechArt.asp) How can I check if the .net cf 2.0 is installed on the device and is there a way to somehow merge my installer with the .net cf redistributable (from here: http://www.microsoft.com/downloads/details.aspx familyid=9655156b-356b-4a2c-857c-e62f50ae9a55&displaylang=en) Or is there another way to bundle the different .net cf version (for ppc2003, windows ce 5.0 ....) with my application regards norbert ...Show All

©2008 Software Development Network