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

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

Yaroslav58211

Member List

almor
cooz
paschalia
Fred_101
samo9789
Karen C
Ken Milne
Mediocretes
ben
cjs.
rscp
computerguy162
DanMelson
Michael_001
rakesh_halder
Catalin Enescu
Devesh Srivastava
Lars-Inge Tonnessen
Ste2006
KentaroM
Only Title

Yaroslav58211's Q&A profile

  • .NET Development delete XML node with JavaScript/JScript

    [code]function loadXML(){ var bOneway = document.form.oneWay.value; var bReturn = document.forms["form"].elements["return"].value; var bOpenjaw = document.form.openJaw.value; var xmlDoc = new ActiveXObject("MSXML2.DOMDocument.3.0"); xmlDoc.async="false"; { ================================== removed unnecessary code ================================== } // If the XML document has been completely loaded then proceed if (xmlDoc.readyState==4) { xmlDoc.loadXML(document.form_dummy.optionXML.value); document.form_dummy.optionXML.disabled=true; var optNo = parseInt(document.form.o ...Show All

  • Visual Studio Team System How to accomodate multiple products with a work item

    Our product manager has started to use team foundation. We have one project for our overall product family and our product manager asked me how we can associate a work item with multiple products. This is not the same thing as an area path, as one core feature may appear in multiple products. Does anyone have any ideas on how this can / should be handled     Hi, Glad to hear you've adopted Team Foundation Server :) Work Items in Team Foundation Server are really easy to customize, so I would suggest using a custom field and a global list.  One our Program Managers has a great blog entry for t ...Show All

  • Visual Studio Team System Treatment for Delayed deliverables(internal) - MSF Agile

    How to handle delays in deliverales...(delays during iterations) currently I just edit my project plan and shift " finish date" of  all dependent tasks. Do we have in  MSF Agile some workstream to analyze "Delays" and producing reports etc Hi vinaymishra,  Maybe the workstream "Guide Project" is what you are looking for. Pay special attention to the activity "Assess Progress" which talks about schedule, date problems and dependencies. Also the workstream "Guide Iteration" might help you. Cheers Mariano ...Show All

  • Windows Live Developer Forums About outlook express' interfces

    Hi All,     I have used outlook express' interfaces i.e. IStoreFolder and IStoreNamespace that are for the manupulation of messages and folders of outlook express. These are at path: http://msdn.microsoft.com/library/default.asp url=/library/en-us/outlookexpress/oe/reference/ifaces/istorenamespace/getnextsubfolder.asp   in MSDN. Now i want to get accounts/identities of outlook express and there are interfaces like IImnAccountManager , IImnAccount  and others found at: http://msdn.microsoft.com/library/default.asp url=/library/en-us/outlookexpress/oe/reference/ifaces/istorenamespace/getnext ...Show All

  • Smart Device Development Upload a file on FTP server

    Hi all, I want to know how i can upload files on ftp server. I tried to use opennetCF but it doesn't work every time. The GPRS connection works fine, the log in to the ftp server too, but when i try to send a file I have often this error : "couldn't open passive data connection, no DataConnection IP was given." So, Maybe i have to use another way to send the files, and if someone havce an idea, thanks to tell me it. Have you contacted your carrier to find out if particular GPRS network allows for FTP upload ...Show All

  • Windows Forms Combo as Lookup

    Hi There! I am showing a ComboBox of another form as a lookup control, it loads perfectly and works the way I want, but the problem is that i want to show that lookup control form under the active cell of Data Grid. Please guide me how can i possition that form just under the active cell of Datagrid. Waiting for response! Shani. You can retrieve the rectangle of the cell within the DataGridView using    DataGridView.GetCellDisplayRectangle() From this, you can get the location of the lower left hand corner, to which you have to add the location of the DataGridView within your form.  ...Show All

  • Visual Studio Express Editions Windows Forms Opacity where is that ?

    im using vb.net 05 express, im trying to make a transparent form, where is the The Opacity property i been looking everywhere hi, its in the properties table at the bottom under "window style" tab has its value as % or if you want to put it as code it can take value between 0 and 1 ...Show All

  • Visual Studio Express Editions stacking text in a text box

    hi in my form i have two text boxes, the first is where you enter the message and the second is where the message is displayed but i want it so when you send a new message it doesn't erase the las one out of the display box and stacks it oh well that explains it i was using TextBox2.Text = TextBox2.Text + TextBox1.Text, when i do it it puts the new message on the same line, how do i move it onto the next ...Show All

  • SQL Server Report parameters do not display

    Hello,   I am writing C# .Net 2005 rdlc report. I put reports parameters. When I see the report in browser, these parameters do not display, why   Thank you.   Hello,   You are right. I used report viewer. How can I use report services project in .net 2005 – I don't have a kind of this project (In my computer I have also .net 2003 and I can use report services project).   Thank you. ...Show All

  • Windows Forms simple question -Round Robin picturebox fill

    Hi, Simple question but I can't find the answer. I have a listview set up where the user double-clicks on an image file which then loads the image and filename into a picturebox and label resectively on the main form. There are 6 pictureboxes on the form I would like the app to populate all 6 boxes in a round-robin fashion. i.e the first image goes into picbox1, then 2nd image goes into picbox2 etc and when it gets to the end it starts again. Unless they press the "Close" button So far I have a bit of code that populates the first one, but I am not experienced enough in programming to get it to go to the next one etc. ...Show All

  • Visual Studio why runing "vsregex.exe GetOrig 8.0 Exp" so slowly much?

    hello all; i rebuilded the vspackage modified , before i runed it in debug model,i runed the command " vsregex.exe GetOrig 8.0 Exp", but why it is slow so much did i miss something   thanks . Hi Matt, Unfortunately, this command takes a long time because a lot is going on. While doing this, we delete the Exp registry hive, recopy the entire Software\Microsoft\VisualStudio\8.0 tree, copy some additional needed files on disk, and run "devenv /rootsuffix Exp /setup". All of this simply takes time to reset. Note that you shouldn't need to do this often. You only should have to reset the experimental hive if you ...Show All

  • SQL Server TSQL for permissions script ?

    Hi There I know i can script permissions for a table via enterprise manager but i need to do this for hundreds of tables, is there a TSQL command to generate permissions script file for a table then i can do this via a dynamic script Thanx You can do this in a couple of ways.  One, create a .NET application in C# or VB.NEt using SMO.  Or you can use TSQL.  To display all the tables in a SQL Server database, execute a SELECT * FROM sysobjects WHERE xtype='U'.  Then you can do your iteration to do a GRANT, DENY, REVOKE on the user tables generated from the list. ...Show All

  • SQL Server Custom connection manager development sample?

    Does anyone has code/sample/tutorial/pointer to developing custom connection manager with a custom UI. And then developing a custom task with a custom UI that can point to this custom connection manager... and passing values during runtime from UI to the custom class. TIA, Nitesh The first updated Web release of BOL will contain one sample that works with SQL Server and simply asks for server name...a kind of "Hello World" version of what you're asking for. The second Web release next spring will contain a second sample, a replacement Excel connection manager that includes a checkbox for Import Mode to resolve the common "mixed data typ ...Show All

  • Visual Studio Team System Branching Strategy and Tracking ChangeSets to Multiple Branches

    I am trying to work out the best branching strategy and whilst I realise team foundation pretty much allows for any scenario, this unfortunately makes deciding on a strategy even harder :) As a minimum I want to have a multiple branches that represent a baseline of code on each of my testing environments (dev,testing,staging,production). Are there any basics rules to observe for example should these be represented as folders branched within the same TeamProject, or should I have a Team Project maybe that represents each of my environments Also, I have been experimenting within branch/merge. The main problem I have come up against is th ...Show All

  • Visual Studio Team System Keyword Expansion using Team Foundation Server?

    Hello! We've just moved some projects from VSS to Team Foundation Server and have now noticed that the keywords e.g. $Log $ or $Header $ no longer get processed. Some advice would be greatly appreciated. regards, Michael As linked, keyword expansion was cut for v1. To clarify (since your words were "no longer"), Team Foundation Version Control (aka Hatteras) is NOT built on the VSS codebase. It's a question of whether we implemented keywords or not, and if so, whether we matched up to the VSS ones or not (we planned on matching them fairly closely, as I recall). And, if you moved them via the migr ...Show All

©2008 Software Development Network