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

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

RoboRubik

Member List

mr3
search and deploy
Chris Pyman
Ertekin
Tryst
Andrew Feldman
Behrooz PB
Charles Lewis
ACCOUNTINGONLINE.US
cablehead
P Cause
j22
Bipolar Penguin
ZopoStyle
Greg Brewer
Pham Hong
adorer
Hooper
AlwaysTrying
tlc660
Only Title

RoboRubik's Q&A profile

  • .NET Development Delete attribute

    How can I delete an attribute from an xml file. You can use XmlReader to read XML and XmlWriter to write it back. For simple tasks like deleting attribute this will be the best (from performance point of view) approach. It will be little bit harder to do then loading document and saving it back and because you ask very basic question this probably would be the best way to start for you. Most likely you miss '@' before attribute name or have namespaces in your XML. It's little bit tricky to use namespace in XPath. (see http://sinan.ussakli.net/code/xml-namespaces-on-xpath-queries-and-xslt ) If you don't have namespaces your Path would look like "/foo/bar/baz/@attName". Where ...Show All

  • Visual Studio Express Editions Lesson #4 - Development

    Sometimes the idea of using the debugger, can be intimdating to those unfamiliar with them. This is a tutorial based in a standard piece a source code that we will supply for the purposes of this tutorial. We're going to make a cheap MP3 player. I hope this tutorial is highly interactive and constructive. Needed Ingredients: 1.) A test directory with about 4 mp3 files. Make them as short as possible. 2.) Create a new Windows project. In the form Designer, add: a.) A progressbar called progressbar b.) Two buttons, One named btPlay and the other called btStop. In their respective text property boxes in the designer, insert Play and Stop. c.) A windows Media Player control. This probably is not in your toolbox ...Show All

  • Visual Studio 2008 (Pre-release) July CTP - Configuration Error

    I have following web.config file. When I navigated to svc file in IIS in the browser, it throws following exception (Did ServiceModel sections change in July CTP ): Server Error in '/ADQuery' Application. You have an error in the <endpoint> configuration. The "binding" setting should be "wsHttpBinding" and the "bindingConfiguration" set to "MyBinding". No behavior setting in <endpoint>. <endpoint contract ="ADQueryService.IQuery" binding=" wsHttpBinding " bindingConfiguration=" MyBinding " address="" /> ...Show All

  • SQL Server Slowly Changing Dimension Historical Attribute causeing same row to be reinserted

    I have a Slowly changing dimension that I am using to populate a dimension table. My problem is this when I run the package and any of the fields are marked as Historical Attributes it will add an additional row regardless of the fact that the incoming data and the data in the warehouse match exactly. I've tried several things to fix this problem but so far none of them have worked. Some of the things I have tried that haven’t worked are to match all the data types (which I have to do anyways) I've tried trimming the strings, I've also tried adding just one column I am using a data conversion to convert them from varchar (the source datatype) to nvarchar(the warehouse datatype) I'm at a dead end here and don't know ...Show All

  • Visual Studio Express Editions Instance of Class and context

    Hi, I have a project that contains the following: Form1------------------Form AccountsForm-------Form Search-----------------Form AccUpdate-----------Class I have created the following instances of the above AccountsForm in Form1 and called it ObjAccountsForm Search in the AccountsForm and called it ObjSearch AccUpdate in Search and called it ObjAccUpdate My question is When I need to reference, forexample, the instance of the AccUpdate Class form within my project I am having to type the full context to its instance Form1.objAccountsForm.objsearch.ObjAccUpdate. somepublic property in this Class My project contains many more Class's, and I have had to draw a table to keep track of where each instance of a ...Show All

  • Visual Basic baby lock

    Hi, i got a couple of questions according to how to disable things in win xp: I'd like to disable the net connection on xp - how can i do that how can i disable installing any program disabling themes disable running several programs disable access to several folders I'd like to write a baby-lock onto my computer because i'm not the only person who uses it, and i don't want to allow others to get full control on my pc. i am working with vb2005. Any feedback is appreciated, thnx Attila Attila Fogel, I guess some of your projects need the Lock functions added. However, the Windows Operating System has provided enough kinds of Lock methods for you. Just use them directly because it is save time and w ...Show All

  • .NET Development System.dll

    Hi, I'm not really sure, if i have choosen the right forum to ask. I try to use a System.ComponentModel.Design.CollectionEditor. But these class is missing beneath others in that namespace. The namespace and assembly (System.dll) is there in version v2.0.50727 (as seen in VS properties). Where can I get an assembly containing the missing Classes Thanks ...Show All

  • SQL Server Excel pivot table. Any language you like as long as its US English

    Hi, I have created an OLAP Cube in SQL Server 2005 CTP2 and can browse it fine in the Analysis Studio / Browse tab. When I use the pivot table feature in Excel (2003) I get: XML for Analysis parser: The LocaleIdentifier property is not overwritable and cannot be assigned a value. Any help is appreciated. Cheers, Adam I have the same problem. I'm using the September ctp  on Win XP Us My current windows user is a french user. I have no idea, I try 3 installations and I always have the same pb: Excel returns me the message, and the BI Visual Studio ML Browser doesn't work. ...Show All

  • Windows Search Technologies WDS crash under Citrix

    Hello We have 2 Citrix-Servers on W3k Standard Server. The users are connecting to the servers with ThinClients over Citrix. We have now some multiple entities: 1. The WDS does not start at logon and when the User starts it, the message "WDS isn't running" is diplayed. The strange thing is, it is running... 2. The message "The WDS index isn't working properly. To fix this problem, you'll need to restart your computer, and you may need to rebuild the index. Select one of the following options..." is displayed. 3. Application Error The exception Breakpoint. A breakpoint has been reached (0x80000003) occurred in the application at location 0x7c822583 WDS version 2.6.5 with the patch Any idea how we can ...Show All

  • Windows Forms from string to form

    Suppose you have the name of the form : string fname = "FormSomething"; How do I create a form object with fname as name Apparently this is not enough: Form f = new Form(); f.Name = fname; Also tried: f.CreateControl(); Can anyone please tell me how to get the form object Thanks!!! Hi, What about form.name (its property). So, what do you really want To call the form by "FormSomething" Or some other use If you want to show the "name" on the title bar just use form.text Thanks ...Show All

  • .NET Development How to sign a Compiled assmebly

    Hi All I need sign a compiled assembly. I don't have source code and I don't know if this assembly is delay signed. If this assembly not signed with public key before, can we still sign it and how we do that thanks, Alan I hope these resources help you: http:/ / msdn2.microsoft.com/ en-us/ library/ ms243141.aspx http:/ / msdn2.microsoft.com/ en-us/ library/ ms247066.aspx http:/ / msdn2.microsoft.com/ en-us/ library/ ms235305.aspx http:/ / msdn2.microsoft.com/ en-us/ library/ h4fa028b.aspx http:/ / msdn.microsoft.com/ msdnmag/ issues/ 06/ 07/ CLRInsideOut/ default.aspx http:/ / msdn.microsoft.com/ library/ en-us/ cpguide/ html/ cpconDelayedSignin ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. mesh in xna

    hello, i'm making a 3d game, i have made a mesh with 3d studio max 9 and i have used the biped tool for the mesh animation, now i need to put the mesh in my game, i'm using de xna framework, i have tried to export the .3ds file to .x file format, but the .x file format result in a big square and nothing else this only happend with the animated mesh because i have exported to .x file format the static meshes and these are perfect, somebody can tell me what kind of format's models are supported in the xna framework or how to export the animation of .3ds to .x file thank you in advance. p.s: i have exported the .3ds file using calgari gamespace 1.5 and 3d object converter, the two of those show the same thing. ...Show All

  • Visual Basic working with dynamically added controls

    Hi In my application I'm dynamically adding n number of controls the control can be a text box or a datetime picker depends on the user's choice. and I have two buttons in my form OK and Cancel. Ok button is to give the messagebox of the text in the text box or the value in the date time picker. the form also contains the tableLayoutPanel on which I'm adding the controls and cancel is to close the form. the problem is I'm getting the value of either the last added text box or the last added Datetime picker. here I'm adding the code of how I'm adding the controls dynamically can any provide me the solution it will be more helpful to me. thanks in advance -GRK Friend WithEvents tempLabel As System.Windows.Forms. ...Show All

  • Software Development for Windows Vista can not extract windows vista setup

    I purchase from circuit city and downloaded using digital locker assistant windows vista business upgrade the following error message appeared 'cannot extract windows vist setup to your hard drive Please ensure that you can create files and folders in the same folders where VistaSetupPrep.exe was downloaded.' help needed no clue how to solve this problem ...Show All

  • Visual C++ Resource compiler truncates text in dialog template to 256 characters

    Resource compiler (VS 2005) issues a warning if the text length in a static control exceeds 256 characters: "warning RC4206: title string too long; truncated at 256". AFAIK dialog template has no such a limit. Is this warning just a 16-bit legacy   This was not an issue until now - we always were able to rephrase a text to fit it in 256 limit. Now we are localizing our product. After translating to German and French the length of the text in many controls became longer than 256 chars and resource compiler truncated it to 256.   So we moved long strings to the string table and setup control text at runtime. The disadvantages are obvious: rather than just translate resources we must change source code and English ...Show All

©2008 Software Development Network