pinoyz's Q&A profile
Visual Studio Tools for Office RSS feed in Outlook
How can I see if a MailItem is a RSS item using the object model // Johan As its name implies, I would expect the NewMailEx event to fire only for new mail. RSS feed items are not mail. You should be able to use the Folder.Items.ItemAdd method to monitor RSS feed folders for new items. What is it that you want to do with these items I don't write C# code, so I can't speak to the best way to check the type and cast. ...Show All
Visual C++ Smartbridge Alerts
I too am receiving the "entry point not found" message. I have very little technical knowledge and would appreciate assistance in any fashion. thanks. Helen McLaughlin If you're using Internet Explorer 7 Beta 2, you may be seeing an issue for which there is a workaround. Check out the following link: http://msdn.microsoft.com/ie/releasenotes/default.aspx ...Show All
Smart Device Development Threading - using variables declared on the UI.
Hi all, I have created a thread in my application, that performs many updates to the database, using the following method... WorkerSignOffThread = new Thread(BackgroundProcessing); WorkerSignOffThread.IsBackground = true; WorkerSignOffThread.Start(); private void BackgroundProcessing() { processingDone = false; InspectionManager.FillInspectionGoodAnswers(SelectedInspectionUID); processingDone = true; } ...but as you can see, the FillInspectionGoodAnswers() method uses a variable ' SelectedInspectionUID '. This variable was declared in the Form that declares and starts this thread - is this ok The thread seems to run and update the database ok, but I was under the impression that the threads couldn't use UI objects/controls/ ...Show All
SQL Server Errors Deploying an SSIS package
Hi All, I hope someone can help becuase this problem is issue us several headaches. We are currently trying to deploy an SSIS package to a production server. The deployment goes fine, the package runs ok when executed manually. The issues start when we try and execute it under the SQL agent. Having gone back to the drawing board and spent much of the day reading various articles and applying the various options (especially those within the MS KB article 918760 ), we are still no closer to a resolution. The SSIS package was created under an Administrator, and the SQL agent runs under a different Domain Admin account. When we set up the Schedule to read from SQL Server or the SSIS Store the standard "Executed as user: D ...Show All
Visual Studio 2008 (Pre-release) custom control problems
i am writing a custom control to draw a series of polylines. i've managed to create a nice little program that does just that (and also draws the equivalent bar chart :-) ) but i am having problems converting this to a custom control. my first problem is that i do not know how to create DP's for an unknown number of user defined variables. for example i want the user to be able to say something like: <LineChart .........................> <Line> <"series of points"/> </Line> <Line> <"series of points"/> </Line> .................. </LineChart> (the reason for having any number of lines is that i want to be able to add and delete lines at runtime) my initia ...Show All
SQL Server Errors: SQL Reporting Services with CRM 3.0
Good Day All ... I am currently trying to install CRM 3.0 onto one of our test servers. I have managed with no problem to get everything ready for installation ... but having a problem with reporting services. On the system requirements results page i have green for everything but reporting services. ERROR; Specified Reporting Services Reports Server http://XXXXXX/ReportsServer was not found. I have reporting services installed, can someone please give me some direction on where to go from here to get this up and working. Thanks Hi, no defintely not, but you should have a look on my site under the Screencast Section, this will whow you a way to solve your problem. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005. ...Show All
Visual Basic OTP: Please help !
After starting Windows XP, the following were shown on the screen. Please help finding out the problem, and let me know what I shall do. Thanks in advance!! A Problem has been detected and windows has been shut down to prevent damages to your computer. Check to be sure you have adequate disk space. If a driver is identified in the stop message, disable the driver or check with the manufactures for driver updates. Try changing video adapters. Check with your hardware vendor for any BIOS updates. Disable BIOS memory options such as catching or shadowing. Technical Information: *** STOP: 0X0000008E(0XC000001D, 0X8062F509, 0XA9DDFA0C, 0X00000000) Hi, Lydia. These forums are for programming questions only. You need to f ...Show All
SQL Server Applying colors to reports
Is there a way to apply .css or Skin files to all reports. Changing colors in each and every page is a little cumbersome. Thanks in advance Hi Harry, do you mind going into further detail I'm trying to do the same thing (make all reports customizable and have a consistent look and feel) but have little experience with reporting services. What kind of file was the database-table you used, and where in the project should it be saved Could you perhaps post some sample code/expressions Thanks in advance! ...Show All
Visual Studio Brace Highlighting and Background
I actually just installed VStudio 2005 and am editing C++ code and the only brace highlighting I get is when I type a new } , but it matches in black that is really hard to determine between it and a regular one, there is no option to set the background, only the brace color. Also, is there a way to make it match just by clicking next to the } Correct. The behaviour and options from the linked thread above are by design. -Tim <MSFT> ...Show All
SQL Server Connecting to Oracle on 64-bit (x64) machine
Hi, Has anyone received the following error when trying to create a connection to an Oracle database using SSIS installed on a 64-bit (x64) machine "Test connection failed because of an error in initializing provider. ORA-06413: Connection not open" The reason this is funny to me is because I have the same Oracle/SSIS setup on a 32-bit (x86) machine and I can connect successfully. On both machines I have SSIS RTM, Oracle 9.2 and using the Microsoft Ole Db Provider for Oracle. Thanks, - Joel A teammate of mine might have found the problem and "solution" (it really is a messy workaround right now). Stupid parantheis :-) Here are some excerpts from a support document Subject: ORA-12154 or O ...Show All
SQL Server Paged Result Sets
What is the recommended mechanism for selecting paged results from SQL. Presently I pass various params including the request Max Items Per Page and the requested page. The I execute the query as a count with the search params. Then comes the paging logic, which validates the page number against the request page and number of hits etc. Then a temp table and record variables are created for the results. Then I run the query again with a cursor and select the appropriate Items into the temp table based on the paging values (First Item and Last Item). Then I return the temp table & some additional return params with the Total Hits etc. The Stored procedure is accessed via an ADO.Net client and the system.data.IDBReade ...Show All
Software Development for Windows Vista promote bindable properties
Hi, I did this and saw new depend properties at workflow scope that somehow seem to be tied to other depend props at activity scope but don't understand what ties them together. I see the new properties declared in the code with getter/setter functions but don't see anything in the code or .xoml files that causes a value to be copied to or from another depend prop. Where is this Thanks, Scott Promoting activity properties causes new dependency properties being generated at the workflow level (or at the root activity level if you're designing an activity). The original activity property is then bound to these new properties through ActivityBind. If you look into the .designer.cs file, you'll notice a call ...Show All
Visual Basic Click a form button inside webbrowser
Hi all. I am trying to extract data from some web page, using webbrowser control, but first i have to login. I would like to login automaticly. On my web page, as you allready know, I have username and passwor fields that i can fill using following code: Me .WebBrowser1.Document.Forms(0).GetElementsByTagName( "INPUT" ).Item(0).SetAttribute( "VALUE" , "user123" ) Me .WebBrowser1.Document.Forms(0).GetElementsByTagName( "INPUT" ).Item(1).SetAttribute( "VALUE" , "pass123" ) What i dont know is how to perform a click to the submit button. This is its html code: <INPUT TYPE="SUBMIT" VALUE="SEND" NAME="PRIJAVA"> Th ...Show All
Visual Studio Team System Use 2 TF-servers at same client.
We have TFS running on a test server and a production server. I want to be able to switch between the two without having to disconnect and reconnect, so I just started VS twice and connected to the test server in the first IDE and to the production server in the second IDE. However this does seem to cause some problems, when working with work items, because the test server and production server have different work items and workflows. Is this configuration supported It sometimes happen that I'm unable to save a work item because the TFS server reports "There may be a problem with the workitem type definition" or "Not supported field or not enough permissions" (these are not the exact m ...Show All
Windows Forms constraint violation error during load event
I am getting a 'constraint' error on my form load event; when executing this line of code: Me .TblProspectTableAdapter.Fill( Me .ProspectsDataSet.tblProspect) the error is as follows: System.Data.ConstraintException: Failed to enable constraints. One or more rows contain values violating non-null, unique, or foreign-key constraints. at System.Data.DataSet.FailedEnableConstraints() at System.Data.DataSet.EnableConstraints() at System.Data.DataSet.set_EnforceConstraints(Boolean value) at System.Data.Common.DataAdapter.Fill(DataTable[] dataTables, IDataReader dataReader, Int32 startRecord, Int32 maxRecords) at System.Data.Common.DbDataAdapter.FillInternal(DataSet dataset, DataTable[] datatables, Int32 startRecord, Int32 maxRecords ...Show All
