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

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

Enlikil

Member List

barry sela
polymorphicx
JamesZ
SOAC
jcarlos.net
Avi_harush
TA123
Richard Berg MSFT
IS dude
michael412
Al Zuniga
I.Katzav
GRK
R.Kneyber
gabriel_333
billqu
Raghu_das
Ian Arhip
Chewy!
ReneeC
Only Title

Enlikil's Q&A profile

  • SQL Server Saved SQL Queries

    Can someone help me. In SQL Server 2005, when I save a query, and re-open it later, it always opens in the .master database. We do not use this database regularly, and I have to switch the database to the one that we use 95% of the time. Is there anyway to change the default database that opens, when I open these saved files for a given connection Thanks in advance for your help, Wayne You will have to include a USE statement within your database script to make the change. EVen the user defaultdb will not affect the connect to the master database. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...Show All

  • SharePoint Products and Technologies Upgrade SPS 2003 To MOSS - Share Point Search Services 3.0 Could not find stored procedure

    Hey Guys, I tried the upgrade of the SPS 2003 to Moss now three times. Every Step seems to be correct. And when i would like to start the Upgrade of the portal I receive the following warning and error in the EventLog the Setup himself says nothing to me. Warning: Could not import the registry hive into the registry because it does not exist in the configuration database. Context: Application 'd0a50044-9a04-4538-9680-ce5eceb6658a' Error: Application Server Administration job failed for service instance Microsoft.Office.Server.Search.Administration.SearchServiceInstance (bf4f74e9-4be2-4f6c-a3bf-40f44a3424c8). Reason: Could not find stored procedure 'dbo.proc_MIP_GetObjectVersion'. Techinal Support Details: Sys ...Show All

  • Visual Studio 2008 (Pre-release) Creating Aero\Vista style dialogs and wizards in WPF

    The vista UX style guide is very specific on how dialogs, task dialogs, wizards and option dialogs should be formatted. I was very surpised that there weren't any (readilly) available templates or examples of how to do this in WPF. Seems like a lot (if not all) of us are going to have to separately re-invent the wheel in order to deploy real world WPF apps that pass Designed for Vista certification. I looked at the interactive designer, certainly it has the potential to save millions of hours tweaking XAML code (if i can get it to work in my app), but no templates for Wizards and Dialogs. I looked in VS under Add Items and Add-Ins for a prebuilt Wizard or Dialog template nothing there either. It looks like the only pre-built method is in V ...Show All

  • Windows Live Developer Forums having trouble with MSN toolbar

    I am receiving an error message whenever I open IE and it says: #msntb_toolbar_full_name# is unable to load its config file: between each word is an underscore in case you can't see them. I uninstalled MSN Toolbar because it was getting in my way and now I get this message. How do I keep it from coming on when I try to open IE. I have already tried to reinstall it but it says it's already installed on my computer and ends the installation. Could someone please let me know how to get rid of this This forum is for discussiones related to developing applications using the Windows Live Spaces APIs. For questions related to the MSN and Windows Live Toolbar, please check https://account.live.com/HelpCentral.aspx . . . ...Show All

  • Visual Studio Team System Readonly field and emphasizing font color

    I have a customized work item and I am displaying the created by and date created fields. Both of the read only and that is great. Created by is displayed with black font and gray background, while the created date is dark gray on a gray background and difficult to read. Is there a way to make the date field color darker. I tried to find attributes but to no avail. Unfortunately, I don't think you can do anything to programmatically get rid off the time for FieldControl. If you really want to get rid off time then you can use DateTimeControl with the following two attributes. Format="Custom" CustomFormat="mm/dd/yyyy" -Mohammad ...Show All

  • Visual Studio Conditional Breakpoints on Managed Object IDs

    During the betas of Whidbey I remember that there was a way to generate an object ID that could then be used in a conditional breakpoint. Dang if I can't find how to generate that object ID now. Was the feature pulled If not, where is it hidden You can generate an object ID by going to Locals or Watch window, selecting the variable and choosing Make Object ID from context menu. The ID (e.g. 1#) can then be specified in breakpoint conditions. Azeem Khan Visual Studio Debugger. ...Show All

  • .NET Development Quick way of determining a date from a string?

    Hi all, I have a .NET 1.1 application that needs to be able to very quickly determine if a string is a date. I can not use Exception handling here (i.e. as you would using DateTime.Parse) as it is expensive and there is only a 1% chance that the string will be a date with potentially tens of thousands of strings being checked. Do you guys have any suggestions Regards, Stephen. Unfortunately upgrading isn't an option. Also, we found that getting into regular expressions has been too complicated so we are taking a completely different approach now that doesn't involve checking dates. Thanks for the help though people. It has been much appreciated! Regards, Stephen. ...Show All

  • Visual Basic How to create object of a VB application in another VB application?

    Hi, I have a COM component which is included in a vb project(say "Project1"). Now i have created a new VB project(say "Project2") and I want to access the COM instance which is present in Project1. I do not want to create a new instance of the COM component in Project2. How to do it Can I use pointers to access the dll in project1 from project2 if so, how can i do it Thanks in advance. Priya. Hi, Go to the PROJECT menu then ADD REFERENCE. Click on BROWSE and select the component you wish to add.   I would add a comment to your code at the top to say you have added a reference and where it refers to in case you are not publishing both projects together.    ' Example: R ...Show All

  • Visual C# Delete schedule task and itself...

    Hi, How can I make an windows application, delete a schedule task from control panel. And how can I make it delete itself Thanks http://www.codeproject.com/csharp/tsnewlib.asp http://www.codeproject.com/cs/library/taskschedulerlibrary.asp ...Show All

  • Visual Studio Sandcastle: Support of TypeParam

    Hallo, the typeparam section is missing in the generated documentation with the help of vs 2005 style. Is this a bug with best regards Dr. Voss Dr. Voss, Are you using typeparam in the following fashion /// <typeparam name="T">The element type of the array</typeparam> Let me check and will provide an answer. Anand.. ...Show All

  • Visual C# Calling windows service from a web service

    Hy! I've created a windows service, and now I need to communicate with it from a web service that is running on the local IIS. How could I do this Thanks, Bruno 1-way, but not just for start and stop it, I should be able to call some methods from this service. Sorry, it may be stupid question, but this is my first time to work with a windows services, and I'm not completely sure if I understand the way they work. So, any good reference to it would be helpful. Is it even possible to call methods from it, as I call them from some web service ...Show All

  • Visual C# foreach error?

    Hi.. i am developing a windows application using c#. i have two list boxes. If the user selects an item in the list box and clicks on the button, the selected item should be in the selected listbox. I tried this code, but i am getting an error. private void btnForwardOne_Click( object sender, EventArgs e) { if (lstAvailableGroups.SelectedItems.Count > 0) { lstSelectedGroups.Items.Clear(); foreach ( ListBox item in lstAvailableGroups.SelectedItem) { lstSelectedGroups.Items.Add(item.ToString()); } } } In the above code, i am getting error as: foreach statement cannot operate on variables of type 'object' because 'object' does not contain a public definition for 'GetEnumerator' . ...Show All

  • Windows Forms Status message won't update in real time correctly to screen

    Hello, I am trying to retrieve and display the status of a SQL 2005 merge replication process. I have a class that keeps the Syncronization code. The syncronization agent has an event handler that in turn calls a method to grab the status and percent completed of the current merge process: subscription.SynchronizationAgent.Status += new AgentCore.StatusEventHandler(SynchronizationAgent_Status); subscription.SynchronizationAgent.Synchronize(); Here is the method it calls: static void SynchronizationAgent_Status(object sender, StatusEventArgs e) { m_percentComplete = e.PercentCompleted; m_statusMessage = e.Message; } I am saving the status message in a member variable named m_statusMes ...Show All

  • Visual Studio Team System How is it possible to specify the SpellChecker used by FxCop?

    We use FxCop for 2 years and are now in trouble because we just discovered that FxCop uses a default spellchecker like the one installed by MS Office. In our case, the FxCop results are totally different depending on the PC where it runs ; here we have 15 developper machines and several build machine and we have no guarantee that everybody use the same version of office! Does exist a way to force FxCop to use a given spellchecker Thanks a lot if you have an idea because at this moment we are about to let down this great tool if we don't work it out. Unfortunately no. Currently FxCop will automatically use the spell checker installed by Microsoft Office - you cannot force it to use an explicit sp ...Show All

  • Visual Studio Express Editions Application can't be run under other WinXP OS's

    I've a problem running my Visual C++ express edition application under other WinXP machines. Everytime i want to execute i get an error dialog which posts This Application could not be started,because the Application is not configured properly. To solve the problem you should reinstall the Application (This is just my free interpretation in English, I run the German Version) Anyone any suggestions Thanks in advance Check your projects dependencies, ie if you use glut.dll make sure your distribute that along with your application. Another possibility is are you distributing an optimized build I had similar issues a few days ago and it turned out that the other machine didnt like s ...Show All

©2008 Software Development Network