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

Software Development Network >> -me-'s Q&A profile

-me-

Member List

frusciante
er824
Cory Dixon
Awaken
william.c.schneider
jcfiesta
Alex Cane
ecskb
nistorm
GvS
toddhd
Yurgen
Cicada
SreeAtPru
Kaarthik Sivashanmugam
Harreld Kuiper
tjanuario
fcb
friendster
Ckiszka
Only Title

-me-'s Q&A profile

  • SQL Server MS Help - Reporting Services PDF Rendering and Code Security Context

    This is a long post. I have spent a collective 8 hours over the last 2 days working with MS Technical Support on determining the reason why my reports images, when called using absolute references to a web project ( http://localhost/projectname/mypic.jpg ), were not displaying when exported to PDF. Side note - the techs I worked with were excellent, but just as stymied as I was concerning this problem. My architecture has a .NET 1.1 app written in VB.NET that uses the Reporting Services 2005 web service methods to pass a stored procedure parameter and explicitly export the report in PDF format. On a sub report there are 2 Image control ...Show All

  • Visual Studio Questions on Visual Studio 2003/2005

    Hello, I'd like to know which version is included of Crystal Reports in Visual Studio 2003 and 2005 I know in the 2002 (and 2003 ) it's version 9 (or equivalence) Also I would like to know which full Crystal Reports versions we can use with the .NET studios I've tested CR10 with 2003 and it fits but could XI work with 2003 for instance A list of compatibilities would be advantageous Crystal Reports for Visual Studio 2005 is a specialized version of Crystal Reports with some XI features (e.g. Integrated Authentication support) and some features specific to functionality only available to the bundeld ve ...Show All

  • Visual C# Visual Studio reformats html

    When I switch between Design View and HTML View - the code is reformatted to be on single lines, running several asp:labels and asp:hyperlinks together on one line. If I go back and reformat the code manually - switch views - it's back on a single line. HOW can I turn this reformatting OFF... Thanks, Paul what version of VS I know this is a standard unadjustable behavior in VS2002/3, but it is supposed to be fixed in VS2005. ...Show All

  • Visual C# SQL update command not working

    When trying to execute a ExecuteNonQuery instruction in my C# web page program I receive an error message which says "Operation must use an updateable query". It is referring to an SQL UPDATE command against an Access data base file. What is strange is that the program works perfectly on my main computer but when I transferred the programs to my backup computer I get the above error message. Both computers are running XP sp2 and both have the same Jet engine dll and the same sql server. Does anyone know what can cause the program to not allow an update on a file. Or more importantly, what does this error message mean Dav ...Show All

  • Visual C# Multiple languages on the same WinForm

    Hello, I must write an application that must support input fields for a "left-to-right" language (as English) and input fields for a "right-to-left" language but on the same form . The keyboard is bilangual (QWERTY and a "right-to-left" language). When the user enters a left-to-right language input field, the keyboard keys must be QWERTY. When the user enters the right-to-left language input field, the keybord keys must automatically switch to the second language. Is it possible with C#.NET/WinForm/Textbox Thanks in advance, Stephane. Please find a solution ...Show All

  • SQL Server Storage of packages: file system or Sql Server?

    HI, we are beginning a new project at my company and I was wondering where is the best place to save SSIS packages: file system or SqlServer. I have used other ETL products and they always create a repository on an RDBMS. Since SSIS offers us the choice of DB storage or file system, is there pros and cons of both approach Will the deployment of our application be simpler by using Sql Server since we would onky move metadata instead of files Thank you for your help, Ccote This might be worth reading for you: http://blogs.conchango.com/jamiethomson/archive/2006/02/20/2902.aspx Make sure you click t ...Show All

  • Software Development for Windows Vista Is there a notification service Activity????

    In WWF there are activities that dont come with the instaler, like FileSystemActivity, I was wondering if there is an activity that notifies tha a change has been made in a SQL data base, something like a notification service Activity, does any one know Other than the activities that come with the product there are some sample activites that can be found at http://www.windowsworkflow.net/default.aspx tabindex=2&tabid=31 , but I don't think that any will notify you when a change is made to SQL. If there is an event that SQL fires then you could create an activity that subscribes to this event, kind ...Show All

  • .NET Development ASP html retrieval

    I want to store the html as a text blob before it is sent as the httpresponse object. Is there a way to retrieve it at generation time before it is sent This may solve your problem: Override the render method in your aspx.cs code like this ... protected override void Render( HtmlTextWriter writer) { System.IO. StringWriter stringWriter = new System.IO. StringWriter (); HtmlTextWriter myWriter = new HtmlTextWriter (stringWriter); base .Render(myWriter); // add code to store into database here // stringWriter contains the html code that is rendered writer.Write(stringWriter.GetString ...Show All

  • Visual Studio Custom ReportRenderer?

    Is it possible to extend the framework to create a custom ReportRenderer This would be nice for supporting reporting formats not supported out of the box. Thanks for your answers. I was actually wondering whether Custom Rendering was an option for Local mode. Guess not. Local Mode seems really limited in a lot of ways. ...Show All

  • Visual Studio Team System Error 1311 during installation

    During install of the Team Tester edition, a message is displayed: Error 1311.Source file not found: \\server\share\contentofcd\_15777_RTL_x86_enu_VSD_Common.cab Verify that the file exists and that you can access it. Options: Retry and Cancel The file doesn't exists - it's not in the .iso image I've downloaded. The file to be copied from the .cab file seem to be esymp_mipsii_hlp.dll to be copied to [installdir]\SmartDevices\Debugger\bin Retry doesn't bring you any further (of course)... Any ideas Regards, Carsten-S Yes, I did install from a network resource, but the problem was the missing CD 2 and 3 at ...Show All

  • Visual C# Registry question

    Im writing a program that does alot of modifying to the registry like i guess 1000 keys and i was wondering if any one here knows any functions to test if a key exist that way i dont try and write a value to a key that dont exist and cause a exeption or something even worse. One more question this one is not as important but any easy way to do a quick registry back up in code. Check this link to determine if a key already exists- http://www.geekpedia.com/Question60_How-to-check-if-a-registry-key-or-subkey-already-exists.html ...Show All

  • Visual FoxPro table manipulation

    Two tables exist, call them tableA and tableB. They share some data. which was easy to get select a.work_id, a.sp_id, b.work_id, b.sp_id; from tableA a inner join table b on (a.work_id = b.work_id); order by work_id; into cursor hold1 there is still a matter of getting all the data from tableA and tableB that they don't share. i tried doing a left outer join, but i still get duplicates. Any ideas MP After further look at my data, i seem to be excluding some info. I have three tables that list cities and different data in those cities, some are shared on all three tables and some are not. I need all the possible cities from all three t ...Show All

  • Visual Studio Team System sqlservr memory usage at 2GB

    I was just poking around on our TFS server investigating some unrelated issues, and noticed that sqlservr is using 2GB of memory (1GB physical, 1GB virtual), while msmdsrv is only using 225MB total (113MB physical, 114MB virtual). This machine has 2GB of RAM on it, and Task Manager shows about 450MB "Available". From the backups, it looks like we only have about 160MB of data (TFS dbs+reporting+STS). We have about 5 users using this machine. Is this normal I'm guessing SQL can't go any higher since I'm 32-bit with no /3gb or any other memory features. Yes, this is normal. SQL will allocate as much memory ...Show All

  • .NET Development Tcp buffer

    Hi, Client applications for my application are sending about 1500 short messages/second via Tcp sockets (local sockets, I mean on local host). Besides, my application is running on more than 60 PC, routing commands also via Tcp sockets. I fight againt my colleagues (programmers of these client applications) asking for using ACK but they did'nt want. So, I rely on the Tcp buffer and read (and handle commands) as fast as I can this Tcp stream. What is the best way to read a Tcp stream Should I try to read faster and put commands in a queue I fear that I will just move the problem and will have a very big queue. Thanks in advance for your he ...Show All

  • SQL Server Copy data from one table to another

    On the OLE DB Source, I have as following: select field1 , field2 , field3 from table_source On the OLE DB Destination, I used fast load option with table lock checked, and check constraints to copy data to table_destination. Both table_source and table_destination have the same table definitions. After the dtsx package ran, the number of rows copy over to the destination is not same. I got different results from different runs. This only happens when the source table is over 1 million rows and when I'm copying from the transaction database where user's activities are heavy. Any ideas how I can modify the package so it can copy ...Show All

©2008 Software Development Network