Leo Kent's Q&A profile
Software Development for Windows Vista Microsoft Activesync will not recognize Office 2007 Beta
I have currently upgraded my office 2003 to Office 2007 Beta and my activesync will no longer recognize that Office is installed and will, therefore, not sync my Outlook data. Has anyone else had this issue Any thoughts on resolutions to this I am using HP 6325 (Phone/PDA combo) with Microsoft Pocket PC Version 4.20.0 (Build 14350) I am having the same difficulty on a new Dell Axim X57v. Although ActiveSync recognizes when the PDA is hooked up to the laptop (Dell Inspiron 9300 running on Windows XP), it keeps telling me there is a synchronization error. When I run diagnostics, I'm told that ActiveSync requires Outlook 2000 or later. I have been running Office 2007 with Outlook 2007 with no other pr ...Show All
SQL Server SSIS Datetime Variable perfoming >= instead of >
The source table has timestamp column (Modified Date), which gets upated with each modification via an update trigger. I store the MAX(modifieddate) in a DeltaExtractionHistory Table in the staging database for each extraction or package execution. Then in the next run, I need to pick the coulmns that have a greater datetime, than the last extracted MAX(ModifiedDate) in the DeltaExtractionHistory table for delta processing. The OLEDB source has the following SQL statement: SELECT * FROM [dbo].[MyTable] WHERE [ModifiedDate] > with the following parameter: Parameter 0 : dtLastModifiedDate dtLastModifiedDate is an SSIS variable of type Datetime. I read the value of MAX(ModifiedDate) in this varia ...Show All
SQL Server Need your suggestion /Advise
Hi guys, I would like to be advised from experts on one career related question. I have 5 + years of Experience as a DEV and Test. I had mostly worked on VB6, .NET 1.1[ asp.net ,C#] for 3 years as DEV and since 2 years i am into Software System testing [ its more related to Functionality Testing of applications built using .NET [ asp.net/c#, Sql server 2005 ]. I would like to switch the career to Core Development again and would like to seek experts's adivice.. Iam interested in learning SQL Server 2005 advanced features[ BI]: Could you pls suggest me one area in SQL server 2005 from below[ parameters:I should be able to learn it quickly on my own,great demand in the market , great scope for development in near fure etc., ...Show All
SharePoint Products and Technologies How to Regenerate "My Links -> My SharePoint Sites"
How does one regenerate the list of sites that appear in a user's "My SharePoint Sites" under the "My Links" menu at the top right of the screen after sites within a site collection have been moved I find that after moving sites, the links are not updated. How about posing the question this way - can anyone explain what mechanisms generate the My Links -> My SharePoint Sites and what customization options are available ...Show All
Visual Basic Tabbed Browser - How to add new tabs?
Hey, I'm trying to create a simple web browser that supports tabbed browsing. (That is, using to tabs to open multiple windows without launching the program multiple times.) I have everything except the actual tab part complete. I need to know how to add a tab and assign a web browser to it. I can get it to add the tab but assignning the browser as a child is beyond my knowledge. If at all possible a full example of a tabbed browser would be most effective for not only completing the task but also for me to learn how to do it. It that is not available any help would be just as highly appreciated. I am using a TabControl and a WebBrowser for controls and both seem to work correctly. Other than that there a ...Show All
Windows Forms Annotations lost for Typed Datasets using Web Services
Hi! I developed a typed dataset with tables and table adapters. I renamed the child and parent properties, to a name easier to understand, for example, < xs:annotation > < xs:appinfo > < msdata:Relationship name = " Component_Component " msdata:parent = " Component " msdata:child = " Component " msdata:parentkey = " Id " msdata:childkey = " ParentId " msprop:Generator_UserRelationName = " Component_Component " msprop:Generator_RelationVarName = " relationComponent_Component " msprop:Generator_UserChildTable = " Component " msprop:Generator_UserParentTable = " Component " msprop:Generator_ParentPropNam ...Show All
Windows Forms I am trying to use Selection = MultiExtended in my listboxes
Hi all, How do I remove all my selected items from Listbox1 private void button3_Click(object sender, EventArgs e) { // add seletected items from Listbox1 to Listbox2 if (lstBox1.SelectedIndex != -1) { for (int x = 0; x < lstBox1.Items.Count; x++) { if (lstBox1.GetSelected(x) == true) lstBox2.Items.Add(lstBox1.SelectedItems[x].ToString()); } // this does not work well - something related to the index for sure for (int x = 0; x < lstBox1.Items.Count; x++) { if (lstBox1.GetSelected(x) == true) { lstBox1.Items.Remove(lstBox1.SelectedItems[x].ToString()); } } } } Any ideas - Thank you! Joao you simply go through the selectedItems collection and remove them from the li ...Show All
Game Technologies: DirectX, XNA, XACT, etc. I can't find what I'm doing wrong!
[EDIT]Well, I finally got it to work. What was wrong I don't know. I did get it to work simply by adding a weight variable into the vertex definition, but am not sure why, simply becuase that had not worked before (yes, I had defined them as 1 before). So, no more help needed, I guess... Perhaps you should start with the tutorials included with the DirectX SDK. The second Direct3D tutorial draws a triangle. The tutorials are located in yoursdkinstalldir \Samples\C++\Direct3D\Tutorials. ...Show All
SQL Server RIGHT OUTER JOIN
Hi, i need an equivalent code to RIGHT OUTER JOIN i do not want to use that. ex, SELECT dbo.Test1.a, dbo.Test1.b, dbo.Test1.c, dbo.Test.t FROM dbo.Test RIGHT OUTER JOIN dbo.Test1 ON dbo.Test.a = dbo.Test1.a thanks Hi, What version of access are you using Just to see what syntax is supported. Greetz, Geert Geert Verhoeven Consultant @ Ausy Belgium My Personal Blog ...Show All
SQL Server Cannot Connect Remotely to HTTP EndPoint
Dear all, I appologise that incarnations of this topic have been posted several times on this forum, however I cannot find a scenario that is the same as my own so I've resorted to starting a new thread. I can successfully create and connect remotely to an HTTP EndPoint on my Windows 2003 machine using Integrated security, the administrator username and password via my static IP address. I have read that Windows XP SP2 supports HTTP EndPoints, and it would be much more convenient for me to be able to create EndPoints in XP, and connect remotely. I have created the endpoint like so... CREATE ENDPOINT sql_tvr10 STATE = STARTED AS HTTP( PATH = '/sql/tvr10', AUTHENTICATION = (INTEGRATED), PORTS = (CLEAR)) FOR SOAP ( WEBMETHOD 'Stor ...Show All
Visual Studio Express Editions a new line as a string
how do I do a new line as a string. Like and equivilnt of a '<br>' in html. ...Show All
Visual Studio Express Editions Updating Data, take 3...
I am amazed at how difficult it has been trying to figure out how to update data. Please help me!!!!!!!!!!! Here is my attempt to update a data table with an update command: Dim oCon As New OleDb.OleDbConnection( My .Settings.FantasyConnectionString) Dim oCommand As New OleDb.OleDbCommand Dim oAdpt As New OleDbDataAdapter oCon.Open() If IsBench = False Then strSQL = "UPDATE Table1 SET Field1 = 1 WHERE ID = 1" oCommand = New OleDbCommand(strSQL, oCon) oAdpt = New OleDbDataAdapter(oCommand) oAdpt.UpdateCommand = oCommand oAdpt.Update( Me .DataSet1.Table1) dt = me.DataSet1.Table1 I put a break just after the last line up there to see if my changes were made ...Show All
Commerce Server Payment Profile error
Hi I have extended the credit card payment class and I'm getting an error when the update method is being called. The error returns: "Failed to persist profile to underlying stores" in ProfileBase.cs (HRESULT: 0x80040E57) I have extended the schema to include a new property in the General Info group, and have made sure that the property name in the schema matches key being used by ProfileBase in the GetValue and SetValue function calls. Any help would be gratefully appreciated. Paul Tew When you created the new profile property in the Commerce Server Manager did you also map it to a database column If so, did this code work before If you're not sure, it's also possible you h ...Show All
SQL Server Problem when passing parameter to Execute SQL Task
Hi! I have a execute sql task to create and drop logins. I want to create/drop the ASPNET login, but I need to pass the domain using a parameter. So I mapped a parameter: Variable name: User::serverName Direction: Input DataType: Varchar Parameter Name:0 and the sql is the following: CREATE LOGIN [ \ASPNET] FROM WINDOWS But I get the error: Executing the query "CREATE LOGIN [ \ASPNET] FROM WINDOWS failed with the following error: "Windows NT user or group ' \ASPNET' not found. Check the name again.". Possible failure reasons: Problems with the query, "ResultSet" property not set correctly, parameters not set correctly, or connection not established correctly. What am I doing wrong ...Show All
SQL Server Special/Foreign Language Characters Issue
Hi, We have a package that does a simple table to table data loading. Both source and destination have the same Codepage (850) and collation (SQL_Latin1_General_CP850_CI_AI). However, there are some foreign language characters in the source table, and it gets messed up when it's loaded into the target. Here's an example for a column with this type of text: Source: Solut§es Informst Target: Solu■oes Inform t Both columns are char(30). I have tried to load this row into another server in a different location and it works just fine, however the original target of data displays the text incorrectly. I have no idea what can be causing this. Thanks, ...Show All
