nredman's Q&A profile
Windows Forms Collapsible and expansible GridView
Anyone can give me some hits to make a collapsible and expansible grid to display a multi -level data. just like the local debug view in vs2005. Thank in advanced. Thanks Christopher! It didn't take me long to lookup simple tutorials on how to embed the image resources, and voila works without xp visual styles! ...Show All
Smart Device Development Using Notification: HTML Image?
Hi all, I'm using a Notification. When I show it, I would like to display an Image as part of it's HTML content. The application is running in "disconnected mode", and I would like to pull the source image from the file system. 1) Is this possible If so, in the code: HTMLString.Append("<img src='{ }myImage.jpg' width='75' height='75'>"); 2) How do I reference { } from the file system 3) Is there a ...Show All
Visual Basic VB.Net templates
I need to create a project application complete with reports in a weeks time. Where can I find templates to create a project quickly to build on. I am use to VBA with MSAccess but anxious to dive into .net I wish you good luck :d It took me a month or two... Kenny ...Show All
Windows Live Developer Forums Integrate the MSN Messenger 7.5 into Outlook Express on Win XP Pro
For some reason, it won't let me integrate the MSN into Outlook Express, even though I've uninstalled and reinstalled completely. Any suggestions By intergrate do you mean the small side bar of contacts that show within OE If so then you have to make sure that windows messenger is also installed on the machine. Is that still installed on the machine ...Show All
.NET Development Creating of keys in the Registry.LocalMachine
I need to read some keys from registry, but, if keys are abscent, application must create these keys with default values. RegistryKey regKey; ... //then I tried to make such: regKey = Registry .LocalMachine.CreateSubKey(res); //but regKey == null. In MSDN i found that: //============================================================== IOException The nesting level exceeds 510. -or- A system e ...Show All
Visual Studio Express Editions Updating a form from a serialport component.
Having been a Borland C++ chappie over the years, I've basically created my own RS232 object and dumped it in a seperate Thread, which then directly calls a static function in the forms thread, which then updates the the main forms bit & bobs. Problems occured when the RS232 object starts pummeling data into the function before it is cleared etc, and then all goes bonkers! I obviously had broken the cardinal rule "Thou shalt not i ...Show All
.NET Development Help to get a solid UpdateCommand for DataSet
I have a small amount of experience working with writing UpdateCommands for SQL changes, but none of them have involved working with datasets - just passing variables to a datasource parameters in Stored Procedures and having WHERE clauses update them. However, I'm now working with DataSets, and I'm stumped on how to write changes made to the Dataset to the database, and was hoping someone could give me some demo code, or point me in the right ...Show All
Visual Studio Crystal in C++ (VS 2005)
When debugging an error drops out... But i cant find "Enterprise" in namespace. What to do ... c:\documents and settings\serge\desktop\vs projects\si_solu\si_prj\Form1.h(225) : error C3624: 'CrystalDecisions::Enterprise::EnterpriseSession': use of this type requires a reference to assembly 'CrystalDecisions.Enterprise.Framework' while importing type 'CrystalDecisions::ReportAppServer::IReportID ' from assembly 'CrystalDecisions.CrystalRep ...Show All
Visual C++ AssemblyInfo.cpp
I need help, When I create a console app the AssemblyInfo.cpp does not load. All the other source files loads except that one, what should I do Alright, I had a enough. I just added the AssemblyInfo.cpp and now I get TWO C1190 errors. Anyone know what I could do to fix this. Here is my code: #include "stdafx.h" #using <mscorlib.dll> using namespace System; int _tmain() { Console::WriteLine("Hel ...Show All
Visual Studio Express Editions Help :S
i'm new to visual c++ i used to use the free borland c++ 6 enterprise compiler, now i switched to visual since it was a free download the problem is when you have to name the include files... in borland i just typed #include <iostream> #include <iomanip> using namespace std; main() { cout << "I WIN!!" ; cin.get(); } that would run perfectly fine in Borland but in Visual C++ i get these errors: 1>Compiling... 1>P ...Show All
Visual C# DataAdapter+DataTable [multiple tables]
i am using this command to extract data: string sCommand = "SELECT marital_status_id, marital_status, gender_id, gender_title, id_type_id, id_type FROM marital_status, gender, id_type"; but facing a problem because it's not accepting multiple tables: oDataAdapter.Fill(oCustomersDataSet, "marital_status"); DataTable oDataTable = oCustomersDataSet.Tables["marital_status"]; so is there anyway to let ...Show All
Visual Studio VS 2005 RC1 and Crystal Reports problem
I wonder if anybody has seen this error with Crystal Reports for .NET that ships with Visual studio 2005. I know it used to work with VS 2003 and lateley since we cutover to VS 2005, this stuff is broke. VS 2005 migration for APp is not going fine at all Thanks The group options for a date, time or date-time condition field must be a date group options object. Description: An unhandled exception occurred during the execution of ...Show All
Visual Studio Express Editions Changing Font from a ttf/fon file
In one event i do this: 'Font not located at system fonts. Dim strFonts As String strFonts = "D:\FontCollection\Favor.ttf" Label1.Font = New Font(strFonts, 12, FontStyle.Regular, 2, True ) But unlucky it don't work. it will only change the look of the label but did not change it's font. Anyone can help me I don't believe you can load a font this way, I believe it needs to be registere ...Show All
Visual Basic 1 combobox based on another combobox
Hi, Some days ago i started to learn vb9. Since then i’m praticing to gain knowledge. But in my first aplication i’m unable to make a combobox based on another. Can someone help me with the right code. an example of what i’m triyng to do: Let’s sai i have 1 combobox for car make and another combox for car models. so i whant the the combobox of the "car make" to filter the models that will apear on the second combobox "car ...Show All
SQL Server Package running other packages
Hi everybody, I have to create a package that executes other packages I've already created... Every one of these packages run with the same Configuration File, but if I try to execute the main one, including the path of the file, I get errors from the other packages because they can't find it... How can I manage to pass this file and its content to the other packages Here a little explanation of te process: Main Package needs confi ...Show All
