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

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

ryanlcs

Member List

Hilley
Gregg2006
Mark B .
Georgedinu
Roach
SteveV1
vijil
zdrae
mike_d...
MilesP
mobigital
Cockgle
Srilowha
qzrlsd
JawKnee
project123
El Bruno
Hoopla
RaimondB
StianMol
Only Title

ryanlcs's Q&A profile

  • SQL Server Foreach Loop Issue

    Here is what I am attempting to get accomplished. I have an SSIS package that contains a Foreach loop container. This container executes a number of SQL tasks in order: SQL Task 1, SQL Task 2, SQL Task 3. if the SQL task 1 succeeds it should flow on to SQL Task 2 and 3. This works fine when the SQL tasks do not fail... In the event of any SQL Task failing control should flow to a send mail task to alert about the failure. Next the Foreach loop container should go to the next enumeration in the Foreach loop container and start the next new SQL task 1. So far I have been able to get the control to flow to the send mail task when a SQL Task fails. What does not work is when one SQL Task fails the entire Foreach loop fails and does no ...Show All

  • .NET Development Adding Web Reference to ASPNET project

    Hi all, I'm hoping this is a simple problem that someone has seen before and can let me know how to resolve. I have created a web service which will launch an SSIS package. This has been deployed to the test server where both the SQL database and Integration services engine are installed. The web service works correctly when you use the default web service test page. What i want to be able to do is call this from an ASPNET application which contains a page using windows aurthentication which when a button is clicked launches the web service method. When i attempt to add a web reference it keeps prompting for a user name and password before it will let me add it. Will this continue to do this each time i need to call the reference, and if s ...Show All

  • SQL Server Where are conversation timers stored?

    I've looked in transmission_queue and the actual queues, but can't find them anywhere I figured that out when I realised that the timer is per dialog. What I realise is that there is no error mechanism for timers. If a timer fails I would expect an error message to be put on the transmission queue. The only way of finding out the failure is by using profiler. Unless I'm missing something ...Show All

  • Visual Studio Report Printing in local mode with Web ReportViewer Control

    Hi I am using web report viewer control on web page and displaying report in local mode.I want to allow users to print the report . My Report Viewer's 'ShowPrintButton' property is set to 'True' but still I am not able to view that button when I run the application . any idea Thanks Hi    Thanks for reply.   Now I m exporting the report to jpeg and printing it.But I need to show preview of it to the User .User should able to do page setup .  Currrntly when i click my print button it directly prints the report without preview which is not acceptable by User.  How should i resolve it will anybody tell me how should I implement my own client print dialog. ...Show All

  • Visual Studio Print Layout mode showing incorrect # of pages at first

    Sometimes when switching to Print Layout mode, it will say page 1 of 1, switch back to Interactive Mode and back to Print Layout mode again, and then it will display the correct # of pages. Anyone have any idea how to correct this FYI: I am using the report viewer in local mode. Most reports work just fine. This is a known bug that has been fixed in Visual Studio 2005 SP1. See this thread for more information: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=1032267&SiteID=1 ...Show All

  • Visual C# The given assembly name or codebase was invalid. (Exception from HRESULT: 0x80131047)

    I'm trying to use a compiled custom server control. I followed instructions found on MSDN: 1. add a reference to the dll into bin folder 2. put the @register directive in a web form 3. put the <uc:webgrid ... > directive into the web form to call the control Here is the code: <% @ Page Language ="C#" AutoEventWireup ="true" CodeFile ="prova.aspx.cs" Inherits ="prova" %> <% @ Register TagPrefix ="uc" Namespace ="Inva.WebControls2" Assembly ="bin/InvaWebControls2" %> <! DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd ...Show All

  • Windows Live Developer Forums MSR MapCruncher v3.0 released

    We've just released v3.0 of MSR MapCruncher for Virtual Earth, which allows you to quickly & easily overlay your own custom tile-sets for Virtual Earth from PDF, JPEG, TIFF and other image files. You can find it here: http://research.microsoft.com/mapcruncher. For a list of changes, see: http://research.microsoft.com/mapcruncher/changes.html Cheers, the MSR MapCruncher Team Hi, Iam facing a problem while using the Mapcruncher. Following is the code snippet ---- ////////////////////////////////////////////////////////// var lat1 = 47.694512 ; var long1 = -122.476273; var lat2 = 47.533429; var long2 = -122.200241; function GetTiles() { var bounds = [new VELatLongRectangle(new VELatLong(lat1 ...Show All

  • SQL Server Add parameter to "navigation" url

    Add parameter to "navigation" url - Hello, I'm trying to add a parameter to my JUMP TO URL but it doesn't work. basiclly i'm useing javascript there: javascript:window.open('http:www.a.com num=XXX'); i want to change the XXX with a value from the dataset. I tried - javascript:window.open('http:www.a.com num= + Fields!ME.Value '); or - javascript:window.open('http:www.a.com num= & Fields!ME.Value '); it didn't worked :( any help Thank, I manage to do it with a + . The problem was that i wrote it as a line with out inverted commas (") and with out an equel sign (=) before. silly me :) Thanks for your replay. Roy. ...Show All

  • Software Development for Windows Vista Creating a timer event

    I am trying a create a timer event in my sharepoint sequential workflow. I am using EventScopeActivity and have one Sequencial Activity and one delay activity. On the delay activity, if the sequential activity is not complete, i need to execute some code once a day. I do not seem to get the Delay activity to work. Any help will be appreciated. Hello, it seems to me that the EventScopeActivity is the way to follow. Have you tested your workflow without sharepoint to help you, I've created the following step by step tutorial and that works with the last WF RC build (haven't tested with sharepoint, however). Let me know if you want my code. Hope this helps, Serge 1.Create a ...Show All

  • Visual C++ CList and template

    Hi guys, I made a template that will works on a CList type, but it doesn't work. template <class T> class CIntFile { // ... void Write(T list); }; template <class T> void CIntFile<T>::Write(T list) { //// list.GetAt(0); list.Next(); //// } ///////////////////////////// in another file: CList<CIntMyClass> listMyClass; /// fill it listMyClass.Add(NewData); /// CIntFile<CIntMyClass> intFile; intFile.Write(listMyClass); -------------- Why Tnx Not problem of compilation of linking. Just one problem, I don't know how I can make a template class that can accept a CList of MyClasses and use these by the methods of my template class. ...Show All

  • Visual Studio how to find snippets?

    hi everyone. I search snippets in VS document explorer, and choice the "Intellisence snippets", as the MSDN said, HOWEVER, i couldn't found any snippets to download, there were all documents in msdn. then, how can i find snippets Hi Roy_Lee - I suggest you start with this link: http://msdn.microsoft.com/msdnmag/issues/06/04/AdvancedBasics/default.aspx . If this doesn't help, please reopen this thread. thanks, Ken Watson (MSFT) ...Show All

  • Visual C++ VS.NET 2003 SP1 is available

    It is here! VS.NET 2003 SP1 Englisch: http://www.microsoft.com/downloads/details.aspx FamilyID=69d2219f-ce82-46a5-8aec-072bd4bb955e&DisplayLang=en KB (see also at the download link)   http://support.microsoft.com/default.aspx scid=kb;en-us;918007 (The KB articel link seems to be broken currently)     Got it. It required 1.4 GB of freespace to run the installer (!) The final install was only 500 MB though.  It also didn't fix the known bug http://connect.microsoft.com/VisualStudio/feedback/ViewFeedback.aspx FeedbackID=100308 :( ...Show All

  • Visual C# [off topic] anyone can give me some idea how to develop IntelliSense function in custom text editor

    HI. my team is developing a application supporting script object model that end user can custom the application, we'll provoide a custom code editor with colorization and IntelliSense function , is there anybody can give some documentation or idea to help me get into this domain.. thanks a lot check this hope this helps you.. http://www.codeproject.com/csharp/DIY-Intellisense.asp ...Show All

  • Audio and Video Development Does anybody know how to create wipe effect?

    Does anybody know how to create wipe effect I have a menu page with button animation and would like to create an effect to unmask the buttons from left to right when coming into the menu. I have tried animating width of the button_div, but not working. The buttons shows up as soon as the page get loaded. As long as the buttons are children of the div, they will be clipped by it. Probably your div is always 100% of its width due to a bug in your animation code. Can you confirm that the div really does change size ...Show All

  • .NET Development ThreadPool

    Hi, I have something as UI automation to register focus event. focusHandler = new AutomationFocusChangedEventHandler(OnFocusChange); Automation.AddAutomationFocusChangedEventHandler(focusHandler); OnFocusChange should have 2 parameters , ( object , AutomationFocusChangedEventArgs) where as Thread pool don't have any method ( i guess) which can repond to such parameter .. Can i add OnFocusChange Event delegate to ThreadPool ... In short .. I want Event delegate to be executed when thread is empty rather when user is active with UI . I know i missing something badly... pls Help.. Thanks sachin An event is raised on whatever thread the code raising the thread chooses. If it's a UI event it will be on the U ...Show All

©2008 Software Development Network