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

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

kymaita

Member List

Salvatore Di Fazio
Vitalijus
Tobias Boehler
Armin N.
Dhil
Renan Souza
hawash
kadabba
albidochon
Goh Wah
Benwah424703
MA2005
Praveen.Yarlagadda
Victor Chacon
Visual Basic Expert
lemonash
Sarah71
Gnanaprakash
learnerplates
mackenzie 2480
Only Title

kymaita's Q&A profile

  • Visual Studio Tools for Office Drag and Drop Outlook Contacts with specific items (FullName, etc.)

    edit (11PST 1-5-07) : OK! I figured out how to access the type as an outlook object for the DragDrop but my problem now is that it's just seeing the NeameName.msg that is the dragged contact as Text rather than an actual object (Microsoft.Office.Interop.Outlook.ContactItemClass). Anyone have any ideas how I can cast the data rather than just checking to see if it is that type for the DragEnter private void onDragEnter( object sender, DragEventArgs e) { if (e.Data is Outlook. ContactItem ) { e.Effect = DragDropEffects .Copy; } } original: I am trying to drag and drop an outlook contact onto a form so that the code grabs each object within the contact (FullName, BusinessAddress, BusinessAddressCity, BusinessPhon ...Show All

  • SQL Server Package cancelled

    Hi, I'm trying to transfer data from a DB2 database to a MS SQL Server database (approx. 150 000 rows). When I execute the package, the process is always cancelled (In output window: SSIS package "DB2_test_TranAddl.dtsx" finished: Canceled.) I use a view on DB2 to provide the data and I can modify it to return only a few rows.  To achieve this, I use a WHERE clause: WHERE OUTLET_NO Between X And Y. When I try OUTLET_NO Between 1 And 5 (255 rows) the package executes successfully. When I try OUTLET_NO Between 5 And 10 (388 rows) it works. When I try OUTLET_NO Between 1 And 10 (643 rows) it fails!! Any idea   Fleo, ...Show All

  • SQL Server Importing related data

    I need to recreate a SQL 2005 db in a SQL 2000 server. So far I was able to recreate database schema, but I don't know how to import the raw data. I tried copy-pasting table data to the new db using SQL Server Management Studio Express, but there's a problem - the identity columns do not retain the correct values. For example: Old db table ID Username ------------- 15 Peter 45 James When pasting the same data to teh new db, I would get this: ID Username ------------- 1 Peter 2 James You can see the ID field values become different (since the ID attribute is an identity and the table in the new db is empty, the db picks the values 1 and 2 for the two records) and now when pasting data into related tables, I get the error because table ...Show All

  • Visual FoxPro Font Size Randomly Changing

    Has anyone experienced a problem in a FoxPro 9 application, where the font size of some controls on a form change It could happen going from form1 to form2, or form3 to form2.  The size changes from 9 to 8, 12, or 18. There doesn't seem to be a pattern, and it could happen today day and not happen for several days later. May be you have problems with gdi+ lib. http://msdn2.microsoft.com/en-us/library/ms947605.aspx ...Show All

  • Visual Studio Reflecting domain property value on shape colour, outline etc..

    Hello, I need connectors and shape to refect property values. Therefore, I registered connector and shape observers to reflect property changes on relationships and domain elements. I am using OnAssociatedPropertyChanged event handlers. This works fine when I change a property value. The problem is to present the right aspect of shapes and connectors when the model is re-loaded in memory. In that case, the events are fired for the connectors but not for the shape. So when the model is loaded, the connectors are presented correctly but the shapes are not. Any idea Thanks Alain Hello Steven, I already worked around the problem like this. Don't know if this is what the DS ...Show All

  • SQL Server parameters

    Hello, i am new to ssrs and am trying to generate a report with 4 parameters. 2 of which are dates. The other 2 are drop downlists. Now the report works fine when i enter all 4 parameters. But in some cases i want to leave one of the parameters unentered . It doesnt all me to do that. Gives a error saying i need to enter the parameter. How do u get aroud this issue I have seperate dataset for this parameters list and am using a where clause in my main query. Can anyone please help me out with this Thx Ashish The only thing you should have to do is define a valid Default value in the parameter setup in Design view of the report. If you still have the problem after saving and redeploying the report, you may want t ...Show All

  • Visual Studio Team System Error TF50632 Removing User

    Hi! While removing a user from the group of valid tfs users I get the Error: TF50632 : An error occurred removing the group member. There is no group member with the security identifier (SID) The problem is that the user is a regular domain user and should be fine. I can remove other users without problem. Thanks for any help Uli Sync starts every hour. So if the problem was with expired or changed SID it should have been fixed. Let me talk to developers on the team to get more information. Can you check you event log and let me know if there are any other errors in event log. ...Show All

  • Visual C++ newbie help: importing functions from a dll in a C++.net project

    Hi, I am using Microsoft Visual Studio 2005. I am trying to create a C++ application (Win32 project/application) that imports functions from a DLL. The DLL, which I did not create, is a Win32 DLL (that uses MFC in a static library). The DLL .h and .cpp files do not contain any classes. Just functions with __declspec (dllexport). I think that my problem is that I am very new to .NET (I am not sure I should post this question in a different form). Here is what I have done: I tried creating a new solution and adding the DLL project to it and then building the project (to generate the .dll file). Then I added a new project to the solution and tried to: 1-Add the dll to this project as a reference: using Project -> References -&g ...Show All

  • Smart Device Development Which (rda, webservice) is the optimal method to use to send less Kb over the network?

    We need to send one data row to the main server over a network (Internet, GPRS). Which is the optimal method to use to send less Kb over the network RDA WebService Regards Thanks Ilya  I'm assuming that RDA is more optimal than replication... is that correct How can I meassure the "amount of data" (Kb) sended or recieved over a network Any suggestion will be so helpfull thanks in adavence ...Show All

  • Visual Studio 2008 (Pre-release) Invalid Member Mapping specified

    After generating my model using the ADO.NET wizard I get the following error when running my sample. Unhandled Exception: System.Data.Mapping.MappingException: Invalid Member Mapping specified. The type 'System.nvarchar' of member 'LastName' in type 'Author' in schema 'MyApp.Model.Model' is not compatible with 'System.varchar' of member 'LastName' in type 'Author' in schema 'MyApp.Model.Target'. If I update my ssdl to use nvarchar instead of varchar the error goes away. Causes error: <EntityType Name="Author" Key="ID"> <Property Name="ID" Type="uniqueidentifier" Nullable="false" /> <Property Name="LastName" Type="varchar" Nullable="false" ...Show All

  • Visual Studio Express Editions Detect event for Windows logout/shutdown

    Hi, I use VB2005 and i need to develop an application that start by itself when a user log in and launch a last command when the user log out or shutdown windows. To start the application it's ok and fine but i'm not able to find in any documentation how in a console application you can create a addhandler command that will be triggered when the user leave windows or shut it down ... Any help would be greatly appreciated! Thanks, N. Hi, i agree with you're statement. I'll try with a form but then i'll need to find how to hide the form since i don't want the user to see anything... Thanks for your help! ...Show All

  • Visual Studio Team System Sharepoint Services 3.0

    What's going to happen to my TFS machine if I just upgraded the current WSS installation to v3.0 Thanks, Sammy I have had tried to install TFS together with WSS 3.0, but it failed. I was told from Redmond that TFS cann't not work on WSS 3.0 now. But some related Orcas bugs about WSS are in fixing recently. ...Show All

  • Visual C# I am having a similar problem....appears to happen even tho user has full access....

    folks, I am having a similar problem..have tried both unc name \\systemname\dir and \\ipaddress\dir and both have given me the same error when trying to read from that directory... User that is doing the calling is Administrator of that machine.... am wondering if there is a policy change that needs to happen in order for it to work properly.... -- Geno Are you using " \\ipaddress\dir " It'll not work, Change it to " \\\\ipaddress\\dir " or @" \\ipaddress\dir " Best Regards, Rizwan ...Show All

  • Visual Studio Express Editions Change properties from other forms

    Topic says it all ... lets say i got x2 form ..and in form1 i got ritchtextbox how i change its txt or any other properties from from2 or other forms ... e.x in vb i used to do Form1.TextBox.text = ("w/e you want") I can't really post the entire code for this, it'll take too much space, but I will give you instructions. create a new project drag a richtextbox control on the first form (lets call this Form1) drag a button on the first form  double click the button to create a button click event handler. You should be taken to code view scroll at the top of the class file and just after: public partial class Form1 : Form   do the fo ...Show All

  • Visual Studio 2008 (Pre-release) Change scrollbar style within a ListView/GridView

    I'm using a ListView that contains a GridView, with a number of columns defined. This serves my current needs, except for the vertical and horizontal scrollbars that are shown within the ListView. I can't find any way to style them. For starters, I need to remove the gray scale look and replace it with colors that work with the overall theme of the application. Is there any documentation on how to style, or otherwise access properties of the scrollbar within a ListView Thanks. Bruce Bukovics Author of .NET 2.0 Interoperability Recipes http://www.apress.com/book/bookDisplay.html bID=10116 Bruce Bukovics wrote: While that reference shows me how to style a scrollbar, it doesn't address my original qu ...Show All

©2008 Software Development Network