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

Software Development Network >> Eddie C's Q&A profile

Eddie C

Member List

pkafka
Escobar4Life
caligula
Alexei_shk
Hayashida
Kartit
Jkumar
digdug
Nipam N. Patel
PiGuy
thisishaydes
clintonG
anee
GuyFawkes
sandeep437
PDCS
Paval
Netmaster0000
spshah
rxg
Only Title

Eddie C's Q&A profile

  • SQL Server BI Portal connected to analysis services 2005

    Anyone has connected the bi portal with analisys services 2005 I have a security problem. Thanks I don't know what to do... perhaps i have to enable the http access The owc connect to the as2005 via http I really don't understand what is happening, i can connect with the cube via excel but when i am using the owc i have errors.... ...Show All

  • Visual Studio Tools for Office How to uninstall Outlook Addin

    Hi, I have created one outlook addin project in which I have created one button named "Update database" which get added to outlook toolbar after installing. Now I have also created installer file for this project. When I install this installer to my system, I get the respected button into my outlook But when i uninstall this addin, Still I have the same button into outlook. I want this button should disappear after uninstalling. Thank you You need to explicitly remove the button from the toolbar. The way many Add-ins handle this is to remove the button when they unload (and create it again - if it's not present (which can happen if the app crashes) - when they load). ...Show All

  • Visual Studio 2008 (Pre-release) Hints on implementing a custom control for histogram needed

    I want to create a custom control that just displays a histogram and has events when I move the mouse over it in order to display the value in a tooltip or in a status bar. So I need some advise as what would be the best way to do this At the moment I have a class derived from Control (to use it in the main window xaml file and for easy databinding of the real histogram) that contains a child that is derived from FrameworkElement which then contains the VisualCollection with the histogram lines. Is this OK I think I need a canvas in my control so do I put the canvas in the XAML template of the control or create it completely in the code behind file As the histogram can contain up to 4096 columns I wonder if I can just put so many lines the ...Show All

  • Windows Search Technologies ISearchQueryHelper in vb.net

    I'd really like to convert from an AQS query to the SQL command required by WDS 3.0. I have found lots of info about doing this from C# by using a file from the Vista SDK called SEARCHAPI.TLB but (a) I can't find a copy (b) I don't know how to use such files in VB.NET. I have found that if I include a reference to the MSNLNamespaceMgr.dll file from the WDS program directory then my vb object browser can find me the following: Function GenerateSQLFromUserQuery (ByVal pszQuery As String ) As String Member of: MSNLNamespaceMgrLib . ISearchQueryHelper but I don't know how to get any further than that. I tried the following code, based on the c# examples I found, but it fails: Dim manager As New MSNLNamespaceMgrLib ...Show All

  • Visual C# Help with a simple question

    Hi, I have a simple question (which I tried to search on the forum for an answer, but unable to to find an answer). How do I clear the list of 'recent files' in Visual Studio 2005 Better yet, is there a way to not display any 'recent files' totally Thanks ahead for the help. David Hi Yes you can delet all recent file accessed by VS2005 & VS2003. 1 .Open RegEdit 2. HKEY_Curent_USER ->Software -> Microsoft -> VisualStudio -> FileMRUList 3. HKEY_Curent_USER ->Software -> Microsoft -> VisualStudio -> ProjectMRUList Delete all entries (But before close all VS Instances) For Not to store MRU List any more : Tool -- > Option -- >Envornment - General -- > Look In ...Show All

  • Visual Studio Team System Is Unit Test different with ASP.Net Unit Test?

    And you have any good references or book to recommend for a tester newbie. Thanks. Our project is made of up layers - data access, business logic, presentation, and a layer for the web services. Any tips how do I test these modules Hi, You can start with our MSDN product documentation . It describes how to use ASP.Net Unit Tests and compares and contrasts them with normal Unit Tests. Cheers, David ...Show All

  • SQL Server Not a valid Win32 application

    New to SQL Server installations. I downloaded the SQL Server Express with Advanced; when I double click the Setup.exe, I get a pop-up "document path/file is not a valid Win32 application". I upgraded from XP Home to XP Pro SP2.0. Any suggestions Seems like the downloaded exe is corrupt. Download it again. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • SQL Server Report Navigation and jump url

    Hi all, I have got a report with external hyperlink. When I put this link in TextBox properties >> Navigation >> Jump URL of my gridView : http://www.micheldegremont.com it works. However, if I put " http://www.micheldegremont.com id=" + Fields!ID.Value it doesn't work. I haven't not link in my report. And if I put http://www.micheldegremont.com id=Fields!ID.Value my report create a hyperlink to http://www.micheldegremont.com id=Fields!ID.Value and no http://www.micheldegremont.com id=1 Thanks for you help. Now it works with = " http://www.micheldegremont.com id=" & Fields!ID.Value but only on 1 report. Howerver, I have the same XML Report 1 (it's work) <TableRow&g ...Show All

  • Internet Explorer Development How do I access Document object for a remote IE browser window?

    Hello- My company submits financial information to an accounting firm every month via a secure web site html form. This html form is quite long, and I would like to write an application that will automatically fill in this html form with the financial numbers which I can programatically pull out of our database. I imagine that the way it might work is that I navigate to this web page in an IE window, and then run my custom app to populate the form. I assume that I will need to access the IE Document object to do this. My question is: How do I retrieve this IE Document object from another app I understand that there is an IE toolbar API that has access to the Document object. However, I would preferably like to develop the app as a ...Show All

  • .NET Development xml if statement

    Hi, I am trying to use the IF statement logic inside xml. So came up with the line below: The logic that I am trying to achieve is: if there is a value for the field COMX_Field1 (i.e. if COMX_Field1 = TRUE) then show COMX_Field2, else do not show anything. Is this correct Thanks <LINE ID="02"> <VALUE X="1.00" FORMULA="true"><![CDATA[=("{COMX_Field1}"="1") "COMX_field2":""]]></VALUE> </LINE> this is how we do it in xslt < xsl:if test ="CustomerName !=''"> < xsl:value-of select ="CustomerName"/> </ xsl:if > ...Show All

  • Visual C# Problems with function ?

    Hi There is a problem I am facing at the moment. I have a base class called A; I have 2 classes that inherits from it . B and C. I have a method with 3 overloads . 1 for A ,1 for B and 1 for C. public void DoSomeWork(A a){} .... On calling the method It goes to the proper one by its parameter. Now, My problem is that I am using a factory to get the proper Object for a specific case and I then assign it in an A object (base class). I then want to send it to the method and expects it to go to the proper one but it goes to the one with A no matter the type returned. I always get "in A1" //Base class A1 a2 = new A2 (); //Call the proper function DoSomeWork(a1); public void DoSomeWork( A1 a ...Show All

  • Visual Basic Synchronize settings button isn't working

    Using VS2005 version 8.0.50727.42 RTM, I am experimenting with application settings to add some persistance to a VB windows app. Changing the scope of a setting from User to Application leads to a Configuration system failed to initialize exception at run time. I eventually realized that the Synchronize button on the Settings tab isn't working. It always gives me a dialog No user.config files were found in any of the following locations: [OK] No locations appear to have been searched, even though an out-of-date user.config file does exist in ...\Local Settings\Application Data\... Of course I can manually delete the user.config file to work around this but it would be nice if I could get the Synchronize button to do it for me. Do ...Show All

  • Visual Studio Tools for Office from a word document i need to extract some information and display in a text box

    from a word document i need to extract some information and display in a text box from a word document i need to extract name and email id and display in 2 diff text boxes I haven't heard from you regarding my questions on the 11th. If this is still and issue you need to resolve, please respond to the thread. Otherwise, I'll close this issue in a couple of days. Best, john. ...Show All

  • Visual C# pagecontrol

    Now everybody,i have a very headache problem,i setup a tabcontrol called tabcontrol1 which contains three tabpages,each has a datagrid,and a just a query button on toolbar .i want to have this function:when i entered tabpage1,and click button,it get the information from database(or use some sqlconnection,sqladapter,etc),when i entered tabpage2,do the same action,it gets data from database2.i want to use if sentences,but just if (tabpage1.enter( have this property )) { do something like sqldatadapter.fill...) if(tabpage2.enter...... ...... Andrej Tozon wrote: Ok, let's see... You have three tab controls. Each TabControl has three or four tab pages. Each TabControl has one query butto ...Show All

  • Visual C# Waiting for a method to execute.

    Hi, I imagine that this is a fairly common question. I have two methods that I would like to run in succession, i.e, let the latter wait for the former to execute. Logic tells me that a better approach would be the use of threads, but alas, I am stuck. For clarity: Help.Call(); //wait for Help.Call() to execute Proceed.PlanB(); Thanks. Hi, that is the normal behaviour. One thread executes one operation after the other. The opposite would be more work: if you want Call and PlanB executed simultaneously, then you would need two threads, each executing one method call. Do you have any code which makes you think, code is executed simultaneously -- SvenC ...Show All

©2008 Software Development Network