Software Development Network Logo
  • SQL Server
  • IE Development
  • Windows Forms
  • VS Team System
  • Visual Basic
  • Windows Vista
  • Smart Devicet
  • SharePoint Products
  • Visual FoxPro
  • Audio and Video
  • .NET Development
  • Microsoft ISV
  • Game Technologies
  • Visual C++
  • Visual Studio

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

ceedee

Member List

Raf Borrezee
MarilynJ
Yelnik
DMan1
Amy Lightholder
Pavan Apuroop
j_o_h_a_n_n_e_s
walkingboy
Qiuwei
SB1
JGttttt
Alex Farber
Matt_343
Gabriele82
anubisascends
DSimmon
GavH
ShadowRayz
WPF Fan
DaveSmith
Only Title

ceedee's Q&A profile

  • Windows Forms Opening a second form...

    I have added a new form to my project. However, I don't know how to open it up when I click on a button in Form1. Help me please To show a form you need to use the ShowDialog or Show members. Here's a sample: VB: Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Using form As New YourSecondForm form.ShowDialog( Me ) End Using End Sub C# : private void button1_Click( object sender, EventArgs e) { using ( YourSecondForm form = new YourSecondForm ()) { form.ShowDialog( this ); } } ...Show All

  • Visual Studio Tools for Office Shared Add-in for Excel 2003 using Visual Studio 2005 Pro

    I try this question here also: Hi! I have problems to get my new Addin up and running through Excel. For some reason it doesn't seem to load to Excel 2003. I am using the integrated Wizard, I am doing like this: New project -> other project types -> Extensibility -> Shared Addin, then i am checking Visual Basic, Excel as host application and that it should load on Application launch. Then i try to run the addin, whilst i have a break point on Onconnet method. But for some reason it doesn't stop there, and the addin isn't visible from Excel. I have tried to make an add-in for Visual Studio itself, via the Visual Studio addin template, and that works fine. Do anyone have any suggestions ...Show All

  • Audio and Video Development Is it possible to build a Media Foundation Audio DSP Plugin?

    Has anyone successfully built a Media Foundation based Audio DSP Plugin which is able to process protected media I have heard rumors that it is not possible. Nick is kind of right... If we allowed anyone to write such a DSP, then it would gain access to the content and they could do whatever they want with it. However, it is possible to get licensed to write MF Transforms to run in the Protected Environment. There's some process to go through with MS (which I can tell you about if you think you're going to want to do this... let me know) to get your code signed such that it will be able to process protected content. It is, however, true that anyone can write a DSP plugin that will do stuff on clear ...Show All

  • Visual Studio Tools for Office VSTO 2005 SE - Outlook 2003 Addin - Deployment problem

    I followed every point shown on: http://msdn2.microsoft.com/en-us/library/2ac08ee2(vs.80).aspx On my machine with WinXP prof, VS2005, addin works fine. But on the other machine (test machine, WinXp Prof, VSTOruntime, Office 2003 prof, O2003PIA, .NET FW.2.0) is didn't want to start. I used setup (created with VS05 O2003Addin solution) to install my plugin. I double checked every registry entry and they are fine to me. Could anybody tell me what's wrong Please give me any idea where to start. You might try a machine policy, i.e. -m instead of -u Also check before you restart Oultook in TaskManager if Outlook.exe has really exited when you closed it. -- SvenC ...Show All

  • Visual Basic For Each Statement

    I am using For Each ctrl As System.Windows.Forms.TextBox In Me.Controls ctrl.Multiline = True Next It gives an error saying Unable to cast object of type 'System.Windows.Forms.LinkLabel' to 'System.Windows.Forms.Textbox'. I do have a LinkLabel on my form but why is it even trying to cast it The statement should only look for objects of type System.Windows.Forms.Textbox, right Thank you for your help. Troy L this is the correct way of doing so below, remember, a Control container/collection will only accept the Control object when iterating through the collection: for each ctrl as Control in Me.Controls if TypeOf(ctrl) Is TextBox then Dim theTextBox as TextBox = ctrl 'do your operation on the text ...Show All

  • Visual Studio Help going to home page

    Hey everyone. Any time I click on help. Be it through the start menu or through a app menu it skips the help file and instead navigates to my home page. So I can not access any help or documentation. Any help would be appericated. If I'm in visual studio and hit F1. I get the message "No links are avaiable" From the start menu any time I go to something with help and documentation it happens for instance... Start -> all Programs -> Ms Patterns & Practice -> EL june 2005 -> EL Documentation This is shortcut line provided : "%CommonProgramFiles%\Microsoft Shared\Help\dexplore.exe" /helpcol ms-help://ms.EntLib.2005Jun or start -> all programs -> MS WS ...Show All

  • Architecture C# or C++?

    Hello, First I apologize if this is not the correct forum for my question, I thought this came closest. For many years I programmed C++ and am now learning C# but I still wonder why I do not start with Visual C++...;-) My main question is: what is the essential difference between C# and Visual C++ concerning their goal applications Where would I rather use Visual C++ and not Visual C# Are low level array handlings in Visual C# as fast as in Visual C++ I studied some Internet articles but still it is unclear to me. Just like to hear from an expert... regards, Henk For the most part an application can be written in C# or C++ or C++/CLI (managed C++). It depends mostly ...Show All

  • .NET Development VS2005 - XSD file created - Can VS2005 create code automatically?

    Hi all, if this is a stupid question or not directed to this forum, please redirect me to the correct one. I went to Solution Explorer and I created a new item (dataset). I opened Server Explorer until I found the table that I want to access and modify. I then dragged the table in question into the design view of the xsd file. I can see the table represented in the design view, does VS2005 is able to create the class code automaticaly If not, what is the purpose of creating the xsd file Thanks and sorry for the possibly idiotic question, Luis Miguel Pinho To generate the class code, you may use XML Schema Definition Tool (Xsd.exe) from the .NET Framework SDK. Thanks, Anton ...Show All

  • .NET Development Can't use Word APIs

    I wrote a C# app that uses the Word PIAs to parse some data out of an existing Word doc. It works fine. Now I invoke my app via a web service and I get the error: Retrieving the COM class factory for component with CLSID {000209FF-0000-0000-C000-000000000046} failed due to the following error: 80080005. I went into Component Services | Computers | My Computer | DCOM Config | Microsoft Word Document and set the appropriate security settings but it still fails. Can anybody help VS 2005, Win XP Have you found the solution yet I am running into the exactly same problem as you do. Could you share if you do find the solution Thanks. ...Show All

  • Smart Device Development PostKeybdMessage

    hi all, I m creating the appln that is for cameracapturedialog functionality again as needs changed.I have to catch the event of the OK click of the cameracapturedialog in C#.net with WM 5.0. But i cant find the way to use it. I came accross "PostKeybdMessage" but what exactly it is how to implement i really need help. urgent. Thanx well in advance. This is how the capture dialog is implemented. Not much you can do. You won't be able to use Camera button for your own purpose unless the built-in dialog already uses it ...Show All

  • Visual Basic Secure Connection String? is there such a thing?

    Hi Everyone, Im developing a VS.net application which connects to a SQL server over the internet, i have a SSL certificate running on this server and data between the application and the server is encrypted. which makes me rather happy. However using .net Reflector i just opend up my code and low and behold there is my conenction String in full sight!!!! which essentially means that anyone can have fun with my database :( i have read a lot of help pages but nearly everything is in C# which doesnt help me a lot, is there any way to A) not show the connect string at all (without using winows authentication as i have lots of users) Or to encrypt it so that evn if the program was decompiled or memory sniffed that they could not get t ...Show All

  • SQL Server Two pagination in a single report.

    Hello : In a report, I want to put two table, and in every table with different pagination, that is two pagination in a single report. Table to the right with pagination on top, and another table to the left with another pagination. You have ideas. Thank you. ...Show All

  • Windows Forms Unable to replicate Windows Volume dialog using .NET 2.0

    I'm trying to create a form like the one that you see when you single-click the volume icon in the status notification area (aka system tray), but I'm running into a couple issues. First off, I can't seem to get a trackbar to display without tick marks and with the both style, in order to accomplish the rectangular slider bar without tick marks. These are separate setable properties in the Win32 world, but they've been lumped together for WinForms. Anyone know any workarounds Secondly, I'm unable to create a form with that small of a width. Initially, the form designer wouldn't let me enter a width below 123 for the form, even with the control bar turned off and the caption bar hidden altogether (Text = ""). This doesn't se ...Show All

  • SQL Server error configuration

    I want to use custom error configuration for a single dimension. When I set the error configuration properties for a single dimension in Visual Studio, process this dimension and process the cube then the custom error configuration settings are ignored. When I set custom error configuration settings for the cube in Visual Studio these settins are also ignored. When I set the custom error configuration settings in the Process Cube Window (Change Settings - Dimension Key errors) then these settings are applied to all dimensions. How can I use custom error configuration for a single dimension and why are my settings in Visual Studio ignored. Thanks for any reply. > I still get a key not found error (for this dimension ...Show All

  • SQL Server How to compare SQL server stored procedures from two separate databases?

    Is there a straight forward way or a tool to compare SQL server database objects, such as stored procedures located in separate databases Well, the way that I always do it is to use the RedGate SQL Compare tool. www.red-gate.com . It works very nice and will compare everything, including permissions. There are other ways, and Buck Woody (who I have seen around the forums) has an article here that covers it pretty well: http://www.informit.com/guides/content.asp g=sqlserver&seqNum=210&rl=1 ...Show All

©2008 Software Development Network