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

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

dataMonkey

Member List

Kirill Tropin
m#
Spulit
GlennZarb
djmikke
__gapman__
MaqboolHussain
pcd
fdc2005
MikeTennor
Robert3234
Dario Aznar
project2n5e0o1
MickDotNet
dr.acv
michaelp
mliesmons
Ram Pradeep
sam1996
zjs
Only Title

dataMonkey's Q&A profile

  • SQL Server simple question creating duplicates

    Hi, I'm trying to create duplicates in a copy of a table in the same database by inserting rows from the original table. Seems easy but I can't get any sql to work. help If we decide that a duplicate is made out of the entire row: Go into QA and type and run INSERT NorthwindCopy.dbo.Categories SELECT * FROM Northwind.dbo.Categories In this case you'll probably recieve an errormessage about IDENTITY.. Is this correct, and is this your problem /Kenneth ...Show All

  • Software Development for Windows Vista How to support dragging a subnetwork of activities onto the designer?

    Context - Sequential workflow with a number of custom activities - Custom application that hosts the WF designer Question I want to drag a custom activity from the toolbox onto a WF designer surface and when the activity is dropped, a subnetwork of activities appears on the design surface. ...kind of a like a "design macro" activity - drop one activity and an entire activity subnetwork is inserted at the drop point. How can this be implemented using WF Thanks, Michael. Thanks Matt, I think the following is an example of what you're talking about: http://www.google.com/codesearch q=+CreateComponentsCore+show:lKvKRJKH26A:MQLdMSLsyg0:M4fcRoWCz-M&sa=N&cd=5&ct=rc&cs_p=http://www.techheadb ...Show All

  • Visual C# hide or visible=false do not work

    hi to all; i have created a C# applicaiton Windows Forms app and i dont want it to show the Form itself.. to do this. i used in Form Load method this.Visible=false; it didnt work i used this.Hide(); again it didnt work.. then i used these codes in Initialize component method but unfortunately again didnt work.. how will i prevent my form to be seen.. thank you for the information Soe, i did hide the form with opacity attribute and now trying to create a setup project for my application to be able to put it on startup menu which will let it be launched as son as the PC is turnned on.. Thanks.. ...Show All

  • Windows Live Developer Forums Stack Overflow at Line: 2

    What can I do to remedy against these errors http://www.myhoboken.info Bummer.. would you please let me know when a solution is found Thanks and happy holidays. benny ...Show All

  • Visual Studio Team System Strange checkin policy error

    I have setup a code analysis checkin policy on a Team project, I have a solution where I have migrated code analysis settings so I know they are as stringent as the checkin policy and a build of that solution has succeeded. However when I make a change to one of the projects in my solution and try and checkin after a successful build I get the following policy error: TF10139:The following policies have not been satisfied Internal error in Ensures that code analysis is run with a predefined set of rules This project that is having problems is one where I have significantly changed the contents of the .csproj file as it is in msbuild format. However the IDE build reports no problems. Any ideas I'm ...Show All

  • Visual Studio Team System How to get across the parameter's check

    Hello everyone! In my test project how to get across the special parameter's check e.g.: protected void Page_Load(object sender, EventArgs e) { } I use public override ProblemCollection Check(Parameter parameter) check the parameters.but some special parameter(sender,e.etc) which I need not check them.how to get across the parameter's check HI Todd: With your method some parameters that should be unchecked are not checked,Such as: (object,sender,EventArgs e).And some that should be unchecked are checked ,Such as :(Exception ex),can you give me some help to solve the problerm that lets unchecked parameters again by the way ,Can you give me some document about fxcop I am an abecedarian ...Show All

  • SQL Server Simple MDX question

    Hi, This is a newbie question. I want to obtain a top-level aggregate, but filtered by attributes at the lowest of the data. An equivalent example from Adventure Works is this: select [Measures].[Sales Amount] on columns , filter ([Promotion].[Promotions].[Promotion]. Members , STRTOVALUE ([Promotion].[Promotions]. CurrentMember . Properties ("Max Quantity")) <24) on rows from [Adventure Works] This gives the following results: Sales Amount Mountain Tire Sale (null) Half-Price Pedal Sale (null) Mountain-100 Clearance Sale $250,927.70 Mountain-500 Silver Clearance Sale $25,899.14 Road-650 Overstock $49,986.08 LL Road Frame Sale (null) Touring-3000 Promotion $458,091.20 Touring-1000 Promotion $612 ...Show All

  • Visual C++ Finding currently visible desktop

    Hi there, how can I find the currently visible desktop By calling EnumWindowStations and EnumDesktops I get a list of all available desktops. But is there a way to figure out which one of them is currently visible I've tried to find the visible desktop by comparing the desktop handle, returned by the OpenDesktop function, to the desktop handle received by calling OpenInputDesktop. The result is that the default desktop is always the one currently receiving user input. But by using the default desktop my window always shows up at the desktop of the first user logged on to the system after reboot. No matter if this desktop is currently visible or not! What am I doing wrong Or what is the right way to search for the currently vi ...Show All

  • Smart Device Development Is it possible to have multiple projects in Smart Device Solution

    Hi all, I had a solution that contained one project for my PocketPC. Now I have added an existing project to the solution. Within the PocketPC exe application, I wanted to make use of some of the properties/methods of the classes supplied in the referenced project. After adding a reference to this project in my PocketPC exe project I can't seem to find it when making use of the ' using ' keyword. For example, the referenced project in my solution is called ConfigurationProject, and after adding a reference to this project in my PocketPC project, and then typed ' using Config... ' on a Form in my PocketPC project that needs to make use of the referencing project, it does not get recognised. I am sure I read somewhere that its not possible ...Show All

  • SQL Server Getting data from dataset back into database

    I'm new at this so I apologize in advance for my ignorance. I'm creating a website that collects dates in a calendar control (from Peter Blum). When the page containing the control loads it populates the calendar with dates from the database (that have previously been selected by the user). The user then can delete existing dates and/or add new dates. I create a dataset when the page loads and use it to populate the calendar. When the user finishes adding and deleting dates in the calendar control I delete the original dates from the dataset and then write the new dates to the dataset. I then give execute the data adapter update command to load the contents of the dataset back into the database. This command involves using parameteri ...Show All

  • Visual Studio The ubiquitous "A data source instance has not been supplied..."

    I have a simple report based on a Project business object. I've dragged and dropped a reportviewer control and a bindingsource, named "ProjectBindingSource" control onto my form. I dragged and dropped several fields from the Project business object onto my .rdlc report form. In the code called before refreshing the reportviewer, I've attempted to set the datasource property of the ProjectBindingSource via the following statements: Project aProj = Project.GetProject(projID); ProjectBindingSource.DataSource = aProj; Single-stepping through the code, aProj gets populated with the project information in the first statement and it should be bound to the report via the ProjectBindingSource; however, I'm still getting a "A ...Show All

  • Visual Basic Obtain MAC Address

    How can my application to obtain the MAC adress of the PC in wich is installed Como puede mi aplicacion obtener la direccion MAC de la PC en la que esta instalada Thanks! Gracias! For Each NI As System.Net.NetworkInformation.NetworkInterface In System.Net.NetworkInformation.NetworkInterface.GetAllNetworkInterfaces MessageBox.Show(NI.GetPhysicalAddress.ToString) Next ...Show All

  • Visual Studio Express Editions Saving Data

    Hello, I have a form and I can use the data binding tool with my access DB with no problems but I cannot figure out how i save things manually, I want to save specific data to specific columns in a table, could somone point me in the right direction or post some kind of example Thanks! heres what i have so far "which doesnt work" Try Me .Validate() Me .ContractsBindingSource.EndEdit() TextBoxVat.Text = Me .InvoiceDetailsTableTableAdapter.Update( Me .db1DataSet.InvoiceDetailsTable.Address1Column) MsgBox( "update successful!" ) Catch ex As Exception MsgBox( "update failed, the data may already exist please check and try again." ) End Try ...Show All

  • Visual Studio Express Editions Directory listing in a list view?

    Hi all, Directory listing in a list view - is it possible Im looking for a like windows explorer type thing, if possible.... Thanks, James. Hi, There is a sample windows form project and a related article at http://www.kodyaz.com/articles/article.aspx articleid=28 about how to populate a listview control with the contents of a file folder. Eralper ...Show All

  • .NET Development .NET Framework 2 to 1.1

    I know this question is asked alot but still... My boss just asked me if i could move our .net Application from .net 2.0 to 1.1 because of most users dont have 2.0 ( cant see the reason why microsoft just didnt include 2.0 in autoupdate but well ). anyway... the application is made in VS2005 with as base language C#. I doupt bringing the application from VS2005 to VS2003 would really be a usefull solution, because we use new c# keyparts like partial classes and attributes. So.... is there any way to use .net 1.1 in VS2005 thanks already! -Koen in the auto updater it won't be included as .NET is an optional component, not a required security patch. the same goes for things like WMP, t ...Show All

©2008 Software Development Network