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

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

computerology

Member List

wiyosaya
Wellman
Esprit
Frame
Hans Mank
RayCan
joslat
Exploder
SmartSpy
Yannis Angelis
Tonton888
xion.truth
Lightening
Aqua General
Tim Hodgson
fj64
ruijoel
skailey
AdeptBlue
Rossa
Only Title

computerology's Q&A profile

  • Visual Studio Team System report designer don`t find all fields

    hi, i`m using report designer to create reports on my self-created work-items. but i did not find all fields and types in the selection in the report designer. i create a new report project. connect to the ms sql server 2005 analysis service. use the following conneciton properties: server-name: atvie-tfs01 database-name: TFSWarehouse i tested the connection and the connection is ok. in the query builder i choose the "team system" cube. and then i get the first problem. i added work item - System.WorkItemType to a filter with "Add to filter". in the filter i want to choose in the filter expression one of my newly created work-items. one is called ReleaseItem. but it is not available in the drop-down! but i imported alr ...Show All

  • Software Development for Windows Vista Control panel "Windows Cardspace" doesnt work

    Every time i start the "Windows Cardspace" from the control panel, i get this eventlog error: Running on german XP Pro SP2 Ereignistyp: Fehler Ereignisquelle: CardSpace 3.0.0.0 Ereigniskategorie: General Ereigniskennung: 269 Datum: 07.11.2006 Zeit: 19:38:32 Benutzer: NT-AUTORITAT\SYSTEM Computer: ATHLON64 Beschreibung: The Windows CardSpace service is too busy to process this request. User has too many outstanding requests. Additional Information: bei System.Environment.GetStackTrace(Exception e, Boolean needFileInfo) bei System.Environment.get_StackTrace() bei Microsoft.InfoCards.Diagnostics.InfoCardTrace.BuildMessage(InfoCardBaseException ie) bei Microsoft.InfoCards.Diagnostics.InfoCardTrace.TraceAndLogExceptio ...Show All

  • Architecture Factory, different API

    Hi! We have a solution where a factory returns the correct dataprovider which in turn returns the correct dataobjects. The problem is that we f.ex. have one provider that uses the external system X and another that uses the external system Y which in turn needs different arguments to return the same data. XProvider.GetWorkOrder(string arg1, string arg2, long arg3) : WorkOrder YProvider.GetWorkOrder(string arg1) : WorkOrder Is there anyone that has a solution on this problm It means you'll need to unify the API as it is exposed to your application. One way to do this is to go with the maximum number of possible inputs, instead of the minimum. Here's an example: A few years ago I worked on an application t ...Show All

  • Smart Device Development Notification for Change in Contacts

    Is there a way to get notification for change in contacts ..So that i can update the contacts my app is maintaining Beats me... I have not done that myself (but other Pocket Outlook stuff), and that's how i would have done it... Hope someone else knows this. You have a Windows Mobile 5.0 device, right ...Show All

  • .NET Development RegistrySettingsProvider

    I'm using the RegistrySettingsProvider MSDN example to save settings in my WinForms application, but I have a couple of questions. First, When calling SetPropertyValues(), the app would fail when using SerializedValue. I then added code to check for propval->Deserialized to determine if I should use propval->PropertyValue->ToString() vs. propval->SerializedValue. Why does this happen and why is this not needed in the MSDN example Second, I now have an issue where I can compile and run my code in debug mode, but in release mode I get an unhandled exception of type "System.TypeLoadException". Could not load type "Namespace.RegistrySettingsProvider" from assembly Namespace, Version=1.0.2531.22047, Culture= ...Show All

  • Internet Explorer Development IE7 issue with Integrated Windows Authentication in IIS

    Hi, I've a web application developed in ASP.NET which is hosted in a Windows 2000 server with only Integrated Windows Authentication enabled. This is to make use of Active Directory Services. Now, everything works fine with IE6. But in IE7, I get the Page Not found message. When I checked the headers, I saw the status as 401.1 which, if I am correct, basically is because of some Permission issues. Why do I get this if I use IE7 This above issue is with my Production server. Now, having said that, I've a test server which is also Windows 2000 on which everything works well. I just dont have a clue as to where the problem is with my Production server. Please help me on this ASAP as I am getting a lot of calls from my clients regar ...Show All

  • Visual Basic resource parameter?

    im not quite sure how this happened and im not sure on what it is and how to fix it.. help please Error 1 The item "obj\Debug\abc.Form1.resources" was specified more than once in the "Resources" parameter. Duplicate items are not supported by the "Resources" parameter. Thanks for the solution by removing the resx file. Here's how to duplicate. 1. Create a partial class that inherits from an existing form object. The parent form object should have existing UI controls. (This is the recommended way in 2005 to store methods for a form that might be obliterated during Designer re-creation.) 2. Since this partial class inherits from an existing form, a form designer is presented when y ...Show All

  • Visual C++ Change DLL Search Order Dynamically?

    Is there a way I can alter the dll search order dynamically (launching executable process) * SetDllDirectory( ) only works with LoadLibrary/LoadLibraryEx * CreateProcess( ) doesn't seem to have any flags/parameters to toy with. * LoadLibrary( )/LoadLibraryEx( ) don't load executable bits for executing (only for resource manipulation) * Changing values in the registry upon load is unacceptable and would likely break anyway. Ah. I was of the understanding that you wanted to replace kernel32.dll for given applications to monitor certain *existing* methods. You're talking compatibility issues. Patching the IAT seems like a feasible solution in this case. ...Show All

  • SQL Server SSIS Higher Level Edition error when run in a Sql Job

    Hi, I am receiving the following error in Sql Job agent when I try to run an SSIS package : The task "Create Excel File" cannot run on this edition of Integration Services. It requires a higher level edition. It then goes on to tell me : The Execution method succeeded, but the number of errors raised (2) reached the maximum allowed (1); resulting in failure. This occurs when the number of errors reaches the number specified in MaximumErrorCount. I have tried reseting the error count to allow for the "errors" , but it stills fails. The job suceeds in Visual Studio, but not when scheduled in Sql Management Studio. Any suggestions Thanks, J. Yet more information to explain what I'm typing ...Show All

  • Windows Forms Problem adding row to a datagridview using the BindingNavigator

    I have problem adding row to a datagridview using the BindingNavigator.. This is what I have: Bound datagridview with 2 columns both not null but without default values and the user add new rows using the add button of a Binding Navigator. The form use the dataerror handler to handle the wrong data inserted in the datagridview. This is what happens: I click once the "add row" button and an empty row is added at the end of the datagridview. If I click again the button, without to enter any data to the previous row, the application crash and displays me an unhandledexception. I was trying to handle it in the CellEndEdit event: Private Sub datagrid_CellEndEdit( ByVal sender As Object , ByVal e As System.Windows.Forms. ...Show All

  • SQL Server how can I get which columns were updated in trigger on update

    Hi, I'm using sql-2005. I want to update several columns in different tables whenever an update is happend on specific table. I have a trigger for that which update all the relevant places when it fires. I want to do this update only if certains columns were changed, otherwise - do anything, to reduce performance. How Can I know which columns were updated inside the trigger The tables has many columns and only if 2 of them were changed then I need to update other tables. Many thanks, Nira. Many thanks for you quick response Though maybe there is some build-in way to do that but that's definitely a simple good way. Thx ...Show All

  • Smart Device Development Does CF 2.0 support app.config?

    Hi all, I would like my application to use the XML app.config file, but can't get the namespace's I require. Doesn't CF 2.0 support this That means you should open this file like any other XML document (e.g. using DOM) and process it using normal XML functions. ...Show All

  • Software Development for Windows Vista Question: Windows Vista vs Solaris 10

    Hi dear Community =) I'm about to buy a new computer next year with all new hardware and so on. OK I'm a hardcore user and need every single bit of power in my machines. Before comparing anything I want to say that system stability and performance matters for me most. I'm not a gamer more a coder, but it makes fun to shoot some aliens in my spare time ;-) Windows Vista is much better than any OS Microsoft has produced for the End-User before. But, I saw some very interesting things about Solaris 10 on the sun.com website. They say: "Solaris 10 is the most advanced OS on the planet." Now I'm not sure which os to install as primary os...like I said games aren't my priority it's more the platform itself. And So ...Show All

  • Visual Studio Custom Dedugging ?

    Does anyone know away (using a plugin) to get visual strudio to execute an external debugger when dubugging a VC++ project i.e. if I press f5 my project would build but instead of Visual Studio running my program and debugging it, visual studio would instead call a different application to run and debug my app The Other debugger use the map files, debug info properly, I just want away to make visual studio use it instead of doing the debugging itself. You could create your own command and map F5 to that command. When run, you could do whatever you wish, including invoking a different debugger. You could also create your own debugging engine, but to use that engine you may need to create your own p ...Show All

  • Visual J# using java.applet package

    Hello I have these codes,how can i use them in vj# ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ this is an applet ------------------------------------------------------------------------------------------------------------------------------------------------------------------------ import java.awt.*; import java.applet.*; public class twelve1 extends Applet { Label wellcome = new Label(" Wellcome to Applet programming"); public void init() { Font bigFont = new Font("Helvetica", Font.BOLD, 18); wellcome.setFont(bigFont); add(wellcome); } } ---- ...Show All

©2008 Software Development Network