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

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

PaulGee

Member List

delimavi
John_Enters
Jonhwang
StoneWasHere
tarania
anjee
Rogvi Knudsen
jeevankumar
hani sallam
Edmund Leung
gigo318
Steven13
M.D.luffy
greenhorn
AleksL
Jerry Koh
and65
justin kelleher
Ken Hizer
cmille19
Only Title

PaulGee's Q&A profile

  • Windows Forms Custom Control can't be used

    Hi, I've developed a simple control by inheriting from ComboBox. eg public class CatKeyword : ComboBox {} There's hardly any extra code to it. I've done it such that the new Custom Control appears on the 'My App Components' list on the toolbox - just like a real comboBox! It worked when I first created it. But I went to use it again today and when I place it on the form it says "Failed to load toolbox item 'CatKeyword'. It will be re ...Show All

  • Visual C++ How to parse the CString object???

    Hi, I have a CString object in MFC program, and like to parse its content, for example, CString test="This is a test for string object. I like to parse it."; I like to programmatically wipe out the frist sentence and leave the "test" string object with the second sentence: "I like to parse it." Can you pls help me with it Thanks, vcboy If ...Show All

  • Windows Live Developer Forums Control IM without Activity Center

    Hi everyone, I got the following scenario at my company, we have several costumers that make orders online and we'd like to inform them via IM when their package is avaliable. I've read the post about the bot licensing, my question is, how can I interact with msn from our current application (developed in-house) Let's say that when a package arrives it is added in the application and it can generate a message to the client, now we're just doing ...Show All

  • Visual C# How can I code this?

    I am writing a text editor. I would like to have a combobox with all the fonts, and I would like the font to change in the rich text box to the one the user selected. How can I code this Matt Use the following code to get all the Font Names in the combo box for (int i = 0; i < FontFamily.Families.Length; i++) { this.comboBox1.Items.Add(FontFamily.Families[ i ].Name.ToString()); } ...Show All

  • Visual C# Reading a Log and Extracting Data

    Using C# or VB.NET Ok here is my situation. I have a text document that I extracted from another program with lots of raw data. I would like to create a program to search this raw text document that pull certain parts from it and place that info into a datagrid or an array or anything at all, just pulling the data is what I need. Here is an example: (Note the Raw Data is formatted very well) Text Doc: ["Guild"] = "Guild Name", ["DBversion"] = "1 ...Show All

  • Visual C# importing C# dll into C++.net ???

    Hello,   I've been developing a FEM library and it is written in C++. I want to develop a new UI for it so thought of creating it in C#.   Can i create the UI in C# and still use the code in C++.net Question is can i use the C# lib in C++.net and not vice-versa.   Please let me know.   Thanks. Hey, My understanding is, that the the CLR will compile everything into MSIL, to there should be no problem interchangin ...Show All

  • Visual C++ int CString::find() ignores newline character?

    I have a text file that is of this format: abc def ghi I read this file into a character array and then passed it into a CString. When i did a find on the CString ( CString.find("def") ), instead of returning me value of 4, I get a value of 3. When i did CString.find("ghi"), i get 6 instead of 8. That made me believe CString::find() ignores newline chars when counting for the index. Is this true If it is, is there anyway I can make it inclu ...Show All

  • Windows Forms Misc. Controls for Master / DataGrid for Detail

    Hello,  I'm trying to write a form that shows Master/Detail records, but instead of using two DataGrids as in the classic example, I'd like to display the data for each master record one at at time, as in the TextBox control example (usin ...Show All

  • Visual C# how to change font in visual c#

    am writing a math toolabr i need the "for all symbol" (fliped A) i found it in unicode (at symbol font) but i can't make the program show it (it's shows a small []) i know how ("\uF022".ToString) but it still dosn't show i think i need to change the font or add font but ms word dos and i wanted to know how can i do it thanks Change your font to Symbol and try using 0x22 as your character. Alternatively, j ...Show All

  • SQL Server performance issue with trans log on tempdb?

    I am running in to a tricky issue, and am hoping someone here has seen something like this before. Here's the basic sequence I am working with. A temp table #A contains some number of rows (in this case, about 45k rows). 1. Create temp table #B and insert a subset of the rows in #A (in this case, the subset happens to be 100% of #A) 2. Perform a few dozen updates to #B, using data from permanent tables. 3. Update the rows in #A with #B, ...Show All

  • Software Development for Windows Vista Wait until time/Persistence & Tracking

    Hello, I have to questions based on waiting/persistence/tracking scenarios: 1. Suposse that I want to wait until a specific day. If I use a delay or something like that I understand that at this point the wf becomes idle and the persistence service writes it down. What happens later if I turn off the runtime engine and I want to start it later. How do I continue with the saved instance without explicit set this Is there any standard solution to ...Show All

  • Windows Forms What is "Out of Memory" when I have lots?

    VS.NET 2003 I have a OwnerDrawFixed ComboBox.  Sometimes, only sometimes but too frequently, when I click or is scrolling through the list (5 items) I get an Out of Memory exception in the DrawItem event handler at the point where I was drawing a dashed line (my drop down list is a list of dash styles).  The exact error is "'System.OutOfMemoryException' occurred in system.drawing.dll" I have plenty of memory.  A cursory chec ...Show All

  • Windows Forms get info from a switch statement

    Hi As a newbie I'm trying to learn to use methods... and I'm a bit stuck . This is what I'm trying to achieve [I'm expanding an exercise from the internet]: 1. select one of 3 countries from a comboBox [cboCountry] - show selected country in cboCountry 2. enter amount of cash to do calculation on [txtAmount] 3. depending on which country is selected will depend on the FxRate - which will show in the textBox txtFxRate 4. txtSubTota ...Show All

  • Windows Forms Problem with windows themes and child forms

    Hi, First of all, forgive me if I don't use the correct terms, I'm quite new with windows forms and all (and I'm not english ^^) I have a main windows form. Inside, I want to have 2 other forms. I want those forms to be "cropped" to the main windows (I don't want MDI windows, I want the child forms to stay inside the main form) I somehow managed to do that, but now, I have a weird problem with the windows themes : when a child window i ...Show All

  • .NET Development Is there XML editor, organized like form view, according DTD ?

    Is there XML editor, organized like form view, according DTD (or else XML scheme) I want to enter XML data, but not in pure XML, or in arbitrary  XML in form view like in Microsoft XML notepad, but to enter data by form fields according DTD. Is there such a good thing thanks. Yes, it looks what is need, with only collection of nodes must be kept. As well as collection of collections i.e. using some tree-v ...Show All

©2008 Software Development Network

powered by phorum