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

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

MaggieChan

Member List

Andr&#233&#59; Dias
Rik Dodsworth
00Negative
Rafael (Live Butterfly)
NathanInNashville
s o
rauhanlinnake
Edmundas
erikkl2000
carlop
Tone Southerland
MikeHiland
chaza
Eric Eichler
davidw
Mark Dahl
ab2304
Karl Hulme
REspawn
AtomZ .be
Only Title

MaggieChan's Q&A profile

  • Software Development for Windows Vista Package Load Failure after installing VS Extensions for Workflow

    I saw this problem during the WF betas, but now I have a new machine with a clean install of VS2005. I installed the ".NET Framework 3", "Windows SDK for Vista", and then the "Visual Studio 2005 Extensions for Windows Workflow Foundation" (in that order). After installing these components, I receive the following error when I open Visual Studio: Microsoft Visual Studio Package Load Failure Package 'Microsoft.Workflow.VSDesigner.DesignerPackage, Microsoft.Wirkflow.VSDesigner, Version=3.0.0.0 Culture=neutral, PublicKeyToken=31bf3856ad364e35' has failed to load property. ... Would you like to disable loading this package in the future You may use 'devenv /resetskippkgs' to re-enable package loading. ...Show All

  • SQL Server Excel Import to sqlserver database

    Hi all, this is thiru from India, hope i shall get answers here for my questions. 1. I need to import an Excel spread sheet to a remote sql server database through ASP.Net web application. I brief the process im following now please go through it. Import Process: a. select a fiile(.xls) and upload it to server. b. using M/S Odbc Excel driver, and the uploaded excel file as datasource, c. query the excel sheet to populate a dataset. d. iterate through the rows of the dataset(I could not bulk copy the excel data, because have to check the database, if record exists then update, else insert) to import to the SQL Database Performance issues: 1. I have to import spreadsheets having upto 60,000 records or even more at a ti ...Show All

  • Visual Studio Express Editions how do we get number of days/hours comparing two diff date/time?

    how do we get number of days/hours comparing two diff date/time ... for example 12/05/06 to 02/01/07(number of days)......10:30 am to 20:05pm ok ok...it seem's like my explination is too complicated... here's my code Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click dim text00 as DateTime dim text01 as DateTime dim result as String text00 = MaskedTextbox1.text (masked __/__/____ __:__) text01 = MaskedTextbox2.text (masked __/__/____ __:__) result = Datediff(interval.minutes, text00, text01)/60 label1.text = result End Sub it seems ok here but my boss want is to seperate the date and time which means 2 maskedtextbox must join and to compar ...Show All

  • Windows Search Technologies Problems with Dash

    Thanks for your time! I'm using WDS 3.0 I've encountered a problem envolving the dash character(-). The company I work for uses the dash character in their file names and folder names. I've worked around the issue of the dash in the file name by wrapping the file name in quotes in my query string. However the dash in the folder name appears a bit more challenging. The index doesn't appear to include the files contained in folders with dashes in their name. Can you help ...Show All

  • Visual C++ two dimensional array sorting in C/C++

    Hello everyone, I have a two dimensional array. Currently, I am using the following method to sort, 1. Sort by the first dimension, 2. If the first dimension is equal, then sort by the second dimension. For example, here is the result of the array I could get, <result 1> [1, 2] [1, 3] [1, 6] [2, 4] [2, 5] [2, 7] I want to change it to, 1. Sort by the second dimension, 2. If the second dimension is equal, then sort by the first dimension. Here is the result I want to get, <result 2> [1, 2] [1, 3] [2, 4] [2, 5] [1, 6] [2, 7] I am wondering what is the most efficient way to get the new sorting result (result 2) by the sorting result (result 1) in old method thanks in advance, George ...Show All

  • Windows Forms How can I make WebBrowser to navigate 1st site and then 2nd site?

    I tried next C# code. webBrowser1.Navigate(" www.yahoo.com "); webBrowser1.Navigate(" www.google.com "); I want to make webBrowser1 (WebBrowser control) to load Yahoo web page fully (display full Yahoo web page), and then load Google web page. But, with the code above, WebBrowser control displays Google web page only. So, I tried following C# code. webBrowser1.Navigate(" www.yahoo.com "); while (webBrowser1.IsBusy) { } webBrowser1.Navigate(" www.google.com "); But, I failed. Still, WebBrowser control displays Google web page only. I tried bellowing code. But, I failed. webBrowser1.Navigate(" www.yahoo.com "); whil ...Show All

  • Visual Studio Express Editions concerning media player

    renee where do I post pause button code Private Sub btpause_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btpause.Click tmr.Stop() If WMP.playState = WMPPlayState.wmppsPlaying Then WMP.Ctlcontrols.pause() btpause.Text = "paused" btpause.ForeColor = Color.Aqua Else tmr.Start() If WMP.playState = WMPPlayState.wmppsPaused Then WMP.Ctlcontrols.play() btpause.Text = "pause" btpause.ForeColor = Color.Beige End If End If End Sub how is this... these two lines must be copied into the btplay and btstop events and any other events that might be triggered whilst the btpause button is in paused mode b ...Show All

  • Visual Studio Tools for Office Loadpicture in Mail Merge

    I have an excel spreadsheet which I am merging into a Word Mail Merge. I am creating documents which show text from the spreadsheet and a digital photo. I am interested in using LoadPicture or a similar function to load the photo on each page. The spreadsheet has the full path to the image file. Can anyone help me identify if this is possible in a mail merge Does anyone have code to accomplish this Thanks clark Hi clark I take it this isn't part of a VSTO solution, more a Word object model question In that case, the better place to ask this would be an office or word newsgroup, of which there are several possibilities: Word · General programming issues : word.vba.general ...Show All

  • .NET Development sending and receiving xml files

    I'm trying to send an xml file to a webservice URI and receive back an xml file using VB. I've looked at three options all of which I seem to be missing something on. Please stear me in the right direction Option one: is to use MSXML 6.0, I have downloaded this, installed it and VB.net is not reconizing it. Dim o As New Msxml2 Dim s As String s = "< xml version=""1.0"">" & vbCrLf & _ "<env:Envelope xmlns:env=""http://schemas.xmlsoap.org/soap/envelope/"">" & vbCrLf & _ "<env:Header/>" & vbCrLf & _ "<env:Body>" & vbCrLf & _ "<QueryRequest xmlns="&quo ...Show All

  • SQL Server 64-bit ODBC issues with DTEXEC

    We've hit a weird problem that we can't resolve. We have a package using ODBC to extract from an AS400. When running the package through DTEXECUI, the package executes successfully. However, it chokes when executing through DTEXEC or as a SQL Agent job on our 64-bit machine. Seems like DTEXECUI is using the 32-bit ODBC driver while DTEXEC and SQL Agent is trying to access an non-existent 64 bit ODBC driver. We're using a DSN-less connection string (Driver={Client Access ODBC Driver (32-bit)};system=AS400;....) so that's not the issue. Anyone else seen this weird error Any possible workarounds If the 64-bit ODBC driver is not aviailable, you can run the package in 32-bit mode. To do this, edit the SSIS st ...Show All

  • Visual Studio Resgen: References root node unavailable

    Hi, I have a VS2005 build failing with an error thrown saying "References root node unavailable". I have attached a diagnostics log below but I can't see any error that points to anything in particular. Has anyone seen an error like this before or have any suggestions to diagnse what might be causing it Thanks, Dave Target "CoreResGen" in file "C:\WINDOWS\Microsoft.NET\Framework\v2.0.50727\Microsoft.Common.targets": Task "GenerateResource" "C:\Program Files\Microsoft Visual Studio 8\SDK\v2.0\bin\Resgen.exe" /useSourcePath /r:CHChart.dll /r:C:\_cvs\ViewPoint\_PPC_DataEngineDotNet\bin\Release\DataEngineDotNet.dll /r:C:\_cvs\ViewPoint\_PPC_DataEngineHelper\bin\Relea ...Show All

  • Community Chat Phoneme of wave file

    Can any one tell me how can i find the phonemes of wave file it's in Java, but i would check out the code here : http://cmusphinx.sourceforge.net/sphinx4/ Thanks, casey ...Show All

  • Visual Studio Express Editions Smtp Exception?

    I was trying out an email code when I found this error: A first chance exception of type 'System.Net.Mail.SmtpException' occurred in System.dll Here is the code I was using: Imports System.Net.Mail Imports System.Reflection Imports System.Net.NetworkCredential Imports System.Text Public Class Form1 Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim Body As String = "Message goes here" SendMessage( "to@yahoo.com" , "from@yahoo.com" , Body, "Subject goes here" ) End Sub Public Sub SendMessage( ByVal [To] As String , ByVal Fromm As String , ByVal Body As ...Show All

  • Visual Studio Team System CTP7: Failure to Create New Project

    Whenever I try to create a new database project I get the following error: An error has occurred while establishing a connection to the server. When connecting to SQL Server 2005, this failure may be caused by the fact that under the default settings SQL Server does not allow remote connections. (provider: SQL Network Interfaces, error: 26 - Error Locating Server/Instance Specified) I am running a local instance of SQL Server 2005 Developer Edition. I have reinstalled both SQL Server and VSTE for DBPros and the error still occurs. Does anyone have any ideas on how to resolve this issue Jason Alle, Options -> Database Tools -> Design-time Validation Database was set to a previous SQLExpres ...Show All

  • SQL Server Different results with sproc as opposed to simple SELECT (parameter values)

    Could someone please tell me why the following SELECT statement... SELECT ID, SpecimenNr, ScientificName, Locality, Taxon FROM petrander.QueryView WHERE (InstitutionCode = 1) AND (Collectioncode = 1) AND (ScientificName LIKE N'%le%') AND (Locality LIKE N'%Fakse%') AND (22 IN (ParentID1, ParentID2, ParentID3, ParentID4, ParentID5, ParentID6, ParentID7, ParentID8)) ...gives me 9 rows back, but embedding the exact same statement in the following sproc... set ANSI_NULLS ON set QUOTED_IDENTIFIER ON GO ALTER PROCEDURE [petrander].[DynamicQuery] @taxparent int = NULL, @museum int = NULL, @collection int = NULL, @binomen Nvarchar(254) = NULL, @locality Nvarchar(254) = NULL AS SELE ...Show All

©2008 Software Development Network