Software Development Network Logo
  • Windows Forms
  • VS Express Editions
  • Visual C++
  • Visual Studio
  • Smart Device
  • Architecture
  • VS Team System
  • Game Technologies
  • Microsoft ISV
  • Visual C#
  • Visual J#
  • Visual Basic
  • Visual FoxPro
  • Windows Live
  • .NET Development

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

RainOnRoses

Member List

Cao Yang
Ed__
Vinod Potty
Philip at Alpha Index
Aleksi
Bob Heitzman
Jacquesw
Frank Babz
Omicron
-K-a-Z-a-F-
fantasimus
albedo20
JoeBuddha
Awaneesh
NimoTh
Dan.B
mikeBearb
ACS001
kish75
Hussain_Alyousif
Only Title

RainOnRoses's Q&A profile

  • SQL Server Problems with SQL 2005 Export Wizard

    I am trying to transfer data from SQL Express to SQL Server 2005. The data is from Paypal Commerce Starter Kit from ASP.NET site. I have tried several options (Optimize for many tables, Run in Transaction). However the data is not exported. This is the error I am getting: TITLE: Operation stopped... ------------------------------ The package failed to load due to error 0xC0011008 "Error loading from XML. No further detailed error information can be specified for this problem because no Events object was passed where detailed error information can be stored.". This occurs when CPackage::LoadFromXML fails. --------------- ...Show All

  • SQL Server SQL Server 2005 performance

    I have recently upgraded from SQL Server 2000 to SQL Server 2005, and now all my queries run infinitely more slowly. Here is the scenario - I run an extract of a MS SQL Server database at a client site, then recreate the database on our in-house server - but without indexes etc. Then I run various queries in order to created data files that will be used for importing into a global system. When I was running Server 2000, most of the queries ran in less than 10 seconds each, but under Server 2005 they take 3 minutes or more! Does anybody know of any parameters that I need to adjust to fix this problem 1. C ...Show All

  • Smart Device Development MAPI

    Hello guys, i am using Mail API on Windows Mobile 2003, i'd like to know which function is used to send a mail (when i use MAPISendMail it throws the NotSupportedException i think the parameters are wrong) can anyone help please Thanks in advance ps: isn't there any Logoff function (when i call MAPILogoff i get an error saying there's no entrypoint in cemapidll.dll for Logoff) Does anyone have a C# ( not C++ ) sample that uses cemapi.dll on Windows Mobile 2003 Thanks in advance ...Show All

  • Windows Forms OFFICIAL SURVEY about your usage of the .NET Framework documentation!

    Hello -   I'm conducting an official survey about your usage of the .NET Framework documentation. In particular, what programming languages do you filter on. Your answers will be used to help improve the documentation viewing experience. When reading the survey, remember that the concept of filtering on a programming language is talking about viewing the documentation wit ...Show All

  • Windows Forms TCPListener Problem

    Hi, I have made a TCP Listener /TCPClient Program It is working fine as it should be.. But my problem is that I have only one computer available to test it and When i try to open another instance of my application in same computer it shows that only one use of either InternetAddress/port number.... Now how can I test my application in that situtat ...Show All

  • Windows Forms Only Allow 2 decimal places in a textbox.

    I have a textbox which contains interest rate. (e.g. 89.56, 100.00 etc) How do I disallow user type in more than 2 decimal places. (user cannot type in 89.5678 or 80.876876967896) Thanks! The hard way ( but with more control ): Override a text box and handle the key pressed event, using some complex logic to work out where the cursor is and if the key press will result in more than two digits after a decimal place, or if it's generally invalid ( second decimal, non number ). If so, set e.Handled to true. The easy way: Use a maskedtextbox, which will do this for you. ...Show All

  • SQL Server how to access a cube and its dimensions in a cube

    Imports Microsoft.AnalysisServices.AdomdClient Imports System.Data Imports Microsoft.AnalysisServices.AdomdClient.Dimension Imports Microsoft.AnalysisServices.AdomdClient.CubeDef Imports System.Object Imports System.Diagnostics.Debug Imports System.Data.OleDb Partial Class _Default Inherits System.Web.UI.Page Public Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim con As AdomdConnection Dim str As String str = "Data Source=evenapp\evenapp;Catalog=Adventure Works DW; Integrated Security=SSPI" con = Ne ...Show All

  • Visual C++ Regarding the generated warning C4996: 'std::_Traits_helper::copy_s' was declared deprecated

    I have a query regarding the warning C4996.I'm attaching a set of code, To which i'm trying to compile in visual studio 2005 Beta 2. But It sucessfully compiled but generating  warning.I'm not able to find the solution to resolve the warning. Generated warning is also below. Could you tell whats i'm doing wrong. ***************************************************** C2440typecast.cpp ***************************************************** typedef TCHAR TChar; struct case_insensitive_char_traits : public std::char_traits<TChar> {    static bool __CLRCALL_OR_CDECL eq( const _Elem&am ...Show All

  • Windows Forms Control's Leave event handler masks move to next control in tab order

    If a dialog (VB.NET: MessageBox or a form using ShowDialog) is shown from within a control's Leave event handler, then the focus does not move to the next control in the tab order when the dialog is closed. This is a change from the behavior in VS 2003 and results in the Leave event being fired multiple times (and consequently the dialog being shown multiple times).   Steps to Reproduce: 1. Create a form (Form1) with two text box controls Text1 and Text2. 2. Create a second form (Form2). 3. Set the tab order on Form1 so that Text2 follows Text1 in the tab order. 4. In the Leave event handler for Text1, instantiate a variable for Form2 ...Show All

  • Visual Basic stoping winform instance - timer with synlock

    How can I kill one specific instance of a timer I have this application that works similar to msn messenger a message is sent and a window display it in a viewlist and raise a warning window there is 1 form with the listview and another with the warning window ' AlertWindow(messages) ' the one with the listview instantiate the warning form Dim aFrmAlertPopUp As New AlertWindow(messages, altSysOrigin, alertId, BgColor, userAlias, altTeamMember, altAlertType) aFrmAlertPopUp.display(messages) the display method starts a timer Friend Sub display( ByVal AlertMessage As String ) SyncLock GetType ( ...Show All

  • .NET Development RemotingConfiguration.Configure ensureSecurity parameter

    The old .NET 1.1 Configure method is marked as obsolete, and recommends using a new override with a parameter ensureSecurity. The MSDN documentation on the ensureSecurity parameter is a bit laconic: " true to enable security; otherwise, false ." I want to maintain backwards compatibility, i.e. don't want to require security. But I may want to use the new security features at some time in the future. What should I set this parameter to I'm a bit confused that the decision whether to use the new security features is hardwired into the code via this parameter rather than being defined in the configuration file. ...Show All

  • Software Development for Windows Vista How to Create property of type Custom data collection

    Please help me in resolving this issue. // Code sample. public static DependencyProperty TestProperty = System.Workflow.ComponentModel. DependencyProperty .Register( "Test" , typeof ( StreamActivity []), typeof ( MailActivity )); [ Description ( "This is the description which appears in the Property Browser" )] [ Category ( "This is the category which will be displayed in the Property Browser" )] [ Browsable ( true )] [ DesignerSerializationVisibility ( DesignerSerializationVisibility .Visible)] public StreamActivity [] Test { get { return ( StreamActivity [])( bas ...Show All

  • Smart Device Development GPS-Enabled devices that run .NET

    I want to develop my first application for mobile devices, but I'm a little confused. I want to write an app that reads the GPS location from a phone. First, which GPS-enabled phones are in the market that I can write applications for using .NET compact framework What's the difference between SmartPhone, Windows Mobile, etc Is there a standard API for getting GPS location from a phone Thanks, Laura Hi, I have located and deployed the sample application and it has worked successfully on an XDA Orbit, however when I run the same code on an Intermec CN3 it seems to fail at the point of the second call t ...Show All

  • SQL Server Importing unicode data from Oracle Database

    Hi everybody, i try to import data from an oracle database configured in unicode. When i run the package i have an error message Error at Data Flow Task [Source - ACCOUNT]: Column "ACCOUNT_CODE" cannot convert between unicode and non-unicode string data types. how can i resolve this regards. Thanks for your help. I have change data type in advanced editor but now i have this error the output column "ACCOUNT_CODE" on the error output  has properties that do not match  the properties of its  corresponding data source column. The data appears as string and i can not change the error output data t ...Show All

  • .NET Development using c# classes as com object

    im using c# classes as com object and use that classes from vb6. but what will happen when i will remove my vb6 project to another computer i guess it wont work...so what i need to copy or do in order that my project will run in any computer thanks in advanced.  Probably you will need to use RegAsm.exe to register the C# dll that contains your objects on other computers. ...Show All

©2008 Software Development Network