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

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

ggsubscribe

Member List

lostromich
_target_
sureshv
biscuitlad
bluesky168
Philippe Cand
sani007
AndyJ_PS
Terotech.Com Ltd
J Noble
JTechOnlineGuy
Bart Butell
Noah Nadeau
nobodyman
Sarguna
Ackamajack
janetfan95758
laiseng
HariAdu
Marcus Widerberg
Only Title

ggsubscribe's Q&A profile

  • Visual Studio 2008 (Pre-release) How to assign database/source of ListView programmatically in WPF?

    I tried some sample coding from the net. It uses the XMLDataProvider <XmlDataProvider x:Key="MyData" XPath="/Info"> <x:XData> <Info xmlns=""> <Song Name="Love at first sight" Time="4:04" Artist="kylie" Level="3" Disk="Disk-1" /> <Song Name="At Night" Time="4:31" Artist="Shake Down" Level="4" Disk="Disk-1" /> <Song Name="Believe" Time="3:54" Artist="Cher" Level="5" Disk="Disk-2" /> <Song Name="Don't cal ...Show All

  • Visual Studio Team System Template for Customized Text Field

    Is it possible to include a template for a customized text field For example, I want to create a field named "Impact" and I want it to take the form of the following: ================================================================= Impact: Product Management: Development: QA: ================================================================= So that representative of each group will enter his/her impact statement beside the appropriate line. Will this be possible Thanks, Maggie I'd love to see an example of this xml code. I've been trying for days now to get something to show up in my field :( Phil ...Show All

  • Visual Studio Team System ConsoleTraceListener causes Unit-Tests to fail

    if I add a ConsoleTraceListener to the app.config of a test-project (proj-B) to log messages of the actual dll being tested (proj-A), only the first unit-test passes. All others fail with the following error-message: Test method TestProject1.TestTest.TestMethod2 threw exception:  System.ObjectDisposedException: Cannot write to a closed TextWriter..    at System.IO.__Error.WriterClosed()    at System.IO.StringWriter.Write(String value)    at System.IO.TextWriter.SyncTextWriter.Write(String value)    at System.Diagnostics.TextWriterTraceListener.Write(String message)    at System.Diagnostics.TraceListener.WriteHeader(String source, TraceEventType eventType, Int32 id)    ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. VertexPositionTexture Problem xna beta 1

    Hello guys!! I'm trying to texture a simple face of a box composed by 2 triangles! I'm using the documentation example "How to: Apply texture to 3D primitives" the code... effect.fx uniform extern float4x4 WorldViewProj : WORLDVIEWPROJECTION; uniform extern texture UserTexture; struct VS_OUTPUT { float4 position : POSITION; float4 textureCoordinate : TEXCOORD0; }; sampler textureSampler = sampler_state { Texture = <UserTexture>; mipfilter = LINEAR; }; VS_OUTPUT Transform( float4 Position : POSITION, float4 TextureCoordinate : TEXCOORD0 ) { VS_OUTPUT Out = (VS_OUTPUT)0; Out.position = mul(Position, WorldViewProj); Out.textureCoordinate = TextureCoordinate; ...Show All

  • SQL Server output to a text file

    Is it possible to send the output of a query to a text file in a stored procedure When I run stored procedure in Query Analyzer I am able to do that and I am wondering if this is possible in a automated way Hi, you can call the bcp utility from stored procedure.. create procedure copytoTextFile as exec master..xp_cmdshell 'bcp "SELECT au_fname, au_lname FROM pubs..authors ORDER BY au_lname" queryout c:\Authors.txt -c -S -Usa -Ptest' ...Show All

  • Visual Studio problem of using VS.net 2005

    I just installed Visual Studio .net 2005 But it's failed to create any project because of the error 'the target property is reserved and cannot be modified'. Is anyone here ever known this error and have any solution Thanks ...Show All

  • SQL Server when is the appropriate time to fire t-logs backup

    Hi, Is it alright to run t-logs backup while complete or differential backup is still running in the background Objective is zero data loss and faster recovery time, which of the schedule is appropriate 1. full backup (weekly), then t-logs afterwards (round the clock, every 15 minutes), diff (daily) 2. full backup then differential then t-logs (round the clock,every 15 minutes) 3. full backup at the same time running the t-logs continuously, also while running diff backup (is this possible ) Jeff Irish wrote: maranbe, If zero dataloss is your goal perhaps you should be running a SQL 2005 Mirror. However, scenario 2 as presented should work. Full backup weekly, Differential Daily, Transaction Logs every 15 mins. The m ...Show All

  • Visual Studio Team System Is it just me or are others finding CTP5 dog slow?

    I routinely get delays and a pop-up reporting "Visual Studio is busy ...." with CTP5. Even the roll-out of the schema view is slow. I did not see this in the previous CTP version. My workstation has dual processors, 2G RAM, no disk constraints. VSS is engaged. My database project has less than 100 objects - similar in size to the project I was using in the previous CTP. #1 Is this a problem others are having #2 Is there are way to turn off the automatic error checking when each script is saved Can this be invoked by request - perhaps during the build event only for example (To try to speed things up). Thanks. We did a perf update with CTP5; are you running with that install It's lo ...Show All

  • Visual Studio Express Editions Currently Playing Media

    Hi, I'm making a utility that needs to monitor when the audio changes that you are listening to in Media Player, is there anyway to do this What I want is an effect simular to the Media Information option in messenger, where Media Information updates as your song changes, etc. Any thoughts I would be gratefull, thankyou. I think there is but I can't say for sure, PsychUK. It's nice to see you again! Check out the MCISendString interface for windows Media player. I haven't used it since vb6. But it's pretty vast. I have tons of vb6 code for it. Renee ...Show All

  • Visual Studio Express Editions Structures with arrays

    I have a structure: - Structure TSTFILE <VBFixedString(20)> Public FLNAME As String <VBFixedString(20)> Public FLLIST As String <VBFixedString(1)> Public FLSECL1 As String <VBFixedString(1)> Public FLSECL2 As String <VBFixedString(1)> Public FLSECL3 As String <VBFixedString(1)> Public FLSECL4 As String End Structure This seems an obvious candidate for an array, but how do I do that Dim MyArray(5) as String However you can not control the actual length of the members like you did in the structure ...Show All

  • Windows Forms Outlook navigation pane like functionality in a Winforms app

    What control would I use for creating navigation panes like like Outlook uses on the left side of the app (Mail,Calendar,Contact,Tasks) Clicking on a custom navigation pane would update a treeview or fire an event to add some other control into the upper part of the left side of a splitter container. Thank you, -Greg this link is talking about outlook list bar control http://www.vbaccelerator.com/home/net/Code/Controls/ListBar/Outlook_List_Bar/article.asp ...Show All

  • Windows Forms stretch form to full screen c#

      Is it possible to strech my form to the resolution of my screen  [coded in C# net2.0] I need to install my application to computers that have a lower screen resolution.    1280x1024 to 1024x768 for example.   Thanks for your helps   Mark Hi, would a simple form maximizing work for you [set form's WindowState property to Maximized...] The controls on the form would have to have their Dock and Anchor properties set appropriately.. Andrej ...Show All

  • SQL Server DB PROCESS IS DEAD

    Dear Friends, Please help me in below unexpected error. Server Details: HP Proliant DL385 G1, 142*6 GB AMD Opteron Processor 280, 2.40 GHz 4.00 GB RAM, DVD ROM Win2K3 R2, SP1 64bit SQL Server Details: SQL Server 2000 Enterprise Edition 32bit Service Pack4 Network Details: Clients can access the server by Terminal Server and also by Direct Connectivity. The connectivity is provided by RF network Provider. Application Details: Application was designed by Power Builder 6.5. Error Details: If I divide my clients connectivity to the server then it is divided into 3 types TYPE A >> Users inside my LAN using a DNS server th ...Show All

  • .NET Development Gen 2 Memory

    Hi, I have a recursive loop which gets file info for folders. THe data is obviously huge and when I run the perfmon, I see that the Gen 2 Heap size is around a constant 250 MB. I assume that this will be a problem and if so how can I reduce this.. The code is pretty simple .. I have 3 main datatables that are class level variables I have a recursive loop which fills in these three tables with all the files and directory information.(I use the BeginLoadData, LoadDataRow,EndLoadData for this) and I finally update the DB. I get the OutofMemoryException at times. Now how do I fine tune this for performance Thanks in advance Soni Chris, Thanks for the update. In ...Show All

  • Windows Forms Context Menus for webbrowser sub elements

    Hi All I'm working on a custom control for my Web Editor. The control currently just contains a webbrowser control. What I want to do is have different context menus for various web elements. For example, a Form Button would have an individual context menu when right clicked, and some Text would have a separate context menu. I'm assuming somewhere I'm going to have to use System.Windows.Forms.WebBrowser or something similar, but how do I define the individual elements within a webpage Hope this makes sense! Doesn't that create security issues with the eventual User of the application I'm sure I read somewhere that using HTML/JS DOM requires the user to have certain privelages. I could be wrong though ...Show All

©2008 Software Development Network