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

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

AbsoluteZero

Member List

Gary Chang - MSFT
hjt
Udi Dahan
mmcqueen
Christiaanpmg
LewisPringle
nilaavu
Sheng Jiang (蒋晟)
DotNET_Guru
Shivan4u
Donnie H
peterdarvas
Torsten Grabs
fburns
S. Ali Tokmen
Sinbad_il_marinaio
Roger C Garrett
PavanGY
Kristian Kjærgaard
sperlis
Only Title

AbsoluteZero's Q&A profile

  • Visual Studio Team System Changing the default checkin action from 'Resolve' to 'Associate'

    Does anybody know how I can change the default checkin action from 'Resolve' to 'Associate' for tasks   I've been looking through the process templates and I am either blind or it's not there. Our development team is complaining that they want to make multiple checkins for the same work item but they are resolving issues with the first checkin instead of just associating...     I am afraid that there isn't a way to just specify the default checkin action when the user checks the checkbox on the work item to be checked-in. If the checking action <ACTION value="Mic ...Show All

  • .NET Development .NET remoting error:

    I have a little asp.net application. I'm trying to get .net remoting working. But Im getting this error: Server encountered an internal error. To get more info turn on customErrors in the server's config file. I need to know how to get the specific error I have turned on CustomErrors: <customErrors mode="On" /> But still I get this error please help Also sometimes, when I run my remote code from one end i.e. from myMachine/myApp to server1/myApp (sending serialzed data and such over TCP/IP) it works fine, no probs but going backwards using the same EXACT code i.e. from server1/myAp ...Show All

  • Visual C++ Problem with generic class declaration on C++/CLI

    Hi all, A couple of days ago I saw the following C# declaration for a generic class. Which is a very helpful construct in some situations. namespace ns { public class Base { public int data; } public class GenericBase<T> : Base where T : GenericBase<T> { public int data2; } } I’ve tried to convert the above declaration into C++/CLI but I cannot get the right declaration for such a construct. The following is my first attempt, and when it failed I thought I might need to forward declare the “GenericBase” but I’ve failed declaring th ...Show All

  • Visual Studio Express Editions Using windows media player in vs 2005 express???

    Ive tried the AxWindowsMediaPlayer1.URL = "file name"  and the codes ok but any and all of the files i try to play come up with a message that sais " the file you are trying to play has an extension that does not match the file format" and then won't work. what can you give us more details also, try to update the file types. and then open the file ...Show All

  • Windows Forms Accessing Child form function/procedure from MDI from using events and delegates.

    Hi folks, Recently only i have joined in this form, for a long time i have been struced by this problem thats why i have posted our folks for good solution. Below i have listed my requirement. I have one MDI form name myMDI and two MDIChild form myMDIChild_1 and myMDIChild_2 respectively. then 1. In the myMDI form, i draged the toolbar using the window ...Show All

  • Windows Forms windows explorer??

    Hi, I am writing a kind of windows explorer. It will show the files in a folder. I use treeview to navigate in folders and how can i get the name of  files in a folder any idea using System.IO; DirectoryInfo info = new DirectoryInfo(@"c:\My Directory"); FileInfo []files = info.GetFiles(); DirectoryInfo []subDirs = info.GetDirectories(); ...Show All

  • Windows Forms ¿Why TaskVision does NOT use DataBinding?

    ¿Why TaskVision does NOT use DataBinding I see a lot of code doing things like oneDataRow["someField"]=someTextBox.Text; I am building a big (i am in 5° Month, of about 6 months of development, and maybe more, if the client likes it and wants more) project in .NET, in Windows Forms,  and I use DataBindigs for every window, but some times i do ...Show All

  • Visual Studio Finding a group of text in between double x0a's with RegEx

    Hello. I need to select all the text between double newline characters with a RegEx expression but the syntax is killing me! I am searching for a name but I need all the other info within that group as well and the problem seems to be that there is also a few newlines in some of the 'groups' that I need. I tried something like this: Dim Expression As New Regex("\012{2}( <tag>.*individual.*)\012{2}") This chokes up on me when it hits a single x0a, I believe. I am using the 2.0 Framework if that matters. Can someone help me Thank you, B Langston Hello, You're asking to capture some text between ...Show All

  • SQL Server Sql Express Advanced feaures

    I am wondering an official answer on if Sql Express supports users creating their own reports and if it supports Integration Services or Analysis Services. Express Advanced Services includes a special version of Reporting Services, Integration Services and Analysis Services are not included, and the current plan is that they will not. ...Show All

  • Windows Forms MultiThread in VB.NET

    Hi I want to make an application in VB.NET and I want this application to  work as follows, There will be an array of items on which I want to  perform a specific operation (MyTask), with the help of multiple  threads. for example say the array is holding 12 items in it, and I want to  create 3 threads to do the work, first therad reads  ...Show All

  • Visual Studio 2008 (Pre-release) XML column support?

    Hello! Linq exists in various flavours, e.g. DLinq and XLinq. Is there a convenient way to take advantage of the new XML column features in SQL server 2005 when using DLinq If yes, any hints Best regards, Heneik Dahl Yes - it is like a string. Updates are at the entire string level, not based on difference between before/after XML. Dinehs ...Show All

  • .NET Development Call Detail Record Application using ASP.Net and C#

    I want to develop a web based CDR(Call Detail Record) application (Billing System). Please help me out with getting started and preferably forums/websites/blogs where I can gather some more information and code. Thanks in Advance. This request is very very urgent ---- Please help. Hemant Kulkarni You have already found a great forum. Please try out Visual Studio .NET 2005, take a look at the documentation and re-post if you have any more specific questions. Thanks. ...Show All

  • Windows Forms Displaying nested children elements in DataGridView

    Hello, Let say I have the following XML file : <Patients> <Patient> <ID>100</ID> <NAME>Sarah Readings</NAME> <DESC>flu</DESC> <FORMULA> <PARAM>panadol</PARAM> <PARAM>linsep</PARAM> </FORMULA> </Patient> </Patients> I would like to display this data in a DataGridView table. Normally I would load it to a DataSet and map it to a DataGridView. However, as the node <FORMULA> would have multiple children nodes <PARAM> this could not be done. I imagine the output table would have two rows for this single rec ...Show All

  • Visual Basic date of birth

    hello i am very new to visual basic but have tried to work this out myself the whole day and got no where. i am attempting to design a form where by the person fills in their date of birth and it has to be checked to make sure they are old enough, between 21 and 62 does anybody have any idea at all please, as i have totally given up Something like the following Dim d As String d = Textbox1.Text Dim age As Integer = DateDiff(DateInterval.Year, CType (d, Date ), Now) If age >= 18 And age <= 62 Then msgbox("OK") else msgbox("Outside Ran ...Show All

  • Visual Studio Express Editions container

    I am developing an application where I need to store 100's of html files (Static - already I know the number and name of the files) and when customer clicks some option I need to display the file... My Question is, is there any container or data folder there in visual basic 2005 so that i can embedded the html files with the application. There should not be any copy in the local hard drive, the html files should be embedded inside the application. Is there any component there to do this... This is a Shot in the Dark....... http://download.microsoft.com/download/6/2/4/6247616D-A0C7-4552-B622-3F0450DE2462/10VB.wmv ...Show All

©2008 Software Development Network