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

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

MichaelMouer

Member List

therabidwombat
softwarejaeger
Jweige
carlo74
Callum
dev_.net
CJ Clark
d kretz
MrBones
Malacki
Burt Harris
ZopoStyle
Lamprey_
arkiboys
Jean-Pierre Fouche
Fabriciom
LuisMendes
Rocky82
N8NT
samantha chandrasekar
Only Title

MichaelMouer's Q&A profile

  • Visual Studio 2008 (Pre-release) subgroup in peer mesh

    Hi, im doing a p2p chat program, apart from broadcast to whole mesh, i want to one-one and small group chat as well, anyone knows how to implement this in p2p thanks a lot oaix 1-2-1 you can acheive by just creating another out of band duplex connection between the two peers using something like netTcpBinding I think you'll have to get the "submesh" created by having the subgroup connect to another mesh for that conversation Regards Richard Blewett - DevelopMentor http://www.dotnetconsult.co.uk/weblog ...Show All

  • SQL Server Msg 8621: The query processor ran out of stack space during query optimization

    I got the above error when I tried to execute the following query delete from BUSINESS_ASSOCIATE where ba_name is null As you can see the query isn't exactly complicated. What the table does have is lots of dependancies. I got SSMS to show me all the dependancies and there are literally hundreds (maybe thousands - I'm not going to count them all) of dependant tables and i suspect that is what is causing the problem. So what do I do about it This is a valid data-model (industry standard in fact) but SQL won't let me delete data from this table and that's a huge problem for me. Any advice about how to progress would be welcomed. -Jamie Jamie Thomson wrote: Hi guys, I sure can. ...Show All

  • Visual Studio Express Editions Is creating a basic native win32 app using VB 2005 EE possible?

    Hi all. I'm trying to work out how, or indeed, *if* it is possible to create a standalone application that will run on pretty much any version of windows without the need for the .net 2.0 framework installed . In my looking about, I think I have found out that if you use the WinForms element in VB 2005 EE, you have to have the .net 2.0 framework installed, but I'm not 100% sure if thats correct or not. What I'm after is a basic single window app that allows you to launch certain programs or installers using buttons on this single windowed application - very much like a CD Menu system of old Even if it requires VB 6 runtimes [i.e. like a VB6 project app did] that wouldn't be too bad, as that is fairly simple and can be installe ...Show All

  • Software Development for Windows Vista Get return value from workflow

    I've a winform application which would interact with a workflow runtime to perform some approval tasks. When a user reviews the approval request, he can select either approve or reject on the winform application, it will submit to the workflow runtime to process, his action will be validated by the rules defined in workflow and it will return a result of his action (success or fail). I want to know how can I get the result from workflow when the workflow instance is completed. And how can I wait for result from workflow runtime after user submitted the action, because workflow is executed asynchronously with the winform application. Thank you very much! I want to know... how can I notify the winform applic ...Show All

  • SQL Server Format Date in Reports

    Dear friends I have a problem with the format date, because my database has the format yyyy/mm/dd and in the computer user's the default configuration of date is dd/mm/yyyy, the problem exists with the reports that have the parameter of date type, the users input dd/mm/yyyy and the report request error in the format. My question is, how do i make the any format input the users, i change in the report for this recieve the format yyyy/mm/dd, where is the parameter i have to change, the easy request is i have change the configuration of computer users, but i dont have this. Thank you You can do the conversion in the stored procedure using the CAST or CONVERT functions (or in the command text, depending on the command text). Or ...Show All

  • Windows Forms control display location of forms

    How do you control where forms open on the screen, especially in a multi-monitor environment Set the form's Location property in the Load event. You can use Screen.AllScreens to enumerate the monitors you have and Screen.Bounds to find out where they are located. ...Show All

  • Community Chat Using Vista?

    Good idea Joe! Okay, I'll go first.  I'm using Vista RC1 full time now.  The computer seems quieter--doesn't take so many trips to the hard disk for VM paging.  I find going back to XP an unpleasantry, so I think Microsoft is succeeding here. Glass is nice.  I think the performance is what I expected it to be on an Intel Advanced Graphics card (Dell Dimension 9100).  Office 2007 is also pleasant to use, but they stil have some cleanup work to do on their UI. Who else is using Vista   Brian Did anyone tried to code something (in Visual Studio .NET) on Windows Vista If anyone did, is it OK, it works fine I know that Vista is using the 3-rd version of the .NET Fra ...Show All

  • SQL Server Could not start mirroring on a single laptop with two instances of SQL Server 2005

    I tried to set up mirroring on my laptop. I have got two instances of SQL Server 2005 SP2 on my laptop (the first one is the default instance). Checked configuration running the following scripts SELECT type_desc , port FROM sys.tcp_endpoints ; GO SELECT state_desc FROM sys.database_mirroring_endpoints go SELECT role FROM sys.database_mirroring_endpoints ; GO SELECT 'Metadata Check' ; SELECT EP . name , SP . STATE , CONVERT ( nvarchar ( 38 ), suser_name ( SP . grantor_principal_id )) AS GRANTOR , SP . TYPE AS PERMISSION , CONVERT ( nvarchar ( 46 ), suser_name ( SP . grantee_principal_id )) AS GRANTEE FROM sys.server_permissions SP , sys.endpoints EP WHERE SP ...Show All

  • Visual Studio Team System Licensing question

    Will DataDude be available with an MSDN subscription If yes, will it be for all MSDN subscription levels or only Universal -Jamie If you purcahse data dude it automatically comes with a full MSDN subscription. If you are already an MSDN subscriber then you can get Data Dude. If you are a Universal subscriber you can elect one team edition product when you renew your subscription if you subscribe to any of the lower tiers then you will need to purchase a team edition subscription Hope this helps Matt ...Show All

  • Visual C++ Noob->Question

    Hi folks, I know this is pretty basic, but I'm having troubles getting my head around it... what is the difference between using the -> (pointer) to access the items of an object vs. using the . (period) to access items. Often times I get the two mixed up and the compiler will tell me I'm using the operator incorrectly. What is going on -Zero -> is used to deference members of a class through a pointer to that class. . is used to deference members of a class through a reference to that class (or is a local). e.g. say MyClass has an int member; as a data member int foo1( MyClass* pMyClass ) {    return pMyClass->member; } int foo2( MyClass& myClass ) {  & ...Show All

  • Software Development for Windows Vista My events stop working when I add a service.

    I am trying to test the pesistence engine. I modified the out of the box 'SimpleSequentialWorkflow' demo application. I added the following line and the OnWorkflowCompleted event never fires.: SqlWorkflowPersistenceService StateService = new SqlWorkflowPersistenceService ( "Data Source=local;Initial Catalog=WFState;Integrated Security=true" , true , new TimeSpan (0,0,10), new TimeSpan (0,0,3)); It does work when I add the following line: SharedConnectionWorkflowCommitWorkBatchService BatchService = new SharedConnectionWorkflowCommitWorkBatchService ( "Data Source=local;Initial Catalog=WFState;Integrated Security=true" ); I am using a SQL2000 database I also added the tracking service a ...Show All

  • Visual Studio DSL - Custom Generator (kick off)

    I'm not able to do a custom code generator. What are the best tutorial/examples I have my DSL designed with custom props, event handlers, UITypeEditors just like I needed. Now I would like to: 1- Register my dsl to do something like "Add new project" or "Add new Item" and add a file myNewFile.mydsl where I can drop element from the toolbox 2- Create a text file from my custom generator 3- Dont wanna have the xxxReport.tt and xxxReportVB.tt and txt files 4- Dont wanna have the test.mydsl or sample.mydsl files I really appreciated any help Thanks, DD Hi, Your test environment will be different from your production deployment. You need a setup p ...Show All

  • Visual Studio Team System Requirements?

    Do people track requirements as work items Is that the way we should do it Thanks that helps. I was just wondering if there was another mechanism. Also if you used word documents, they are not versioned if you do attachments right So do people instead use links Of course then you have to make sure you keep all of the files organized and don't break the links to have traceability. We currently use Rational Requisite Pro which basically puts things in word format, so our product managers are used to putting things in word. So trying to figure out if people use word on their requirements and how they keep the versioned traceability of changes. Thanks ...Show All

  • Visual Studio Team System Kill connections prior to dropping database

    Hi, I'm working on using VSTS4DBP as my deployment tool for databases and I'm excited about the ability to use it from MSBuild. So, I'm working on my deployment script and one thing I want to do is drop the database if it already exists prior to recreating it again. Hence, I clicked the "Always recreate database" button in the project properties which causes the following to go into the deployment script: IF ( DB_ID ( N 'MyDB' ) IS NOT NULL) DROP DATABASE [MyDB] ; GO That's all good except that if someone is connected to the database (which is a possibility) then the deployment will fail with the message: Error 3 Msg 3702, Level 16, State 4, Line 3 Cannot drop database "MyDB" beca ...Show All

  • Windows Live Developer Forums Max zoom out or zoom in parameters?

    Is there a way to set the max zoom-put or zoom in MAP parameters Yeah I think that: e.view.zoomLevel In the onstartzoom event should return the zoomlevel requested, no the current zoom level. It would make it much more useful. Maybe something to ask for from the VE team John. eg. < html xmlns ="http://www.w3.org/1999/xhtml"> < head > < title ></ title > < meta http-equiv ="Content-Type" content ="text/html; charset=utf-8" /> < script type ="text/javascript" src ="http://dev.virtualearth.net/mapcontrol/v4/mapcontrol.js"></ script > < script type ="tex ...Show All

©2008 Software Development Network