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

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

IrvineLewis

Member List

Marcelo Uemura
rpallares
Tarek Madkour MS
Kenn Roland
Zelalem
Alex_M
poopiman
Pig Pen
NikiR
Katee
George S.
matrushka
cheesenhomer
Rebekkah
Wilhelm schatz
snipexv
Kimani
carolyn H
Yoshi NorwaY
rohan_har
Only Title

IrvineLewis's Q&A profile

  • Visual Studio VS. Net Add-in Installer doesn't load on another machine

    Hi All, I am really having a hard time with Visual Studio loading a project using VS. Net  I have a simple add-in that shows a message upon launching Excel. The add-in works fine on my machine, which I used to create the add-in. But when I try to load it on another machine using the .msi that gets generated by VS .Net, I don't see that message! :( I have made sure of the following:            that I see the registery getting created on the other machine (with load value set to 3).            I have also made sure that my add-in is available to all users. The add-in doe ...Show All

  • SQL Server grouping by months

    Hello everyone starting from this example table: code    qnt        date aaa          1        21/01/2006 abc          2        24/01/2006 aaa          3        27/01/2006 asd          1        11/03/2006 wde         2        16/03/2006 aaa          1        18/03/2006 I'd like to select records grouping by months and adding ...Show All

  • Visual C++ build error

    after downloading VC beta 2 and spending hours trying to get the header files to be recognized and figuring out how to build a hello world file, i decided to move on to chapter 1 of tricks of the windows game programming gurus and run the sample game called freakout, i recieve this error 1>------ Build started: Project: freak1, Configuration: Debug Win32 ------ 1>Compiling... 1>blackbox.cpp 1>c:\program files\microsoft visual studio 8\vc\platformsdk\include\winnt.h(222) : error C2146: syntax error : missing ';' before identifier 'PVOID64' 1>c:\program files\microsoft visual studio 8\vc\platformsdk\include\winnt.h(222) : error ...Show All

  • Visual Studio crystal reports .net licensing question

    can the crystal reports generated in Visual stdio 2003 be distrubuted and deployed over the web. what are the licensing\legal issues invloved. please give accurate answers because no one likes to get sued. Hello Sandeep, Here is a link to licensing with respects to Crystal Reports and Visual Studio bundle: http://www.businessobjects.com/products/reporting/crystalreports/net/licensing.asp Keith - Business Objects ...Show All

  • Visual Studio Express Editions Keep getting the error "Syntax Error in UPDATE Statement"

    I've worked with the older versions of Visual Basic and since moving to 2005 express I think I've gone a bit more crazy. I keep getting this error when the dataapdater.update statement is called. Here is the code that I am using and I've also thrown in the information from the syntax error. Private Sub EditMaterial( ByVal codepos As Integer ) Dim con As New OleDb.OleDbConnection Dim updateCMD As OleDbCommand Dim Sql As String , updateSQL As String , idtxt As String con.ConnectionString = "PROVIDER=Microsoft.Jet.OLEDB.4.0;Data" & _ Source = C:\tmp\che ...Show All

  • Visual C# How to call java program in C# without using batch file.

    Hi all, I need to call the program which is written in java using C#. I know we can use batch file to do this. But as per my requirement i have written a program that will connect to a database and fetch the records as per the query sent. Now I need to write a code in C# that will call the java program and the results can be viewed in C# too... can anyone guide me in this Thanks, Sheetal Process.Start will start an app, it doesn't matter what it was written in. However, it will just start it. I don't know of any way your code can interact with a Java program. Why don't you ...Show All

  • Windows Forms Does anyone knows how to implement "Remind me later" when updateAvaliable?

    Hi, Since it seems there is a problem with ClickOnce technology.See http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=219654&SiteID=1 I was just wondering,how can we implement "Remind me later"method programaticly just like the "skip" button did in the automatic update dialog ...Show All

  • Visual Studio Team System Profiling in visual studio 2005 not working

    I am using Intel 64 bit duel core processor WinXP64 Visual Studios 2005 Team, prof My app is a 32bit. I am trying to use the IDE's built in Profiling/optimisation tools to check my function times. BUT I keep getting Error VSP1460: Profiling WOW64 processes is not supported by this version of the profiling tools. Does anybody know if this issue has been fixed. I have spent a lot of time to bring over my code to run under Visual Studio 2005. I would be very annoyed if the I can't profile my program. That means I would have to go back to VC6 and I wasted lots of time. Thanks for help. Good question. The only way you can profile that ...Show All

  • Visual Studio Express Editions Need help on setting up a query page using MenuItem, GridView, AcessDataSource components

    Hi, I'm a college student with an homework assignment to do. I'm developing an website where there is a menu with several items. Each item is configured with an unique ID "idsubcat": < asp : MenuItem NavigateUrl ="Consulta.aspx idsubcat=1" Text ="Espumantes" Value ="Vinhos"></ asp : MenuItem >   The AcessDataSource object should receive that info and display the desired data on a GridView object:  < asp : AccessDataSource ID ="AccessDataSource1" runat ="server" DataFile ="~/inspektordb.mdb" SelectCommand ="SELECT [foto], [marca], [ds_produto], [preco] FROM [produt ...Show All

  • Visual Studio Team System VSTS Architect vs. VSTS Developer

    With he proposed changes in MSDN subscriptions and Visual Studio licensing, I now have to make a decision between VSTS Architect and VSTS Developer. As I understand, MSDN Universal subscribers will have a choice - they can either go for VSTS Architect and VSTS Developer. I believe that I need both architecture and development tools. Which out of two should I go for The information was interesting but too high-level to be really useful or answer the questions I feel most developers have. I hope you folks will be releasing something with a bit of meat on it like a feature by feature breakdown of what is included in each edition in t ...Show All

  • SQL Server opinion xp_fileexist

    Hi all, Sorry for spamming you with this, I thought it might be the best way to get your opinion on the topic. OVERVIEW: We should not use MS internal procedures, since MS has the right to change/remove them at will. Given that, should the following code be allowed, or not. If not, how does anyone suggest, handling checking for the existance of a file that has been given as a parameter to some T-SQL. --<this code is just an example, hence not neat etc.> SET NOCOUNT ON DECLARE @FilePath varchar ( 1024 ) SET @FilePath = 'D:\Sample Data\Files Processing UR ...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 Basic vb help..pls

    can any one help me plese with vb access interface.. which one is good to interface vb with access is it ADO or ODBC what is the diff bet them... how to create autogen of numbers in a forms text box how to retrieve a data for vb from access pls suggest me any one. bye. If you want to know the truth.... I've alway liked DAO (not ADO although Older versions of ADO are neat.) You might take a look here. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=210844&SiteID=1 ...Show All

  • SQL Server Modifying Management Studio to Save Views/Settings

    I have talked to several other DBAs about this and we agree, the SSMS is driving us more nuts than we already were. 1. How do I get it to save settings so that I don't need to manually tell it to reconnect to my favorite servers 2. In the Jobs tab of the Agent window, how do I get it to show scheduled times for all jobs, not just if they are running or not Can that view be modified and saved and if not why not EM was much better at this. It gave a great summary screen. Now I seem to have to look at the settings for all jobs one by one. This stinks. I need to see all jobs scheduled to run at 9:00 pm. The filter option is useless, sinc ...Show All

  • Visual Basic SQL Query

    In VS 2005, I have a login screen and I just need the code to add a SQL query and run it. I have a form with a binding navigator and I just draged the table from the Data Sources pane to the form. (There is probably some name for it but im not sure of it!) I just need the code to apply a query! Thanks guys, Zack Hi, I think these How-to topics will help you to do this. If the links do not work, you can search for the title on http://msdn2.microsoft.com/ . The main page - Fetching Data into Your Application : http://msdn2.microsoft.com/en-us/library/ms171918(en-US,VS.80).aspx . Depending on your SQL query, you can try one of these: - H ...Show All

©2008 Software Development Network