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

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

wmerydith

Member List

Jamey Taylor
jcbatchelor
PeacError
George Longmire
Luke Liu
ruds
Venkatesh SC
KevinP
A tawil
Code Writer
n0n
rubeesh
Dennis L. Hughes
russ park
holzert
Harold1000
Billy Porter
RyanD
SMPDave
rak24
Only Title

wmerydith's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. Broken Link to MechCommander 2 Shared Source Release

    Microsoft XNA Build March 2006 Community Technology Preview featured at http://www.microsoft.com/downloads/details.aspx FamilyID=868fe562-5ded-4bb1-8648-708d3481bda3&DisplayLang=en has a link to the MechCommander 2 Shared Source Release download. The link is http://www.microsoft.com/downloads/info.aspx na=40&p=2&SrcDisplayLang=en&SrcCategoryId=&SrcFamilyId=868fe562-5ded-4bb1-8648-708d3481bda3&u=http%3a%2f%2fgo.microso ...Show All

  • Windows Forms Please help me!

    i create a control I want it have propertys +DataSource +ValueMember +DisplayMember like properties of combobox Then you need to add those properties, or derive from a control that has them. A DataSource is usually an object, then you can use the 'is' keyword to work out how to deal with it, as in if (dataSource is DataTable) { } else if (dataSource is DataView) etc. If you're not deriving from anything, you're prob ...Show All

  • SQL Server Where is SSIS?

    I just upgraded my SQL 2005 installation to include integration services. Now I can't find the service. Where is it In you start menu, under "SQL Server 2005" do you see "SQL Server Business Intelligence Development Studio" You can create a integration services project using this tool. ...Show All

  • Windows Forms Displaying small Icon on top of a Control (in Design Mode)

    I have a standalone forms designer up and running ( using the new designsurface). For some of my custom controls, that get created using my custom designer, I want to display some small icons on top of their drawing surface. I solved that for some "label" like controls by overriding their Paint() Method and draw some bitmap on top of them. But for some other controls I have (checkboxes,...) i cant properly paint over their drawing surfaces, beca ...Show All

  • Visual Studio Express Editions question about viewing output

    I am just using visual C++ 2005 express as a base to program simple programs in C++. I have a couple problems with the program. 1, after i compile the program, how do i execute the program so that i can see the output of the program. 2. how can i view that in a different window Any help would be appreciated. thanks PRessing F5 will compile and run your code. If it's a console program, try setting a breakpoint ...Show All

  • Windows Forms Inherit From DataGridView

    I have an assortment of classes B, C, D. They all inherit from an abstract base class A. By virtue of the inheritance they all have Save, Insert, Update, Delete, Validate methods. I have a generic DataCollection<T> class which inherits from BindingList<T> , is constrained to classes inheriting from A, and which implements a LoadCollection method. I display these collections in DataGridViews. The database methods of A are ca ...Show All

  • SQL Server NONEMPTYCROSSJOIN : how does it work with linked measure groups ?

    Hi, I am experiencing a strange behaviour with both NONEMPTYCROSSJOIN() and NON(CROSSJOIN()) Mdx statements when working with linked measure groups. Bascially, I have created a very simple "regular" MOLAP cube on SSAS2005 with one fact table and 3 dimensions. I have one single Measure Group for this cube. Now, if I create an empty cube (no data source view) and add the measure group of my first cube as a Linked Measure Group, it seems l ...Show All

  • Visual C++ Can anyone tell me how can i use "HttpAddUrl" ?

    When I use it like follow: retCode = HttpAddUrl( hReqQueue, // Req Queue " http://127.0.0.1:80/ ", NULL // Reserved ); after it runs,I got a error 87 which is ERROR_INVALID_PARAMETER:The parameter is incorrect.,can anyone tell me how can i use it properly,besides,the function's prototype is : ULONG HttpAddUrl( HANDLE ReqQueueHandle , PCWSTR pUrlPrefix , PVOID pRese ...Show All

  • Visual C++ freeware Dll available?

    I'm using Desaware's Winhook (SpyWorks) control in a C# app with a WH_CALLWNDPROC hook so I know when certain windows open. Wondering is there is a freeware dll out there...for this type of global hook. Trying to get away from the active x route of spyworks. Write your own. If you just want to see that a window is opening a WM_CALLWNDPROC hook is much to heavy. A WH_CBT hook is enough. But all this is beyond the scope of this for ...Show All

  • SQL Server Accessing SQL Server database from Crystal Reports - being prompted to log on every time?

    Hello, this is my first time posting here. I've never really worked with SQL Server much, but I'm in the process of learning. Please forgive my ignorance. Anyways, here's my dilemma. A user at the office uses Crystal Reports (I'm not too familiar with this program either). Crystal Reports pulls data from SQL Server. However, every single time it does so, it prompts her to log into the database. While there is no serious problem, this has got ...Show All

  • Visual C# Question About Threads

    i want to creat form using thread but the form disappear i write this private void button1_Click(object sender, EventArgs e) { Thread T = new Thread(CreateForm); T.Start(); } void CreateForm() { Form2 f = new Form2(); f.Show(); } c_lover, I am new to C#, so your question intrigued me. Try adding a "sleep" statement to your createform method. Form2 f ...Show All

  • Software Development for Windows Vista Video to texture??

    Hej all I have been working on this "Player" project for 14 days now... and I have been trying to make a video player: http://www.eifonline.dk/fullscreenplayer.jpg Contens: Top : Font with DateTime as text Bottom : Font with DateTime as text --- events scrolling at the bottom... Center : Vertex with Video as texture. I tryed DirectX.AudioVideoPlayBack, simi worked... Tryed DirectShow, simi worked... My pro ...Show All

  • SQL Server Stored Procedure using linked server...HELP

    I created a stored procedure in SQL 2005 that connects to data on a Linked Server. I can pull the corrected data but, I am having an issue displaying the data within an ASP.NET page. Accessing the stored procedure from my ASP.NET page only brings back '0'. What am I doing wrong How do I assign the SQL output to @Count I have included my code. Stored Procedure --------------------------- set ANSI_NULLS ON set QUOTED_IDENTIFIER ON go ...Show All

  • Visual C# Overload Methods Reflection

    Hello all, happy new year! I can't reflect to a specific method overload when it has a generic parameters. For example: public class MyClass {     public T First < T >( List < T > source )     {         return source [0];     }     public T First < T >( IEnumerable < T ...Show All

  • SQL Server Using result sets from a stored procedure

    Is it possible to access the result set returned from a stored procedure For example, begin    set @cursor_list = sp_spaceused 'a_table'    ...loop through here... end I can't seem to find any information on accessing the "default result set(s)". Returned from a stored procedure. What I really want is the output of sp_spaceused for all tables for a particular user. Thanks Tory > What ...Show All

©2008 Software Development Network

powered by phorum