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

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

SpankmeBandit

Member List

Philip Lee
Rico Alexander
RickBo
Mv45
Tony Tang
DerekM
Tiago Tavares
rain_flow
methylamine
hennes
Bill Zack
poppy33611
Kasper Wegmann
Joy19101
ZsoltKiraly
BilalShahzad
CraigHunterFXA
wyattblake
Aleniko
FM52
Only Title

SpankmeBandit's Q&A profile

  • Windows Forms problem with dataview sort

    I cannot get a dataview to sort at all based on the column name! Here is the following code that I'm using: lstReturnContact.DataSource = dsRolodexXSD.CONTACTS.Select(dsRolodexXSD.CONTACTS.Columns(1).ToString & " <> ''")                     lstReturnContact.ValueMember = dsRolodexXSD.CONTACTS.Columns(0).ToString              &n ...Show All

  • .NET Development HTML Form to XML Document

    I am lost, I have been trying to figure out how to add a regular old html form to generate data onto a page saved into an xml document then transformed it through  a xslt to generate a news page.  I read an article on how "easy it was" to do however I know nothing about an XML DOM creation which seems to be like a brick wall to my progress. In the process I've managed to @#$ up my Default.aspx so it is not recognizing or locating something connected with it.... so my questions are: 1. is it possible to create an XMLDom with generates XML Documents with data entered from an HTML form 2. if so is there a walkthrough which ...Show All

  • Visual Studio Tutorials for msbuild

    i am new to msbuild and i want to develop the automated build process for our apps. so i want some tutorials which will give me the good start. i want to learn about msbuild working and how to override its properties. i read some topics in msdn, they explain abt msbuild.exe. but i was not satisfied. thanks in advance for this help. Just wondering which site you tried on msdn, and what type of information you would like to find A couple of site you may or may not have visited and may be useful are: http://msdn2.microsoft.com/en-us/library/wea2sca5.aspx MSDN MSBuild Documentation http://ch ...Show All

  • Visual Studio Intellisense for contained code blocks

    Hi, I am trying to get the embedded or contained code (contained in <script> tags in an aspx page) to be visible to my language service in order to get the intellisense features such as quick info, member select, etc. to work. I want to have the HTML Language Service work exactly the way it does now but allow my own language service to handle only the specified block of code specific to the language. This seems to be possible since the default languages such as C# has intellisense capabilites inside the script tags. For example: < script language ="C#" runat ="server"> protected vo ...Show All

  • SQL Server Report Properties -> CODE issue

    I'm trying to add a code function that returns a text field that is associated to one of the report parameters but am having problems with syntax. The function below works in VB or VBS w/o erroir but in the SQL report i get the following error message. "[BC30807] 'Let' and 'Set' assignment statements are no longer supported." Removing the set statements alone only casues other erorrs. I've tried googling for examples but can't seem to find any. Anyone able to point me in the right direction Is there a reason you are embedding your query in your code Why not just create a Reporting Services data set and then asso ...Show All

  • Visual Studio Express Editions Help me, please

    Hello, my name is Vinnie and i'm new at this forum and I know quite a bit VB2005 and I'm 14 y/o. I'm running a gameserver wich needs a daily restart. And I'm too lazy to restart this server all by myself every single day. That's why I have builded a program called: PowerTimerc. Here's a picture of my program while debugging: http://img80.imageshack.us/img80/1852/pt7fa.png It has the current time: "huidige tijd", the start time: "Start tijd" and the stop time: "Stop tijd" All these times can be set. And I think I made it solid. Because  you can't get a higher number then 25 or 61 and it will drop a format e ...Show All

  • SQL Server Can SQL Server 2005 Express coexist with SQL Server 2005 developer edition?

    Can SQL Server 2005 Express coexist with SQL Server 2005 developer edition on the same PC Yes!!! While installing MS SQL Server 2k5 make sure you install it as named instance insted of default. ...Show All

  • Visual Basic Add combox in Datagrid???

    Dear Team   DO you have a simple code for adding a combobox in datagid   Thank you very much I have added a text file with some extra comments... The code I have sent assumes you want a databound combobox in the datagrid Let me know what you think and see if you can follow my code... ignore the bits where I build a DataTable... it's just so that you can see data in the table and comboboxes when you run the Form... ...Show All

  • Windows Forms Key events

    Can anybody give me a detailed difference and sample code in C# for events like KeyDown, KeyUp, KeyPress This question is better suited for the Windows Forms forum. Please reserve the C# forum for questions specifically related to C# itself. I'm moving your question to the Windows Forms forum. Michael Taylor - 6/7/06 ...Show All

  • Visual C# Finding your application's root folder

    I writing a game application, involving a lot of bitmap images. Due to the size of the images, I can not use the ImageList (Not to mention the difficulty of finding the correct image among 50 others, using nothing more than the index.) The problem is, when the application is compiled, the images will not be compiled with it, so I'll have to know the path to those image files. As I want my application to be as mobile as possible, I don't want to force the user to place it in a specific folder (eg. "C:/Program files/MyGame/") Isn't there some function that allows the application to find out what its root folder is, so I can just use t ...Show All

  • Visual Studio 2008 (Pre-release) Service 'Calculator' has zero application (non-infrastructure) endpoints. This might be because no configuration file was found

    I have followed the hand lab to write the code, build successfully ,run it ,it will throw exceptions: Why, wating for be online. Thanks a lot! Programme.cs using System; using System.Collections.Generic; using System.Text; using System.ServiceModel; using DerivativesCalculator; namespace CalculatorHost {     public class Program     {         static void Main(string[] args)         {             using (ServiceHost host = new ServiceHost(typeof(Calculator)))   &n ...Show All

  • Windows Search Technologies WDS 2.6 EID Encoding

    Hi out there- I would like to find out how to decode the mapi: url -- with the new funking data embedded into the unicode string. Hello pweyzen1, I have attached the scheme for decoding below. I hope this helps. Paul Nystrom - MSFT // // convert the string rep to the eid for it // void CEntryId::FromString(__in CString &strEIDU) { //----------- Decode with YEncode like algorythm ------- // decode using pseudo YENC encoding, everything is shifted up by 0x30 starting it at the '0' letter. // Things that wrap have an escape '!' followed by a 0x60 ...Show All

  • Visual C# Data Binding Architecture Question

    I am confused about the data binding architecture. As an example, let's say I have 3 classes: 1) an Employee class, which contains some basic properties, such as Name, Age, etc. This class employs the INotifyPropertyChanged interface. 1) the main WinForm class, which contains a series of TextBoxes. These TextBoxes are bound to an instance of the Employee class, by listening out for the PropertyChanged event. 3) Finally, I have a user control which contains an employee search facility, allowing a user to search for and select a new employee. The order of events will go like this: user selects new employee within the user control, ...Show All

  • Visual C# Repeating Sequence

    You how you put Console.WriteLine("Press Enter to continue"); and then you put Console.ReadLine(); Now i want it to say would you like another entry Y or N if they enter Y how do i repeat the process of going back to the excution of the program....basically how do i start it over... I know it seems i am asking very basic question...but i started programming very differently than most developers... Hi, Yep, you got it right... . Your input logic must be placed in the do statement so that it would be included in the loop... cheers, Paul June A. Domag ...Show All

  • Visual Basic how to edit the xml file?

    i posted up a question about how to save data to an xml file before and now i'm having problem on how to edit the xml file i have a form with labels displaying the saved data and a button saying edit. when the edit button is clicked. a form with textboxes will appear with the info in. i want to ask, how can i edit my xml file Are you hiding the XML tags from the user, and just having them edit the underlying data The answer to your question depends on how you store your data in your program, and whether you want the user editting XML tags or simply data. If I recall, there are XMLDocument commands you ...Show All

©2008 Software Development Network