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

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

IanO

Member List

Aknght
Cppboy
ahmet_yusuf
chjmiller
mathieu.szablowski
Carlos Iriarte
Constantin Mihai - MSFT
filament
Steph Wilson
GregUzelac
AbelVR
torque_sherry
Andray Siletsky
Kevin Cochran
Tim Anderson
Brian Gray
ALiry
Ronan_g
David Yue
Redrori
Only Title

IanO's Q&A profile

  • Visual Studio Tools for Office Open and Modify Word Document from C# .NET 1.1

    I'm trying to open a Word document from a VSTO project using C# in VS 2003. When I attempt to launch a copy of Word, I get an "Access is denied" error. This project works great if you manually open the Word document specified for it, but if you try to launch Word and open the document from C#, it's a no-go. So what am I doing wrong All help is appreciated. Thanks. Could you post the code that you are using to open the word document and the call stack and exception information you get when this fails. You may also find this page useful. http://msdn.microsoft.com/library/default. ...Show All

  • Visual C++ how

    This is my first time using Microsoft Visual C++. I have written the coding down for the program. Now how do I use the program Pressing F5 will build the application ( turn what you typed into an executable program ) and start it. If your application does not contain any code to stop it running ( such as waiting for the keyboard ) then it may seem to run and end right away, as it may just run through without pausing for you to look at it. In VC2005 a debug mode program, which is the default, should insert code to make you press a key before it closes. ...Show All

  • SQL Server No support for SQL Server Authentication and SSIS !!!!

    Hi I want to manage my servers from a central location and have the ability to manage my packges too.  Unfortunatley my servers are across domains which means I have to use SQL Server Login, which isn't a bad thing.  However for some bizzare reason I can't connect to Integration Services using this method, only windows authentication which is a complete pain in the butt from a management stand point as I have to copy packages to various servers rather than add them from a central point. Does anyone know if this bug/feature or what ever Microsoft is calling it will be fixed or know of any workarounds.  Thanks   ...Show All

  • Visual C++ Help Errors

    First of all I have no idea on the forum where this is suppose to go so forgive me if it is the wrong place. I have been trying to compile my programs but i keep getting these same errors everytime. Compiling... stdafx.cpp C:\Program Files\Microsoft Visual Studio 8\VC\include\winnt.h(3043) : warning C4103: 'c:\program files\microsoft visual studio 8\vc\include\winnt.h' : alignment changed after including header, may be due to missing #pragma pack(pop) C:\Program Files\Microsoft Visual Studio 8\VC\include\winnt.h(3335) : warning C4103: 'c:\program files\microsoft visual studio 8\vc\include\winnt.h' : alignment changed after including header, ...Show All

  • .NET Development SHARD_PATH constant

    Is there a way to get .NET to recognize the SHARD_PATH constant used in SHAddToRecentDocs, or if not, anyone know what the value of constant is You are P/Invoking to Win32 (specifically shell32.dll). There is no way to automatically read in any enums or constants that are used in P/Invoke signatures. You can find the enum definition here: http://www.pinvoke.net/default.aspx/shell32/SHAddToRecentDocs.html According to the page, the value for SHARD_PATH is 0x2. BTW - Adam Nathan's pinvoke.net is a fabulous reference if you're P/Invoking into Win32 directly!!! ...Show All

  • Visual FoxPro HOW TO ADD AUTOMATICALLY A LOT OF .dbf FILE INTO A DATABASE .dbc FILE ???

    Hi! In a folder I have a lot of .dbf file! I want to do the upsize to a MSDE, but I can't do it from a folder that contains the .dbf file....I need a .dbc file! So, when I create a new .dbc file from the project manager, fox can't allow me to add automatically all the .dbf file that are in my folder! I must add one by one...but this procedure is too much slow! Can you tell me how to add automatically a lot of .dbf file into a .dbc If exist something to do that in fox pro, or with a code example.... Thank you 1) You don't need a dbc for upsizing (maybe you do if you mean wizard). 2) You can use: lcPath = getdir() create dat ...Show All

  • Visual Studio Team System Single server install error in reportservice

    I'm doing a clean single server install. Everything goes smoothly until the installation script stops with the following message: vs70uimgr: DisplayMessage_START:Error 32000.The Commandline '"C:\Program Files\Microsoft Visual Studio 2005 Enterprise Server\BISIISDIR\uninstall\createds.exe" " http://GANDALF/ReportServer/ReportService.asmx " TfsReportDS "Data source=GANDALF;initial catalog=BisDWDB" "TNC\TFSSERVICE" "01000000d08c9ddf0115d1118c7a00c04fc297eb010000000049865c489436479c95bb18bb6e1adf00000000220000005500730065007200200049006e0066006f0072006d006100740069006f006e00000003660000a800000010000000beab694a4470b26d6b1f782abd0f3764000000000480 ...Show All

  • SQL Server How to show data in a Label item?

    SqlCeConnection cn = new SqlCeConnection("Data Source=\\Program Files\\test\\tel.sdf"); try { SqlCeCommand cmd = cn.CreateCommand(); cmd.CommandText = "SELECT * from phone where PhoneNo = '0912312345'"; SqlCeDataAdapter adp = new SqlCeDataAdapter(cmd); DataSet ds = new DataSet(); adp.Fill(ds); this.dataGrid1.DataSource = ds.Tables[0]; label1.Text =Convert.ToString( ); label2.Text =Convert.ToString( ); } finally { if (cn.State != ConnectionState.Closed) { cn.Close(); ...Show All

  • Visual Studio Problem installing .NET Framework 2.0 Beta 2

    Hello: I hope that I'm posting to the correct area... I'm trying to install Visual C++ 2005 Express Beta 2 and the installation process fails.  The failure occurs after the download is complete and the installation of the .NET framework has commenced.  No error information is displayed, other than the notificaton that the error has occurred.  I've turned off Spybot, for what that's worth.  Any ideas on how to proceed Thanks! Hi Dave Im hoping you can assist me too....except I'm not as PC savvy as the previous posters & you may have to direct me through to the logs. I hav ...Show All

  • SQL Server Setting Report Parameters

      Just working on my first report and am having trouble get the report paraments set up. When I try to set a parameter on the Data tab such as @Zipcode it treats it as a string and surround it with quotes. Also it does not automatically create a parameter in the Report Parameters collection on the Layout tab. Even if I manually create the parameter it does not tie back to the query. Any ideas of what I should be doing Thanks, Paul Hammond Richmond, VA If you write a query for a SQL Server data source, such as SELECT FirstName, LastName FROM Employee WHERE EmployeeID = @EmpID report designer will automatically detect the query ...Show All

  • Windows Forms Odd ComboBox behaviour

    Hi, I'm getting a strange behaviour with a ComboBox control, I'll try to make the situation clear: I have a DataTable, wich is correctly filled by a SqlDataAdapter, used as DataSource for my ComboBox. I correctly set the DisplayMember and ValueMember properties and the ComboBox displays and it also returns the correct value after the user has clicked on it. The problem lies here: I need to set the SelectedValue property before the user can do any interaction (I have to display a specific name) but before the ComboBox has been clicked, no matter what I do, the SelectedValue has always a null value!!! I even tried something like: c ...Show All

  • Visual Studio Team System I do not have permission to view the sharepoint webpage

    Hello! I've just installed Windows Sharepoint Services and when trying to got to http://localhost/ I get this: ------ You are not authorized to view this page You do not have permission to view this directory or page using the credentials that you supplied because your Web browser is sending a WWW-Authenticate header field that the Web server is not configured to accept. ----------- I am logged in to the Administrator of the domain, what is it that I have to do and how do I do it =) Thanks in advance! See this post: http://forums.microsoft.com/msdn/ShowPost.aspx PostID=2127 ...Show All

  • Windows Forms Can't Install Terrarium

    I would like to try this out but having difficulties installing.  It gives me an error saying that I need DirectX 7.0 installed.  I have DirectX 9.0b.  Anybody know why or how to get past this error I have the same problem with a different program, the program requires the file DX7VB.DLL to be registered the only problem is I don't have the file but I have Direct X 9, so how do you get the file Nvm i foun ...Show All

  • SQL Server help with sql query

    Dear all, i have ' employee_Id ' column in table employeesIBM , and 'employee_Id' column in employeesSUN. Now, there are 4 records in employeesIBM. and 10 records in employeesSUN. *******What i want to achieve***** i want to write a query which will display one column 'ALLemployees' displaying 4 records of employeesIBM and 2 records in employeesSUN. something like this >>> employee_Id ******from employeesIBM table 1 2 3 4 employee_Id ******from employeesSUN table 10 11 want to write a query which will display something like this ALLemployees 1 ...Show All

  • Windows Forms Tree View - remember selected node

    Situation: The users selects a tree node which causes report parameters to be displayed. The user clicks on the save button causing the report parameters to be saved. At this point the slected tree node is no longer available because the whole tree is read from disk again in case someone else modifed the tree. (asynchronous but a winform) How do I save the& ...Show All

©2008 Software Development Network