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

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

warning9

Member List

frankjespo
noonie
Aleniko29139
Jebat
Mike3983
tcarff
Zach7
*Jinx
Álvaro Peñarrubia
Tony512
Developer Steve
mtronix
tattoo
Ray C
David N.4117
DiasVFX
GertB
manick312938
Cory.Isakson
ermark
Only Title

warning9's Q&A profile

  • .NET Development Data grid

       I need to display 10 rows having a hyperlink text like       1. aaa        2. bbb       I'm using a datagrid with a template column for the number and hyperlink column for the text.The problem I face is I need the first 5 rows in one column and the last 5 rows in another column like    1.aaa        6.xxx    2.bbb        7. yyyy  .....               ...........    Is the same achievable using datalist .If so,can any one tell me how. &nb ...Show All

  • .NET Development where's the docs in .net 2.0?(debufRef, Profiler,etc)

    i can only download Ecma-334 & 335, but they r not debugref docs. where can i find the docs about .net 2.0 All of the unmanaged API documentation (e.g. ICorDebug*, ICorProfiler*, etc.) for V2.0 can be found on MSDN here: http://msdn2.microsoft.com/en-us/library/ch59zxfc.aspx. Much of the conceptual content which shipped in the Tool Developers Guide in V1.1 is still relevant, so DebugRef.doc may still come in handy. If you're looking for sample code snippets you may also find the mdbg source ( http://www.microsoft.com/downloads/details.aspx familyid=38449a42-6b7a-4e28-80ce-c55645ab1310&displaylang=en) to be a good example of how to use ICorDebug. If you have any specific questions, please let ...Show All

  • Smart Device Development How to keep a regkey when uninstalling CAB?

    Hi I'm wondering how I should keep a regkey in the registry when I uninstall the application. My regkey is added through VS2005 Smartdevice CAB project. I use it for an image counter for a camera application and I increment it for each photo and concat the filename with the new number. Anyhow. My problem is that when I uninstall the CAB for test purposes it also uninstalls the registry key. I would like the key to be persistent between installations but I can't seem to find any way to define that. Thanks for your help, Martin Malek How about changing the .ini file such that the uninstall key name is different as compared to what is present in the registry Refer this page for .ini file format and details http://msdn2.microsoft.com ...Show All

  • Windows Forms pictureBox1_Paint() doesn't draw

    Hi, I am making a scrolling text with transparent background. However, the  pictureBox1_Paint() seem to draw nothing! Any idea       public partial class Form1 : Form     {         private String drawString = "Sample Text";         private Font drawFont = new Font("Arial", 31);         private SolidBrush drawBrush = new SolidBrush(Color.White);         private int textX = 0;         public Form1()         {           & ...Show All

  • SQL Server SQL Express and SQL 2005

    Can application written for SQL Express also use SQL 2005 Thanks, the actual application I am looking at is LDRPS version 10 Professional. It installs with SQL Express and I'm wondering if it can be installed with SQL 2005 instead. ...Show All

  • Windows Forms Sudoku help needed

    Hi, I am trying to make a sudoku game but have run into a problem. basically i have a function to create the game view: private void createView() { Table1.Rows.Clear(); for (int rowIndex = 0; rowIndex < State.Board.GetLength(0); rowIndex++) { TableRow row = new TableRow(); Table1.Rows.Add(row); for (int columnIndex = 0; columnIndex < State.Board.GetLength(1); columnIndex++) { TableCell cell = new TableCell(); int value = State.Board[columnIndex, rowIndex]; if ((ActiveCell == null) || (ActiveCell.Row != columnIndex) || (ActiveCell.Column != rowIndex)) { string id = String.Format("BoardButton_{0}_{1}", columnIndex, rowIndex); if (value >= 10) { Image image = new Image(); ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Components w/ different timings?

    I like the model of specifying Game.TargetElapsedTime and responding to update events, but can I conrtol this on multiple components For example, let's say that I want to randomize the weather conditions in my game. I'd like this to update every minute or so. On the other hand, some things need to update every frame (ike controller input or sprites positions). One way to handle this would be to simply have methods like UpdateWeather() , and UpdateSprites() and so on, and have multiple if/then blocks in my main Update() code that determine whether it's time to call one of the other update methods. However, it'd be nice to offload this monitoring somehow so I could just declare in my init code how often certain components get updated. A ...Show All

  • Visual C# JSON to XML - C# routine Exist??

    I would like to convert my incoming JSON string into a XmlDocument XML data. I am using .NET Framework v1.1 under C# so cannot use Json.net or the MS Ajax Extension. Can someone please provide me with some C# code for converting from JSON to XML I have aleady found the useful Xml to Json routine for C# but now i need to go in reverse. Thanks. ...Show All

  • SQL Server How do I transfer "My Subscriptions"?

    I am an administrator in Reporting Services 2000/2005 (mixed environment) and have set up several report subscriptions.  I see all of the subscriptions under "My Subscriptions" which provides an easy way to see and manage all the subscriptions. Now we have a few other administrators on my team, and they also want to see all the subscriptions in the environment, but when they click "My Subscriptions" their list is empty.  I have set them up with the same security role as me, but this doesn't seem to matter. How can I provide a way for the admins to see all subscriptions on all reports in the report server, even if each subscription may be set up by a different user Thanks Kory It is n ...Show All

  • Visual Studio Team System Cannot pass a GCHandle across AppDomains while using unit testing.

    Got a manage C++ class in a class library that uses unmanaged C++ lib. The managed C++ class handles callbacks from the unmanage C++ lib by a delegate "gcroot<MessageDelegate^> m_MessageDelegate". To invoke the delegate I use the call "m_MessageDelegate->Invoke(nMsgId);". This works without any problem when running applications using this class library but when testing the class library using unit testing I got the error "Cannot pass a GCHandle across AppDomains" when I invoke the delegate. Please take a look at this (duplicated ) post that can be helpful. Thanks, Michael ...Show All

  • SQL Server XML inserting into multiple tables

    I am trying to find a way to insert data into multiple tables from an xml document using xml schema. I am wondering if someone can point me in the right direction. An example in more detail is below. A sample of the xml is below in red. The table is ITSoftware with a Identity seed of 1 on the column ID, a varchar(100) field called name and a Status_ID column of type int. Status_ID is a foreign key on a table called ITSoftwareStatus with another identity seed of 1 on a column named Status_UID. ITSoftwareStatus also has column called description (it is of varchar(100)). In the end I want to be able to pass into a stored procedure xml, and possible an xsd document and have the stored procedure insert data into the tables based on the xsd ...Show All

  • Visual Studio 2008 (Pre-release) VisualBrush with a background and a non stretched textblock. How?

    Hello Im trying to create a custom brush, which would display some non stretched text (the actual text wont be changing on runtime), uniform background and a 1 pixel thick border (not around the text, but around the whole space being filled with that brush) Im not sure if that can be done with VisualBrush only, but here is what Im trying: <VisualBrush Stretch="Fill" AlignmentX="Left" AlignmentY="Top"> <VisualBrush.Visual> <Border BorderThickness="1" BorderBrush="Black"> <Border.Background> <VisualBrush Stretch="None" AlignmentX="Left" AlignmentY="Top"> <VisualBrush.Visual> <TextBlock>LtArea</TextBlock> </VisualBrush.Visual> </VisualBrush> </Border.Backgr ...Show All

  • Windows Live Developer Forums Virtual Earth in Flash

    Helllo, Does anybody has a tutorial/example files how you can use VE in Flash like it's used on http://www.flashearth.com Should it also be possible to add VElayers with GeoRSS Thanks in advance! Best regards, Kurt ...Show All

  • Audio and Video Development Multiplexing??

    Hi Folks I've been a Scenarist author for sometime and now want to jump into HD-DVD authoring. Was wondering where to find a third party multiplexing tools once the programming is done Thanks - I'm sure this is the first of many posts here! Eric Scenarist HD will do multiplexing and formatting: http://www.sonic.com/products/Professional/Scenarist/features.aspx ...Show All

  • SharePoint Products and Technologies Change the master page

    Hi: I've been working with the old version of sharepoint, there I work with one template that has some Content Placeholders (the top zone, the middle left zone, the middle right zone and the and the bottom zone). Now I have to work with sharepoint 2007, I have 2 portals but the templates I have only uses the middle left and right zone. I've read that I can change the master page, but when I click on Site settings/Master pages I have nothing to change it. Can anybody help me Im new with this. Regards Raq in WSS3.0, there is no built in functioality to switch the master pages (but there is a utility on CodePlex that I have used.. It's not the prettiest but it works :-) In MOSS there is a fea ...Show All

©2008 Software Development Network