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

Software Development Network >> N. Panoussis's Q&A profile

N. Panoussis

Member List

mrehpine
Sam Roth
jmead3
Col3456345
Support
senthilkumarr
Tom Anderson
Mike from symbol
Bob Morris
MeToo
Vivek Uppal
Kleber14215
Manlovefox
carabasha
Jimmy 123
ReneeC
Mikes2nd
twinsun
Justinsfddsfsfd
msdnmonk
Only Title

N. Panoussis's Q&A profile

  • .NET Development Email Priority

    In the new System.Net.Mail.MailMessage object, I do not see a way to set a message's priority. If I recall correctly, this was in the older model found under System.Web.Mail.MailMessage. Any ideas as to how to a a MailMessage's priority Thanks. John Try this: 'assuming message is your MailMessage obj message.Headers.Add("X-Priority", "1 (Highest)")   Possible values : 1 (Highest) 2 (High) 3 (Norma ...Show All

  • SQL Server Database Maintenance Plan History returns an error

    Hi, When attempting to view a Maint plan history on a SQL2000 server from within the SQL2005 Mgmt Studio (on my Windows XP desktop), I receive the error message "The remote server is no longer available, or the server login failed". When I click OK, some of the history is displayed but not all of it. When viewing from the SQL2000 MMC (on my desktop) all works as expected. I have checked permissions and there are no issues ther ...Show All

  • Visual C++ simple question

    i was reading mfc book by jeff. i had installed vs 2005 . i tried simple programme but it does not works just add this to onpaint CPaintDC dc(this); CRect rect; GetClientRect(&rect); dc.DrawText("hi ",-1,&rect,DT_CENTER); but there is no display in output That looks fine to me. What sort of project did you create Did you use a template What class is handling your onpaint method If you put in a breakpoint, does it get cal ...Show All

  • Visual Basic Status Strip - RTF Location

    Hi All, Would like to know, what is the code for status strip text location. I am developing an advanced notepad for some customizing text etc. and cannot find code or examples anywhere of how to put a text label in the status strip for the text "Column" & "Row" location. Its basically the same as the windows notepad feature. Can anyone please help me with this. Thank You. Dim ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Sample Framework

    I've been looking over the sample framework (empty project) and I can see a lot of useful things in there that would be great if I didnt have to reinvent the wheel, mostly in terms of handling input and GUI code, but... Even though the sample framework code has a lot of comments, it's still very hard to follow and feels like it's all over the place. I realise we all have different coding styles but I was wondering if anyone has some kind of ...Show All

  • Visual C++ gcroot with incomplete type crashes compiler in B2 (regression)

    This crashes B2 compiler but not B1: #include <vcclr.h> ref class Blah; void foo(Blah^ blah) {     gcroot<Blah^> b;     b = blah; // crashes on this line } Compiler error: fatal error C1001: An internal error has occurred in the compiler. (compiler file 'msc1.cpp', line 1384) This, however, doesn't crash it: #include <vcclr.h> ref class Blah {}; void foo(Blah^ blah) {     gc ...Show All

  • SQL Server Restore a single table

    Hi, I have a problem. For some reason I needed to restore a single (large) table that shares a filegroup with other tables. I have a full backup of the database. How can I restore my particular table -- Srinivas Unfortunately this is not possible with builtin functions. There are onyl a few options. Restore the whole database to a new destination and copy the table to the final destination where you want to restore it. Use a third pa ...Show All

  • Visual Studio Express Editions TextBox (multiple line) & Databinding

    In an attempt to do a project recently, I've bumped into a problem with textbox and databinding. I have a multiple line textbox and wish to display the address of a company. However the full address of the company is stored in multiple columns inside my database. When implemented, I can only display the street address onto my textbox. I'm currently databinding the textbox to the address field in my customer table. Is there a way to display more ...Show All

  • Windows Forms how to send a mail with image ?

    I want send a mail with image,  but didn't using <IMG src='http://.....'> to link web site,  I hope let receiver get the mail to read by disconnection,  how can I do  I try add the image as an attachment. Then  ref ...Show All

  • Visual Studio Team System Caching\Source Control abnormalities in Team Systems

    This is more of a overall problem I've been having then a specific problem. We currently are in a pilot project -- 4 developers, 1 architect, 2 ba's, 1 pm, and 2 dba's. The code we have been working on has multiple projects of different types (web, web deployment, setup, class library, etc) and we've been in a bit of flux as we've been investigating different architectual problems. As we have been adding and removing different projects there ...Show All

  • Software Development for Windows Vista Order of events during persisting

    I have a statemachine workflow with a custom persistence service attached (service set to unload on idle). When the workflow goes idle (waiting for an external event) I get the following sequence (writing to Debug out): 1. Workflow serialized: 30d157dd-60d1-444d-a86e-8b1b86119f18 / 13 2. Workflow idled / 13 3. Workflow persisted / 13 4. Workflow unloaded / 13 (13 = ManagedThreadId) My question is: Why is the workflow persisted (pt. 1) be ...Show All

  • Visual Basic Accessing data in a TableAdapter

    Hi, I am brand new to using VB to connect to SQL Server.  I've set up a small database using Server Solution.  I have created a simple form that is intended to take a user-entered name, assign it a code and enter it into a table in the db.  To assign the code, I wish to sort my table in descending order by the "code" column, retrieve the value in the code field for the first record, increment the value and use this as the new code ...Show All

  • Windows Forms Custom Collection Editor + Drop Down

    Hi all, I'm trying to create a custom collection editor for the property browser for my control. Basically it's a collection that I want to have a drop down arrow show up on instead of ... and have it drop down a list that I can check off items and then when I'm done, click off of the list and have it update the list. I've run into two problems: First when I override GetEditStyle and return UITypeEditorEditStyle.DropDown I don't get a drop down ...Show All

  • Windows Forms Multiple installs, multiple versions, multiple sources

    We've got a situation where our consultants will go into multiple customer sites and have to run a specific application that's installed from servers at each site.  The customers may each be on different versions of the application, but the consultant will have one laptop and will need access to each version. Will ClickOnce set up different instances of the app in different folders automatically If not, how can the application, or man ...Show All

  • Smart Device Development Attaching debugger to a running .Net CF process on smart device?

    I've been testing the capabilities of the VS Beta 2 Debugger for device projects.  Thus far I've been happy with the improvements. However, I've been having a hard time in testing whether the debugger can now attach to running processes on devices -- I thought I heard this capability had been added, and I see some UI to support it. Can someone let me know whether this should work in Beta 2, and if so, what I might be doing wrong   See ...Show All

©2008 Software Development Network

powered by phorum