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

Software Development Network >> Fess Up's Q&A profile

Fess Up

Member List

shikwai
KnightSoft
Diego Britos
xchiaroni
Sunil_linuS
JasMR
Creative
Daniel R. Tarsky
Marco Gouveia
IssamElbaytam
t-m00re
Shilei
MarkDH
mmmattias
hdkulu
Gordon7502
SouthernPost
mackdoyle
KCBuck
BobCl
Only Title

Fess Up's Q&A profile

  • Visual C# interface

    Hi i have Visual C#. Just wondering: i have made an interface for a program launcher, but i do not know how to to link the buttons with the program. can someone help please. Thanks in advance Martin Hi, if you made your interface in the VS' designer then a double click on the button will create an event handler that will run whenever you press the button when running the application. You just have to insert the code in that method (event handler created). You can also go manually to the event properties and add the event handler's name and VS will automatically create one with the name yo ...Show All

  • Visual C++ .NET Double Queue ????

    Hey all, I am doing a high-speed acquisition system w/ some multithreaded callbacks. I need to push data of type Double[,] from a NIDaq card onto a queue with one thread, and write it out to disk with another. I was using a .net Queue for storing this data from the card with something like this. void callback() { for ( int i = 0; i < chanCounts[0]; ++i ) { for ( int j = 0; j < rates[0]; ++j ) { rawQ[0,i]->Enqueue(scanData[i,j].ToString()); } } callback(); } Once I started to bump up my sample rate, though, my program started to crawl. Well, I narrowed it down to converting the scanData from a Double to an actual 'O ...Show All

  • Visual C# Determine startup file

    Hi, I have created a file that works with my program. The extension is '.epi'. I want to load the file in my program when you click the file in Explorer So I created this code: if (( Application .ExecutablePath.EndsWith( ".epi" ) == true )) { string filename = Application .ExecutablePath; //Then the code to load the file using the above filename. } But this code does'nt work. I set in the register to start the file ending on ".epi" with my program, "EP-Intro.exe". Now, this code written above never starts because the Application.ExecutablePath always ends with "EP-Intro.exe". Now my question: Ho ...Show All

  • Windows Forms Regarding opening a application inside the Form

    Dear All, I want to open a application inside a from.Can it be acheived I checked the "AxWebBrowser1" It is just allowing me to open the Microsoft Exe ..But if i want to open the Oracle Forms inside the Window how can i do it.. Can it be achieved.Please help me out in this... For Ex: I have a treeview menu in the left of the screen ...Show All

  • Visual Basic BC30002: Type 'System.Net.Mail.MailMessage' is not defined

    Hi all, I've just started developing with VS2005 Express beta 2 edition. I'm trying to get my app to send a mail to users on submit of their details, but when I try and run the app (before I even get to the submit button) I egt the above message.  I attach a snippet of code: - try Dim objMsg As New System.Net.Mail.MailMessage(fromaddress, toaddress, subject, body)             SendMail = True                         Dim mailClient As New System.Net.Mail.SmtpClient("smt ...Show All

  • Windows Live Developer Forums GMap is undefined

    I got the basic application working.  Thank you for the help, now on to the next problem. I have a URL which works in Internet Explorer, but it does not work within Microsoft Messenger. http://www.freerecruiting.com/Maps/ShowMap/Linux Version=Small There was a question elsewhere which asked if Google Maps are allowed.  The answer was yes.  I want to be totally respectful of Microsoft, but I also want to release a version of this application quickly. So are Google Maps disabled Any advice would be much appreciated. Regards Chris This has been open for a little while and wanted to c ...Show All

  • Visual Studio Express Editions How many source files are needed to publish a VB program

    I have put Form1.vb and Form1.Designer.vb for a small serial port program in our knowledgebase, but it seems that these two files are not enough. In some examples I have seen Form1.Designer.vb inserted in the beginning of Form1.vb to form a complete source code. How do you do that That was in previous version of Visual Studio 2005. In VS 2005 the designer form create two files (both are a same class, but in two files, this is a partial class, new concept in this version of visual studio 2005). ...Show All

  • SQL Server Sql server express 2005

    I've never used sql server before, I downloaded the express from MS. After installing it, on my XP Pro, I get 2 log in choices. One is my normal log in and the next is "sqlExecutiveCmdExec". I'm assumng that how to log into the Sql server. It askes for a password and I have no idea what it could be. Can anyone help me... By the way, I don't use a password on my xp machine, so I was assuming I didn't need one for Sql login. thanks You mean that Windows XP prompts you to login as sqlExecutiveCmdExec or that you attempt to connect to the SQL Server database and you get such prompt Thanks Lau ...Show All

  • Visual C++ Mixxing c & C++ file for the same application

    So I have a .lib or a .dll that was written in C, and I want to call functions in this .lib or .dll from with a c++ appliction.... However, when I #include header.h (with appropriate declarations for all methods I want to call), VS 2005 seems to think that *EVERYTHING* I have done is now c++, and treatas the .dll or .lib as such... resulting in massive problems. Does anyone know how to make C++ play nice with C code Thanks! In the header file for the library put the following to wrap you C functions #ifdef __cplusplus extern "C" { #endif void Func1( void ); ...... more fu ...Show All

  • SQL Server SQL Connectivity

    I am building a C# Windows app.  I have a form and have also create a db.  I tested the db connectivity in Server Explorer and the test came back successfully.  According to my manual, I just need to drag the db item from the server explorer to my form designer to creation the connection.  When I do this nothing happens... what am I doing wrong If I do the same thing in VS2003 the sqlConnection1 shows up, how do I accomplish the same thing with 2005 There could be a few things wrong, but I suggest that you check the second thing first - make sure you have the SQL2K5 client software in ...Show All

  • Software Development for Windows Vista Jon, quick question on Workflow Designer/workflowVisibilityControl

    Jon, I've read your blog http://www.masteringbiztalk.com/blogs/jon/CommentView,guid,79f45d4d-6e5a-437b-a230-d7df13ae18e7.aspx and have developed a workflow monitor using your technique. Excellent job, by the way... But, here's my problem. Once I select a workflow instance from the tracking database, I not only display the workflow image ( using the WorkflowDesigner/WorkflowVisibilityControl technique ) I also display the activities ( just like the console version of the monitor ) Now, when I click on an activity, I want to re-render the image, but have the glyphs represent the state of the workflow at the point in time that that act ...Show All

  • Windows Forms Docking Windows in .NET

    I would like the Visual Studio .NET like docking windows in my application. These docking windows has their own title bar, close button and also can be docked. Please help me to find out how to create these. Is there any controls out there which is good for this. Thanks Jijo G John Hi! www.dotnetmagic.com  controls are very cool, i think that www.devexpress.com &nbs ...Show All

  • Windows Forms icons

    Not sure if this is the right place to ask, but I want to include some icons in an application's .exe, from where they can be extracted, e.g. by an installshield project in the solution. I can't seem to find out how to do this. The icons have been designed in .net, saved in the application project, but don't seem to get incorporated into ...Show All

  • Visual Studio Competitive upgrade license

    If we upgrade from a competitive project, are we still entitled to use the competitive product The license is a little vague. Can you explain what a competitive project and competitive product means in this case ...Show All

  • Visual Studio Team System Suppress CA2000:DisposeObjectsBeforeLosingScope

    We have an object with an embedded timer. Timer is disposed of in a custom method. I am trying to add suppression for CA2000:DisposeObjectsBeforeLosingScope message related to the timer. I was trying to add SupressMessage attribute to the entire class, variable that holds the timer and sub New. Nothing worked so far. Any suggestions wre appreciated. Sergey, There are two easy ways to go about generating a suppress message depending on what tool you are using: In Visual Studio: Simply right-click on the violation and click Suppress Message(s). In FxCop: Right-click on the violation and click Copy As -> Suppres ...Show All

©2008 Software Development Network