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

Software Development Network >> Carl Prothman's Q&A profile

Carl Prothman

Member List

unclejim
Kevin Tambascio
slwhaley
Divermarv
NeumannJ
JohnSLG
Igorba
PlayJunior
Neeraj Pandey
Darren Kennedy
Luis Fraile
tech710
jeez
vistabuild5308
Pintu Shukla
Al.Vazquez
csgear
Bob Lan
Judy USAM
hawklixingyi
Only Title

Carl Prothman's Q&A profile

  • Visual Studio Express Editions Starter Kits are a nice idea - but in reality they are a huge waste of time

    I am the CTO of a large Microsoft-centric tech consulting service. I have spent considerable time over the past month studying and trying out this new starter kit technology. While I must say these starter kits are a great idea, the reality is that they are so poorly supported as to make them worse than useless - they are a waste of time and energy. My take is that they can't be easily installed correctly, as I have attempted installs of each starter kit on various systems, local and remote, and nothing runs. I have wasted hours on these forums, finding an incredible number of similar postings that mirror my own experiences, but none con ...Show All

  • Visual C# Working with DataBase

    Hi, I'm new in using C# and VS.Net. I created a new data connection in the VS. wizard, and it added the dataset,and the data Adapter. I added DataGrid control to the form, and set the databinding properety to the dataset. My question: When I made changes in the DataGrid control at run time, There are no changes in the DataBase. How can I make Updating for what I write in the DataGrid into the dataset. Can, I make somethig to use in future projects. Regards... Hello Wasim ! You should fill the DataSet programmetically that is preferable to maintain more control at progammer's end and then call the data binding ...Show All

  • .NET Development Installation of VS 2005

    I am tired of trying installation of vs 2005. I did it succesfully but because of some iis error had to reinstall the stuff. After unistalling it completely (but in a haphazard order) now i cannot install it again. It fails while installing msxml parser 6.0. You might have to clean up your registry. Try http://www.download.com/3000-2094-881470.html . ...Show All

  • Windows Forms DataGridView - Binding to object & sorting

    Hi, I'm trying to bind my Windows Forms Data Grid View to a list of business objects. Trouble is when I do this none of the columns are sortable despite setting the sort mode to Automatic. I've tried a variety of things to get automatic sorting working with no luck. How is it done Cheers When the DataGridView is databound it asks the datasource if it supports sorting and only enables sorting on the columns if it does. When binding to business objects through a BindingSource the BindingSource does not implement sorting, so the DataGridView does not enable sorting. Check out this article for more information on adding sorti ...Show All

  • Windows Forms 128 Bar Code Printing

    I'm trying to print a 128 bar code but can't find anything in the documentation. It's the first time I'm trying printing in .net and so far I can print text fine with the PrintDocument class. Can anyone help I'm using a Zebra TLP 2844 printer (if that makes any difference) I am researching a similar issue. How do I send text to a zebra printer using the ZPL control codes I presume I cannot use the event.Graphics.Drawstring method call Or is it really that simple, and I am a dufus Is there a way to use the print preview dialog with these control codes as well Any code you can post would be useful ...Show All

  • Visual C++ Dynamically bind to a library and function

    Within my .NET managed class instance called LibraryFunction i want it to be able to: 1. Dynamically load a given library given it is not already loaded. 2. Dynamically bind to a function/method within this library. 3. Call this function with a given set of parameters. The binding is made possible by instance variables like mLibName and mFunctionName. My current unmanaged class uses code like the following: FARPROC f = (FARPROC)NULL; HINSTANCE libHandle = GetLibraryHandle(( const char *)mLibPath); if (libHandle == (HINSTANCE)HINSTANCE_ERROR) return NULL; else { f = loadLibraryFunction(libHandle, ( ...Show All

  • Visual Basic Creating Relations within a Dataset

    im having a bit of trouble creating relations my dataset has 3 tables (client, episode, appointment) one client can have many episodes, and any 1 episode can have many appointments Client (0) INUMBER - primary key Episode (1) ENUMBER - primary key INUMBER - foreign key Appointment (2) ANUMBER - primary key ENUMBER - foreign key so i thought to set up my relations i would only have to do the following:- dsResults.Relations.Add( "NodeRelation1" , dsResults.Tables(0).Columns( "INUMBER" ), dsResults.Tables(1).Columns( "INUMBER" )) dsResults.Relations.Add( "NodeRelation2" , dsResults.Tables(1).Columns( "ENUMBER" ), dsResults.Tables ...Show All

  • SQL Server List all your connection managers

    Hello, I'm building a custom task which has a property ConnectionManager which obviously allows you to select which connection manager you're goinng to use. I know how to get the list of connection managers but how do I make them appear in a combo-box in the properties pane Anyone got some code for that Hopefully this is fairly trivial for you developer types out there. Thanks Jamie I believe that the key is the TypeConverter property of property objects. If you were talking about a custom property in the Data Flow (which I realize is not your question) whose values came from an enumeration, using TypeConverter would both constrain the ...Show All

  • .NET Development SMTP Problem

    Hi folks I am new to the microsoft forums but have been reading them and realise how good you people are at programming. I have been crying out for help with numerous things and even tried yahoo chat.....what a disaster. Anyway I am having a problem with sending emails through the createuserwizard control in .net 2005. When I run the application and create a new user through the wizard control the application is just hanging. It seems as if its stuck on the email settings. If i take the mail settings out of the webconfig file it doesnt hang anymore, just brings up an error saying I have no email sending software or something to that ...Show All

  • Visual C# Getting StreamReader to recognize unicode escape characters

    I am reading in a file which has a header similar to a java properties file. name=My Software Package The issue is the value of the property (the right side of the =) can contain unicode escape characters (\udddd). When this file is read in by my StreamReader (new StreamReader(file, Encoding.UTF8)) the escape characters are not recognized as individual characters. Instead of seeing one symbol they are read in as six chars (ie \\u02ed ). Is there any way to read in this file so it will recognize these escape sequences I have tried all sorts of variations on use the Encoding.Decoder classes to no avail. As well as stripping out the \\ ...Show All

  • .NET Development X has encountered an error and needs to close...

    In .NET 2.0 it sometimes happens that users of my application receive an error just like in Microsoft programs: X has encountered an error and needs to close. We are sorry for the inconvenience. Would you like to send an report to Microsoft (! ) I don't understand... what kind of exception are that This thing didn't get caught in my general try catch handler... It seems to me that this is a joke  :( Thank you for any help! David Sounds like Error Reporting is turned on in Windows.  In this case you'll get this if an unhandled exception occurs in your app.  How did you define your general t ...Show All

  • Visual C# Remoting client causes server to crash with "Attempted to read or write protected memory" error

    I have a small solution that's using remoting to dispatch services across a network. When a client terminates the sremoting server suddenly throws a System.AccessViolationExeption with this message: I'm getting the exact same thing, also not experienced in 1.1 of the framework anyone get any further with this ...Show All

  • Visual FoxPro how could i make my main prog looks like "MY EXPLORER"

    Good day to everybody, Maybe i miss this topic,..is anyone can guide me where i could find the sample for this matter. How could i make my application, that when you click the icon at the disktop it opens like you are opening the "MY COMPUTER" using 'explore' that shows drop down list, but instead of showing the drive c, cd-rom drive and e.t.c it shows all your form's name (ex. salaries, sales entry & e.t.c then a drop down for reports) very similar to the project manager itself. any help is very much appreciated...Thank you very much Look in help for TREEVIEW Active X control. http://www.tightlinecompute ...Show All

  • Visual C# 3MB text to PDF

    Hi, I'm using crystal to generate a pdf report, but it's exceeds the memory limit.... I tried using ABCpdf but also when the html reach the 3MB it doesn't generate also... Does anyone knows a way to generate PDF reports without size limit I tried iTextSharp and didn't work also.. Thanks I don't know much about generating PDF reports but couldn't you send your text to print and direct it to a PDF print driver such as Acrobat, or PDF995 Sorry if this turns out to be irrelevant! ...Show All

  • SQL Server T-SQL Mental Logic Block

    SELECT src_terrier.Areacode, src_terrier.siteref, src_terrier.estatename, src_terrier.Securitised, src_terrier.unitref, src_terrier.unittype, src_terrier.unittype_count, src_terrier.tenantname, src_terrier.tenantstatus, src_terrier.tenantstatus_count, src_terrier.unitstatus, src_terrier.unitstatus_count, src_terrier.floortotal, src_terrier.floortotocc, src_terrier.initialvacarea, src_terrier.initialvacnet, src_terrier.TotalRent, src_terrier.NetRent, src_terrier.FinalRtLsincSC, src_terrier.ErvTot, src_terrier.tenancyterm, src_terrier.landact, src_terrier.datadate, src_div_mgr.div_mgr, src_portfolio_mgr.portfolio_mgr, src_centre_list.propcat ...Show All

©2008 Software Development Network