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

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

SolidSpace

Member List

Bo Yu
NeerajAg
wings9697
Savindra
e. ogas
lutalex
RubenPieters
Braunschweiger
TIEN DUC
Tery Emilson
Chaitanya Vempati
SidharthMalhotra
Vitalijus
Vishor
sandeepam
TheMaj0r
nate-d-o-double-g
Karl Hulme
Mike Oleary
ImmanuelG
Only Title

SolidSpace's Q&A profile

  • .NET Development ignoring certain attributes in XML file?

    Hi all, [C# 2.0] I'm trying to loop through an XML (resx) file & display it to a DataGridView ... but I want to disregard items that start with '$' or contain type attributes. nodes to accept: <data name ="blah"> <value> "foo" </value> <comment> "bar" </comment> to ignore & continue to the next one: <data name="w_SelectedIconTool.Location" type=" System.Drawing.Point, System.Drawing, Version=1.0.5000.0, Culture=neutral, PublicKeyToken=b54df5d54dd" > <value>17, 17</value> </data> and <data name="w_SelectedIconTool.Location.ImageStream" mimetype=" application/x-microsoft.net.object.binary.base64"> : He ...Show All

  • SQL Server is SSIS wonderful?

    Hi guys, I'm using sql 2000 now but eventually will upgrade existing server to sql 2005. currently we only have OLTP dbs. I would like to set up data warehouse & OLAP functionality to drive reporting from the system, is SSIS the product I need can you please give me the suggestions regards 1000 posts here we go - oh wait it's only my 135th post Anyways - it s more complicated than update existing (update myTable FROM anotherTable) ----> Data Flow (to insert new records) ----> Execute SQL task (delete old) You need to determine which are new (lookup) - then which are changed (split) [referencing Jaime's article about SSIS - find columns in table A which are not in ...Show All

  • SQL Server Automatically adding records to child table when record added to parent table

    In SQL Server 2000, I have a parent table with a cascade update to a child table. I want to add a record to the child table whenever I add a table to the parent table. Thanks You can do that with a trigger:   CREATE TRIGGER YourTrigger ON YourTable FOR INSERT AS BEGIN     INSERT YourOtherTable (<columns>, Parent_Key)     SELECT <columns>, Parent_Key     FROM INSERTED END   -- Adam Machanic Pro SQL Server 2005, available now http://www..apress.com/book/bookDisplay.html bID=457 --     < jon4paz@discussions.microsoft.com > wrote in message news:d2eeccd6-17ad-4ce3-b83b-d ...Show All

  • Visual Studio 2008 (Pre-release) Vertical Text Alignment in Textblock -- Dynamic Sizing

    Is there a way to align text vertically (i.e. centered) inside a textblock It seems that it defaults to aligning to the top, and I can't seem to find a way to change it. Thanks in advance! Following up on this issue (I did make the transition to Buttons), I have been trying to allow them to size themselves to fill the space. Given my constraints of: The # of rows & cols are not known until runtime, The buttons must placed in the grid at the initialization of the program, and The grid may need to be re-generated multiple times during runtime, I have found it very difficult to do so. My problem is that the grid is not actually sized to the parent object (it appears) until it is ...Show All

  • Visual Basic Define Class?

    I dont know if thats the right thing to say or not being I'm still green, but If I had a calculation that I needed to do often, is there a way t o make that (Public(Dont know if thats right or not)) I am wanting not to have to type the calculation over and over just wanting to put it in one place and refer to it if possible. Then how would you call it Davids Learning Or you can use a module and method in VB Module Calculator Public Function Add(ByVal val1 As Integer, ByVal val2 As Integer) As Integer Return val1 + val2 End Function End Module The important thing is that you create a method (function) which allows you to reuse the functionality by simp ...Show All

  • Visual Basic Displaying a Label that shows a PictureBox behind it

    I have a VB 6 app I'm converting to VB 2005. It displays a series of JPG files in a PictureBox, and three labels. In the old application, the letters on the labels float over the image background because the labels' BackStyle was Transparent. But in the new version the labels (with a transparent BackColor) appear in a rectangle whose color is the BackColor of the underlying form. What's the secret to making the picture-box rather than the form appear behind the label text > A transparent control shows the colour of its parent That did the trick for displaying the background image. > You will probably have to reposition it after changing its parent True; the labels now sit inside the im ...Show All

  • Visual C# How to shut down using Visual C#

    I create this windows form, i wanna create a button then when clicked, it will shut down the whole computer. Hi, use System.Diagnostics.Process.Start("Shutdown", "-s -t 10"); to shut down the system. reffer: http://forums.c-sharpcorner.com/F_ShowMessages.aspx ThreadID=22968 -Thanks Mahesh ...Show All

  • SQL Server Transact-SQL Common Features?????

    Hi The white paper which compares SQL Express and SQL Compact says that they both share Common Features Can someone please indicate if SQL Compact will support functions like Average, STDEv etc Thanks Touraj SQL CE was developed from SQL Mobile which did not have STDev as part of the implementation. If I remember correctly STDev was a function added in SQL Server 7. It is not a SQL92 or SQL99 function. So I would guess the answer would be along the lines that they had not decided to add the function. SQL Server 2005 has many additional non standard functions added to make life easier for the developers. It would not be difficult to write your own standard deviation function in Visual Bas ...Show All

  • SQL Server MSAS SP2 x64-ENU on a 64-bit windows server 2003.

    Hi, After installing SP2 on my 64-bit windows server 2003... analysis services keeps processing infinite ... ! After processing the last fact or measure group, on screen I see 'MergeAggregationsOnDisk 35 of 36' 1 of my 4 processors is full busy (100%) and it seems to by endless ! I suggest I have to rollback the sp2 ! Kind regards. ...Show All

  • Smart Device Development Can not deploy .NET 2.0 to my smart phone

    I made a simple app and tried to run it on my Cingular 2125 smart phone with windows movile 5.0 I get the error saying that i do not have the latest .net 2.0 to run it. I installed Compact 2.0 on my computer... not sure how this is supposed to get on my phone though! Can anyone tell me how to install .Net 2.0 framework onto my smartphone thanks. Whenever I try and Deploy I get the following error: Error 1 The device security configuration disallowed the connection. Ensure that you have the appropriate certificates on your device for development. Review your SDK documentation for proper security settings for connecting to this device. Device Connectivity Component I have a Cingular 2125. I have the l ...Show All

  • Visual Studio Check out files from VSS

    Let's say I want to use visual studio to interact with VSS 8 for the first time. Questions: 1. How do I set it up the first time A solution already exist in the database. Please be specific on steps. 2. How do I resolve solution versions If i am using VS 2003 and the solution file in the database is VS2005 Thank you. In 2003, you'd use File -> Source Control -> Open From Source Control. In 2005 you'd use File -> Open -> select the VSS database icon. If the solution file has already been upgraded to 2005, I'm afraid you're out of luck -- 2003 will not open it. ...Show All

  • Visual Studio Express Editions Components

    How do adding components within Visual Basic 2005 Express edition works I cant find a components menu anywhere. actually, i am not trying to add it to my form, I am trying to add it to my toolbox so I can then add it to my form. I need the image componenent so that I can use it for my database type program i am trying to write. Is there a place to go to get compenents we need at msdn ...Show All

  • Software Development for Windows Vista Validator prevents compile of Activity Library

    I've been reading the book "Essential Windows Workflow Foundation" by Dharma Shukla and Bob Schmidt. I have downloaded the code used in the book and attempting to add an activity to the library. One of the activities has a Validator attribute and when I compile, it seems to run the validation. Why would it do this when I do not have a workflow in the project anywhere How can I just compile the library without running the validator Does it make sense to do so Here are a couple of lines showing the Validator attribute: [ActivityValidator(typeof(PickValidator))] public class Pick : CompositeActivity { } The error I am getting comes from the validator: Activity 'Pick' validation failed: At least one child of Pick must not ca ...Show All

  • .NET Development SchemaImporterExtension - machine.config

    Hi! I created the derived class like shown in the sample. Now I can't get the debugger to step into my class. My machine.config looks like this (in contrast to what the sample is assuming I guess): < configuration > < configSections > < sectionGroup name = " system.xml.serialization " type = " System.Xml.Serialization.Configuration.SerializationSectionGroup, System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 " > < section name = " schemaImporterExtensions " type = " System.Xml.Serialization.Configuration.SchemaImporterExtensionsSection, System.Xml, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089 " /> & ...Show All

  • Visual C++ AfxMessageBox() Captions are truncated to 8 characters. Why?

    We recently moved to VS2005, MFC8. We've noticed that MessageBoxes with greater than 8 characters are now being trucated: eg: ThisIsMyLongCaption // showed in previous MFC versions ThisIs~1 // now shows in MFC8 Is there a compiler option or something that allows the entire caption to show Thanks, -Hedley Yes, we are aware that we could change all of these to MessageBox() but we're trying not to go that way if we don't have to. We have some users who are aware of any little changes like this and call tech support immediately when they spot them. In reality it's not a huge deal, it's just odd that it changed when we went to 2005. ...Show All

©2008 Software Development Network