Software Development Network Logo
  • SQL Server
  • .NET Development
  • Visual C++
  • VS Express Editions
  • VS Team System
  • Windows Forms
  • Visual FoxPro
  • Windows Live
  • Visual C#
  • Visual J#
  • Visual Studio
  • Visual Basic
  • Architecture
  • Windows Vista
  • Smart Device

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

WinFXGuy

Member List

dr4nra
Miguel Coutinho
vnkt_ravi
BarryIOS
Manuel Feller
Crimson_Blah
colostate
Phil James
Hemant Savant
Dwarfer
-Matze-
VBDeveloper
d_harry45
Jeff Ulrich
buguyaga
Misha Shneerson - MSFT
Open Source Pong
nsimeonov
Digant
Lijuan
Only Title

WinFXGuy's Q&A profile

  • SQL Server HideMemberIf ADOMD.NEt

    Hello everyone! I have a ragged hierarchy, and I'm using HideMemberIf = ParentName in the last level of the hierarchy (AS 2005) I have a client application written using ADOMD.NET where I put the data into a cellset object. The problem is that I can't differentiate when a level has this property set with adomd.net. Could anyone help me here thanks There is no way in ADOMD.NET to find out whether a level has HideMemberIf turned on. ...Show All

  • SQL Server Report Models using Islookup and expandinline

    I am building and deploying models. I have many small description tables, they include two attributes. On attribute is the key (which is a code or type) and the other is a varchar description.  They tables are each optionalone related to the primary table.  I am "denormalizing" the description tables using Islookup.   I change the Role in the primary table to ISLOOKUP, I modify the defaultattributes to remove the code or type key attribute, only the description attribute is now a detailattribute.   I hide the key attribute just in case. In most cases when I do this the de ...Show All

  • Smart Device Development How to use SetWindowLong in VB

    Hi! I am trying to use the SetWindowLong and CallWindowProc API functions in VB. In desktop VB, they're supposed to be declared as: Declare Function SetWindowLong Lib " user32 " (ByVal hWnd As Long, ByVal nIndex As Long, ByVal dwNewLong As Long) As Long Declare Function CallWindowProc Lib " user32 " Alias "CallWindowProcA" (ByVal lpPrevWndFunc As Long, ByVal hWnd As Long, ByVal Msg As Long, ByVal wParam As Long, ByVal lParam As Long) As Long but in my smart device app, "user32" PInvoke DLL is not found. Where can I get user32.dll Or are these API's found in a different lib for smart devices The MSDN help file says that the header "W ...Show All

  • Visual Studio Express Editions How to Find Child Nodes in a TreeView Control

    This will hopefully be a simple question... I have a treeview control (Treeview1) that gets filled programmatically with different numbers of nodes and child nodes. I am trying to find out how many child nodes one particular node has and what the text of these child nodes are. I know the parent node's name is "Drives" and that each of the child nodes under this node will be a drive letter followed by a colon and backslash (such as C:\ or D:\). Is there a way to find how many of these child nodes exist and what their names are I'm not sure if there's an easy way to use Nodes.Find, but it seems to be leading me nowhere. ...Show All

  • SQL Server Newbie needs help with timestamp calculation

    I'm a newbie, so please be gentle I have a table that has a timestamp column that I can reference, e.g., SELECT * FROM mytable WHERE RECORDTIME < {TS '2006-05-01 00:00:00.000' } This type of selection works. What I want to do now is select the rows where the timestamp is less than 30 days prior to the current date instead of hardcoding a timestamp every time. I'm trying to select anything older than 30 days. SELECT * FROM myfile WHERE RECORDTIME < [ current date's timestamp] - 30 days I don't even know where to start so any help is greatly appreciated. Thanks in advance, Robert ...Show All

  • Windows Forms to get the mouse location in the RichTextBox?

    Hi How to get the mouse location in the RichTextBox Thanks... Subscribe to any of the Mouse* events.  The best would be MouseMove or MouseHover. sample code for MouseMove (Will display Mouse X + Y positions in console/output window): //Add this line to main body (Maybe in initialise component RichTextBox1.MouseMove += new MouseEventHandler(this.OnMouseMove); //Add this method&n ...Show All

  • Windows Forms C# Issue

    I am having an issue with C# that I am unfamiliar with. This is the actual error message I am getting:  <color="darkred">The keyword new is required on 'MyMail.UI.Controls.WButtonEdit.Validate' because it hides inherited member 'System.Windows.Forms.ContainerControl.Validate()'.</color> How do I fix this Here is my updated line:public new event WValidate_EventHandler Validate = null;Still  ...Show All

  • Windows Forms Screen reader integration

    I'm trying to create an IAccessible interface within Flash using a screen reader programme called window eyes, any ideas how i can fully integrate the programme into my UI without the need to install it on seperate computers the programme will be eventually deployed to mobile phones as a means of reading screen text for the blind and visually impaired... thanks ...Show All

  • Windows Forms Regarding Windows Forms

    Is it possible to add UI controls like check box,combo box to each row in a data grid in a windows form Advance thanks raj Hi, take a look at the datagridview: http://winfx.msdn.microsoft.com/library/default.asp url=/library/en-us/dv_fxmclictl/html/cb8f29fa-577e-4e2b-883f-3a01c6189b9c.asp http://www.codeproject.com/dotnet/vs2005news.asp ...Show All

  • SQL Server Windows XP Pro x64 and Jet 4.0

    I am trying to work with my database driven .asp files and once I add a call to my asp files I get the following message:   ADODB.Connection error '800a0e7a' Provider cannot be found. It may not be properly installed. /cedar-springs/admin/includes/inc.dbopen.asp , line 25 It seems that in Windows XP Pro x64 the Microsoft Jet 4.0 provider can not be registered.  I have installed the lastest version of .net frame that i can find and this still does not work.  Any help would be greatly appreciated. the code in the inc.dbopen.asp file is below: Dim conn Set Conn = Server.CreateObject("ADODB.Connection") Conn.ConnectionStr ...Show All

  • Visual Studio Team System [RC Upgrade] Unexpected Error: Deserialization failed: The 'EditionID' element...

    Hi, I got the following error when running "TFSUpgrade.exe imisfnd1srv /verify": Verifying connection to OLAP Server UPGRADE FAILED Unexpected Error: Deserialization failed: The 'EditionID' element in the 'http://schemas.microsoft.com/analysisservices/2003/engine' namespace is unexpected. Any ideas Thanks, Eli. If you see this error, you can re-run TfsUpgrade and it should work the next time through. If that doesn't do it, you can manually drop the TfsWarehouse OLAP database and re-run TfsUpgrade. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. No texture coordinates for Mesh.Sphere, box etc?

    I am trying to use a mesh from Mesh.Sphere, but odly enough I can not make it generate texture coordinates. Sure, I could calculate them myself, but can it really be true that I have to do that My vertices in the mesh is always PositionNormal No you can't But see http://msdn.microsoft.com/coding4fun/zman/default.aspx for samples on how to do it (for managed code) ...Show All

  • SQL Server Which Edition of Sql server can run on XP with utility to create table?

    Hi everybody,     Which Edition of Sql server can run on XP with utility to create table like query analyzer and enterprise manager Also for viewing the records. By the way, free or evaluation copy only for windows XP OS. Please specify details. Thanks. den2005 The free express edition can run on Windows XP.  Like, the MSDE the express edition does not come with any tools.  However, Microsoft has built a new express manager tool (currently in beta) that can be used to do basic management of your sql express. ...Show All

  • .NET Development SerialPort SerialDataReceivedEventHandler

    Hi, I can't figure out how to get the event handler to work when data is received on the com port. I've looked around the forums here and I downloaded a console sample program that I tested on my computer and it works. But when I try and apply the same Idea to my C# windows form program I can't get the event to fire. Am I doing something wrong Some other post on the forum were talking about using different threads for the SerialDataReceivedEvent handler...  Thanks in advance for your help. Kevin Jones     using System; using System.Collections.Generic; using System.ComponentModel; using System ...Show All

  • SQL Server Testing ODBC connection manager

    I am testing out the ODBC connection manager, as part of my beta testing from my company. I created a new conn manager on the palate (dsn pointing to local  sql server). But I am not sure how this one can be used. I can not use any of the Data flow sources which can use this ODBC connection manager. Using the said conn manager in a Datareader source shows up the error "Can not acquire a managed connection from the run-time connection manager". How do I test out to see that this is working fine From another thread, I see that Demi is using Data Reader along with ADO .NET provider for ODBC. So do I think that the one I am tryin ...Show All

©2008 Software Development Network