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

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

DarrellMerryweather

Member List

P.H.
jbujold
slsjr
CJW99
HeathM
Maizatul Akmal
Dareman
Andy Burrow
carlz
William Kirchhoff
Louis Jaramillo
Lovericky
LeoXue
Steve1999
mario.muja
slippyC
JGiers
Randy Galliano
lucerias
Wen Jin-Chao
Only Title

DarrellMerryweather's Q&A profile

  • Windows Search Technologies Can't Uninstall Windows Desktop Search

    I'm having trouble uninstalling Windows Desktop Search 2.06.5000.5373. It probably has to do with my installing and uinstalling Windows Live Toolbar Beta. I've looked through several threads here, but nothing seems to work. In the Add/Remove programs area, I click the remove button and I get the following error message: Windows Desktop Search Setup Error The update could not be removed because newer updates are installed. Please remove the newer updates first. I don't see any newer updates anywhere in the add/remove programs related to the toolbar or desktop search. The Windows programs I see in Add/Remove programs I see are: Microsoft .Net Framework 1.1 Microsoft .Net Framework 1.1 Hotfix (KB886903) Microsoft .Net ...Show All

  • SQL Server Textbox color expression referring to textbox value

    Is there a way to have the Color expression for a textbox refer to the value in the textbox without having to explicitly provide the name of the textbox For instance, if I have a textbox that is named textbox10 that is displaying the value Fields!ItemProfit.Value and I want non-negative values to be Black and negative values to be Red, I would code the Color expression as: =iif(Fields!ItemProfit.Value >= 0, "Black", "Red") Is there a pronoun or other identifier I can use instead of Fields.ItemProfit.Value For instance, something like =iif(This.Value >= 0, "Black","Red"). If I have alot of fields in my report that I want to have this kind of conditional color formatting on, then I'm ha ...Show All

  • Visual C# How to view the frame page sources in webbrowser control

    Usually,I can view the sources of the frame page sources as below: webBrowser1.Document.Window.Frames[index].Frames[index].Document; But,it can't work in www.afb88.com . why I want to built a project to autologin this site. In the DOM viewer,I can see the struction as below: html --head --frameset ----frame ----frame -------html ----------head ----------frameset --------------frameset -------------------frame -------------------frame ----------------------html -------------------------head -------------------------body (I need to get in it)   CommonGenius.com wrote: What do you mean, "it can't work" Have you tried What proble ...Show All

  • Visual C# Operator overloading for int[]

    How to overload > or < for int[] You can only overload operators on your own classes. Your best bet is to create a custom collection which could then provide operator overloads with your own logic. Make sure that not only do you provide the overloads, but that you also implement IComparable. ...Show All

  • Visual Studio Team System CTP5 - Names names names

    Hi What about this scenario: CREATE TABLE [Schema1].[TheTable] ... CREATE TABLE [Schema2].[TheTable] ... Perfectly legal and probably quite common. But the naming scheme for the files added to a DB-project wont permit this am i right Right now I'm looking at an error in my DB-project that I assume is triggered by this. And what about this: CREATE SCHEMA Person CREATE TABLE [Person].[Person] ... This fails too on import. Brumlemann Solution Architect The first one should be supported in CTP5 version. Regarding the second schenario, there are some imperfections in CTP5, but it will be working fully in CTP6. - Sachin Kumar, Developer, Microsoft ...Show All

  • Windows Forms Communication between usercontrols and event delegates

    Hi, I am developing a winforms application. There are more than 10 usercontrols and these controls are loaded dynamically when needed. All these controls are derived from a base user control. My question is, what is the best way to communicate the usercontrols between themselves and between the main (container) form. (button click in one usercontrol will reload another one, textchanged on usercontrol will change textbox in the main form etc.) Right now i am using static declared events but i am not sure this is a good idea. I may not have the best solution for you, but I hope I can give you some ideas. One model might be to place all of the event handlers for the UserControl clicks in the form that con ...Show All

  • Visual Studio Team System Scheduled Build debugging

    In my C:/windows/SchedLgU.Txt file I get the following error when tyring to run a build through a scheduled service: Finished 11/28/2006 11:38:27 AM Result: The task completed with an exit code of (64). Nowhere can I find documentation on what that code means. The msdn article: http://msdn2.microsoft.com/en-US/library/aa337645(VS.80).aspx says to check the log file or event viewer for more information and there is nothing in the event viewer and you have what was in the log file (if I'm going to the right one ) The scheduled build is running under a local administrator account. Logged on as the same local administrator when I cut & paste the run command into the command window it does the build without issue. Th ...Show All

  • .NET Development Inserting dates and times into an Access Database

    The following code: public void clockIn(int usrID, int proID) { string sUpdate = "insert into tbl_punches (empID, proID, intDate, intTimein) Values (@usrID, @proID, @date, @inTime)"; OleDbCommand inCommand = new OleDbCommand(); OleDbConnection inConnection = new OleDbConnection(); inConnection.ConnectionString = @"Provider=Microsoft.Jet.OLEDB.4.0;Data Source=C:\Documents and Settings\Andrew\My Documents\Buisness Databases\timeclock.mdb"; inCommand.Connection = inConnection; inCommand.CommandText = sUpdate; OleDbParameter empID = new OleDbParameter("@usrID",usrID); OleDbParameter projID = new OleDbParameter("@proID", proID); OleDbParameter time ...Show All

  • SQL Server access denied to RSReportServer.config

    Hi, I've just installed the new SQLSRV 2005 Express Adv Ed (ASP.NET 2.0.50727) and also installed the reporting services. Trying to browse the ReportServer website (via inetmgr or //localhost/ReportServer/) returns the following error (using Windows Credentials): >>The report server has encountered a configuration error. See the report server log files for more information. (rsServerConfigurationError) Access to the path 'c:\Program Files\Microsoft SQL Server\MSSQL.2\Reporting Services\ReportServer\RSReportServer.config' is denied. << How can this be fixed All hints appreciated. Thanks ...Show All

  • Smart Device Development timeoutsession in pocketpc application

    Iam using wm5 pocketpc.I want to create timeout session in my pocketpc application which is in vb.net.The application is webservice based.So that i want to create timeout session in my client device application.Is it possible Is there any code snippet for this Please help me Thanx in advance if you're looking to terminate a session based on a timeout, you need to do so at the source of the session. You said you're using a web service Any session handling would be server side. If you're looking to create a session-like construct within the context of the pocketpc -- i.e., you want to log someone out of the app in question after a certain period of time, simply create a globally-accessible "time to li ...Show All

  • Visual Studio ASP.Net configuration failure

    When I select asp.net configuration in the website menu of VWD, an error occurs and doesn't display the WebSite Application Tool. I have tried re-installing VWD from microsoft.com and a CD but it hasn't cured it. Does anyone have an explanation for this Thanks The Melv ...Show All

  • Windows Forms stretch form to full screen c#

      Is it possible to strech my form to the resolution of my screen  [coded in C# net2.0] I need to install my application to computers that have a lower screen resolution.    1280x1024 to 1024x768 for example.   Thanks for your helps   Mark you may also want to look at the Screen.PrimaryScreen.WorkingArea property, which holds information about your screen width/height etc... excluding the taskbar item. Just additional information! ...Show All

  • SQL Server PDF File size changes from SQL2000 to SQL2005

    Hi All A report that I have written in Visual Studio 2003 and published to an SQL2000 Server consists of 142 pages and is rendered in pdf format to be emailed to a user. The size of the attached pdf file is 814Kb - Application Microsoft Reporting Services 8.0 I have now opened the report in Visual Studio 2005 and converted it to this format. I have published this to our SQL2005 server and the 142 page pdf file created is 9.40Mb in size - Application Microsoft Reporting Services 9.0 Is there any way I can reduce the size of this back to it's original 814Kb Cheers Alan Hi All Further to this thread: If i run the report in Visual Studio 2005 and then select the save as pdf option the file i ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Where is the download?

    It is 12:48 pm here (GMT + 1)... in Nuku'alofa (GMT + 13) it is tomorrow... So where the hell is my download link :-D :'( Its like 1am in the states so i guess we are waiting for them :(. This is like xmas and Bill Gates is our dad, wake up Billy so I can open my XNA! ...Show All

  • Software Development for Windows Vista .NET COM+ - "Error when enlisting in a distributed transaction"

    Hi, I developed a .NET serviced component with Framework .NET 1.1, instaled it in a win2k SP4 server (COM+ 1.0) and marked that component with Transactions=Required. This application server communicates with a SQL Server 2000 SP3 database server inside the same subnet/domain. When a simple select query is run under the .NET Serviced component, i got the message: "Error when enlisting in a distributed transaction" The COM+ package that hosts this component has an ActivationOption=Library and has the options "Enforce Access Checks for this Application" and "Enable Authentication" marked as false. The component is created from a ASP.NET webform using ASPNET user credentials ... this user is a member o ...Show All

©2008 Software Development Network