SteveInHampshire's Q&A profile
Visual Studio Express Editions To check multiple Checkboxes in CheckboxList using values from Array.
Hi All, I have an array which contains values of the checkboxes that I would like to check in the CheckBoxList. However, when I do a loop only 1 checkbox is checked. Is it a coding error I am using Microsoft Visual Web Developer 2005 Express Edition and am coding in VB.Net. I would really appreciate it if you could help or assist me. Thank you so much. tb_lessons.Text contains a String for eg: 2,3,4 Here is my code: ...Show All
SQL Server Upgrade to full version?
Hello, Can I install Microsoft SQL Server 2005 Express Edition with Advanced Services over Microsoft SQL Server 2005 Express Edition or must I uninstall the basic version Thanks Frank ...Show All
Windows Forms Databound Combobox Problems
VS 2005 allows us to drag a table (Detailed View) from the Data Sources window to automatically create an form that has databound controls, Binding Navigator, Binding Source, etc. I have a Contacts table and a Categories table. Categories is the Parent (One) table. Contacts is the Child (Many) table. Categories (<CategoryID>, Name) Contacts (<ContactID>, <CategoryID>FK, Name) CategoryID and ContactID are int Identity not null f ...Show All
Visual Studio Express Editions Install failure on Visual c# Express Beta 2
[Sorry for the cross post - I posted in wrong forum originally] Have tried both the bootstrapper and the downloaded image and both fail on installing Visual c# 2005 express. I have full licensed version of Visual Studio 2003 and no other beta versions. Tried installing on three different machines and all fail at the same point. Machines are all running XP Pro SP2 (licensed), all are above recommended spec, all Intel P4 chips and all with a  ...Show All
Visual Studio Project is not visible if always show solution explorer is unchecked
Hi, I have created my custom package. Normally It works fine. but the following is the new issue which i m facing these days. 1) Open VS.NET 2005 IDE 2) Create a Custom Project 2) Click on options under tools menu 3) Uncheck the "Always Show Solution" checkbox My custom project becomes invisible Whereas other projects works fine. If anyone knows how to resolve this. please help... Regards Kajal Hi kajal, I am al ...Show All
Visual Basic Writing data to a text file
I need to export the results of a view to a text file. The view does all of the formatting, including inserting line breaks between each field and two line breaks between each record, which is what the text file requires. Should I use the StreamWriter, StringWriter or TextWriter class How do I refer to the view in the parameters Your code was very helpful, and I think I'm almost there. I'm not referencin ...Show All
Visual C++ reference binding
I already submitted a bug on that but nevertheless i want to know if other users met that problem. Although Beta1 was conformant on that point in Beta 2 you can write something like this: struct X{ X(){} X(X&){} }; int main{ X& ref_to_X=X(); X(X()); return 0; } (etc more detail on the bug report) that is non standard compliant(a rvalue must be bound ...Show All
Windows Forms Date Time Picker
Hi, Anyone know how to format the Date Time Picker in C# to shows MONTHS only Hi, Sorry, please allow me to ask more, can you guide me more details on how to traverse the list view items and create the loop Thanks. ...Show All
Windows Forms Why TaskVision does NOT use DataRelations?
"A DataRelation is used to relate two DataTable objects to each other through DataColumn objects. For example, in a Customer/Orders relationship, the Customers table is the parent and the Orders table is the child of the relationship. This is similar&nbs ...Show All
Windows Forms Windows and Roles base Auth ?
I have an application that I am creating where by If the user is on a the local domain then they dont have to log on because they are idenitfyed by there WindowsIdentity also there are roles within the application that are needed ie User,& ...Show All
Visual Studio Express Editions Unexpected end of file problem
Im reading a tutorial at cplusplus.com and Ive got this code: #include <iostream> using namespace std; int main() { cout << "Hello world!"; return 0; } And so I go to build and then build solution because im pretty sure thats what you have to do before compiling and I got this: ------ Build started: Project: example2, Configuration: Debug Win32 ------ Compiling... example2.cpp .\example2.cpp(8) : fatal error C10 ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Multiplayer Client/Server Design
I have been developing some board and card games with MDX using C# (.NET 2.0), and I want to take the step into making them available to play online in a multi-player environment. Reading Tom Millers Kickstart, I settled in on the idea of a Client/Server Lobby style application, similar to zone.msn.com using DirectPlay. As I started to work with DirectPlay I soon found it was deprecated, and that developers were moving to the Sy ...Show All
Visual Studio Configuration aware AdditionalReferencePaths
Hi! I have a msbuild project file that I'm using with desktopbuild+teambuild. It's building a VS.Net solution file with both debug + release configurations. I have a couple of <AdditionalReferencePath> items defined to solve file based assembly references in the projects of the solution. My problem is that I want to use different paths depending on what configuration that is used. So for example, what I want to do is to make the build ...Show All
Visual C++ VC stops executing
Its vc++ 6.0 Enterprise edition running on windows xp. And specifically happens when i do this: CMyDocument::OpenAVI(CString FileName) { AVIFileInit(); PAVIFILE pAviFile; AVIFileOpen(&pAviFile, FileName, OF_READ, NULL); AVIFILEINFO fileInfo; AVIFileInfo(pAviFile, &fileInfo, sizeof(fileInfo)); PAVISTREAM pVideo; & ...Show All
.NET Development To get foldername from a folderPath
Hi, Is there any method or properties in C# by which I can get folder Name from a folder path... Hi, You can use "String" methods to detect the directory name too : Dim FolderPath As String = "C:\mmm\" If FolderPath.LastIndexOf( "\" ) = FolderPath.Length - 1 Then FolderPath = FolderPath.Substring( 0 , FolderPath.Length - 1 ) MessageBox.Show( "The directory name is : " & FolderPath.Substring(FolderPath.LastInd ...Show All
