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

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

LeeC22

Member List

Al Christoph
kawing0510
neoret
Rookboom
ManniAT
hayward_ke
raduvv
mscherotter
redviking2006
Synced
pidnas
Andrew Grammenos
VSFW3
JavaBoy
amit9979
Ross B.
DanHaligas
R.Tutus
ElectricBliss
DORINC
Only Title

LeeC22's Q&A profile

  • SQL Server Toolbar available with Web Service?

    Hello - I am trying to find out whether the Toolbar is available when using the Reporting Services Web Service interface. Right now, I am using the Web Service to render a report, but the Toolbar does not appear. I have set the <Toolbar> element in the DeviceInfo string to true. thanks - will Well, our .net app will require a long, long time to upgrade to 2.0. It is fairly substantial. Where in the book does it describe how to write my own report viewer thanks.... ...Show All

  • Visual Basic counting number of words (or regex) that appear in a string

    Is there a way of counting the number of times the word the appears in the sentence out of the frying pan into the fire I have an input string, which I want to test, I've tried:   regularexpresions.regex.ismatch(input, "the") but this only returns true or false   From my reading of the documentation I thought that the following would work regularexpresions.regex.match(input, "the").Groups.Count but this doesn't seem to give me anything that resembles what I want   I tried a loop dim counter as integer = 0 while regularexpresions.regex.ismatch(input, "the")    regularexpresions.regex.replace(input, "the", "") counter = counter+1 end while but the replaces replaces all mat ...Show All

  • Visual Studio Team System Bug - UI crash & Build fails without errors or warnings

    This is related to http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=848718&SiteID=1 but now I can reproduce the other error (project does not build) and it goes off topic, for that reason I'm starting a new thread. In the previous thread I (several other threads indicate this problem too) reached a state where it was no longer possible to build or deploy the project. In this state there were / are no errors or warnings when an attempt was made to build. I have found that this occurs when a file is deleted from the project and for some reason the project file is not updated to reflect the deletion. In this case it was a crash of the IDE caused by being to quick changing the focus after a delete. On restart the IDE did indicat ...Show All

  • SQL Server Moving Data From Excel to SQL Server 2005 Express

    I am trying to load data from an Excel spreadsheet file into SQL Server 2005 Express. I understand that DTS is the best tool for doing this but from my research it appears that DTS is not available with the Express edition and the import wizard that does come with Express is not well suited for this type of conversion. Does anyone have any suggestions for how to achieve this objective Thanks for any help you can provide. Buck. Thanks for the very helpful information. I will be studying it and making some decisions on how to proceed. It is nice to have options!! ...Show All

  • Smart Device Development Oracle connection issue

    hi I'm not gettin any driver like ODBC,OLDB for SmartDevice application developement in vb.NET cud any people help me to connect SamrtDevice application with oracle in wireless LAN bbyeeee Sorry, I can not give you “codes to use web services as proxy”, you'd need to write your own. This approach was discussed many times, please search if you need details. As to 3rd party provider, go ahead and search the web for "Compact Framework Oracle", you'll find it in no time. ...Show All

  • Visual Studio Express Editions Storing Stuff

    Dear All, This may seem a little simple to some of you but its been slowly winding me up for a while now, so any pointers or advice would be greatly received. What I'm looking to do is store information inside my application, with out using a database (I mean Access, SQL etc.) I have used *.bin files in the past but I'm not sure that they would meet the needs of what I need to do. The project is for a small charity and so far has about 850 records that they wish to store, they mainly use open source or freeware and need to be able to move the data between desks and back it up on a daily basis. Also some times they are not connected into the network so a local copy of the said information needs to be copied to the local machine. ...Show All

  • Software Development for Windows Vista Timers in a Workflow hosted in ASP.Net

    Hi I'm building a web based workflow application and need to monitor the progress of the requests entered into the application and if a request hasn't been actioned after a period of time; send a notification email. I've read several posts and bloggs that state the Persistence service is responsible for monitoring Workflows that are in an idle state and then responding to delays within the Workflow that expire. I realise that because of the nature of ASP.Net the runtime is unloaded after each call, so I'm confused as to how, if the service isn't instantiated, it can perform this task. Thanks for any help. DB After a website recycle timers will not be processed until the next workflow webservic ...Show All

  • SQL Server Remote connection not working using MSSMSE

    Im getting quite desperate and frustrated!! I have installed SQL 2005 Express successfully and can connect to it fine using Management Studio locally. If I try and connect remotely using Management Studio Im getting the old Error 10061 : The machine actively refused the connection! I have set it up exactly as per all documentation and help from the forums. Remote connections is on TCP and Named Pipes, I even have the firewall disabled. Im running it on Windows Server 2003 Standard. Any help would be really apriciated as i have tried everything!!! It's good that you can telnet to 1833. 1434 is UDP port, you cannot telnet to. Can you also try c:\windows\system32\cliconfg.exe to check the alias t ...Show All

  • Visual C# Can't catch Control-C

    Hey, I'm writing an application which relies heavily on the thread pool (on the order of more than a quarter million queued user work items). I'm also trying to program graceful program termination when control-C is pressed. I've got a Console.CancelKeyPress event set up and Console.TreatControlCAsInput is false, and before my user work items are queued, everything works fine and the handler gets called. However, once I start my massive parallel processing, the handler no longer gets called - pressing control-C does nothing for about thirty seconds, then the program is abruptly terminated without running the handler. I read in the documentation that CancelKeyPress events are run on thread pool threads, and I think it has to do with ...Show All

  • SQL Server SSIS Access import to SQL Server 2005

    Hi, I have created a SSIS dtsx package file on my file system that I want to manipulate in .NET The package gets an access DB file and the a Preparation SQL Task creates the necessary sql statements for the data flow task. The data flow maps the tables from the source to the destination and then if you execute the package, it copies the Access DB into SQL Server. My problem is, I want to manipulate this package in code, so that I can change the path to the source Access DB and then re execute the Preparation SQL Task so it recreates the new SQL statements, and then I want to update the data flow so that I it uses the new SQL and creates the necessary tables. How is this possible in .NET I have looked everywhere and have found some topics ...Show All

  • Windows Forms what event gets fired when a child windows closed inside MDI?

    Hi, what event gets fired when a child window closed inside MDI Is there any way to catch that event Thanks, Igor I don't know VC++ or even c# (even though I can read c#, I can't seem to write it!) Anyway here is some VB code which may help you: Public Class Form1 Private WithEvents MyMDIChildForms As New Collection Private FormID As Integer = 0 Private Sub NewToolStripMenuItem_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles NewToolStripMenuItem.Click FormID += 1 Dim NewMDIChild As New SomeChildForm(Me, FormID) AddHandler NewMDIChild.FormClosed, AddressOf ChildClosed MyMDIChildForms.Add(NewMDIChild, CStr(FormID)) 'Display ...Show All

  • SQL Server How does SQL Server 2005 work with old applications

    Hello All, How does SQL Server 2005 work with all ready existing applications that ran on SQL Server 2000. Does SQL Native Client work backwards compatible to the old applications, And if it is, is there anything special I need to do. If it is not backwards compatible, do I need to use the old MDAC How would I use it in SQL 2005. Thanks all..... Nina You can use the SQL Server 2000 Best Practices Analyzer to scan an existing SQL Server 2000 database to look for problems that you may encounter when upgrading to SQL Server 2005. When you first upgrade a SQL 2000 database to 2005 (by restoring from a backup or detaching and the attaching), it will be in 8.0 compatibility ...Show All

  • Microsoft ISV Community Center Forums Dynamic filtering of picklist values CRM 3.0

    Hi, I would like to create dynamic filtering of picklist values in CRM 3.0. But I have a problem for to delete dynamically my picklist option.it is really random. // It's here my problem var count = oSepcialisation.Options.length; for ( var i=0; i < count; i++) { try { oSepcialisation.DeleteOption(parseInt(i)); // sometime this function deletes option, sometime doesn't. } catch (ex){ alert(ex);} } ------------------------------------------------------------------------------------------------------------------------- For to reproduce the same condition, you must create 3 attributs of type picklist - new_dev_competency (parent picklist) - new_dev_specialisation (child picklist) - new_dev_orgi ...Show All

  • .NET Development Extending WSDL to use XML-RPC

    Hi, I am a computer engineering student currently working an internship. The company I work for runs database servers which use XML-RPC to communicate. We have recently started beta testing an automated testing software that accepts WSDL document input to learn how to interface with the SUT. The problem is that WSDL has built-in support for using SOAP-RPC, which is a little too modern for our servers. Is it possible to somehow extend WSDL such that the port bindings are done with XML-RPC, which would therefore make the automated testing software's communication understandable by our database servers Thanks for any pointers/links/help. I swear I've read the entire internet and not been able to find out how to do this! ...Show All

  • .NET Development Object exposed with RemotingServices.Marshal becoming unavailable over time

    I originally posted this as a reply on a related thread. However, the main question in that thread had already been answered so I decided to seporate it. Somone in the other quoted the folowing from http://msdn2.microsoft.com/en-us/library/y0h540a7.aspx : Singletons In COM, "singleton" meant that as long as clients had references to your object, the object would not be deleted from memory. In .NET remoting, however, a Singleton object is subject to the lifetime lease that was specified for it, so it can be recycled even if clients currently hold references to it. You can create the former type of Singleton object by overriding the InitializeLifetimeService method of MarshalByRefObject to return a null refere ...Show All

©2008 Software Development Network