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

Software Development Network >> John Lieurance's Q&A profile

John Lieurance

Member List

R.Tutus
Aquilo
KoryS
Jaime Oro
h1
LiamD
todd_bulky
Chris &quot&#59;Delmonty&quot&#59; Finlay
Thena
ant42
briendjf
Han Qiao
Hkrabben
Marco Minerva
Rafak
Marcos Nogueira
dragoncells
Eirian
DD_Helmetman
VDBA
Only Title

John Lieurance's Q&A profile

  • Commerce Server OrderDetail

    I am trying to change the orderdetail and make it multilanguage. But I can't find where to change it And how do I add multilanguage support to it Also I have the same problem for the basketsummary, I want to add a picture instead of the text Cart and make it multilanguage. And change the text. Thanx! /Andreas To explain more in detail, when calling the BasketSummary and OrderDetail I can't make a translation for the text in a resource file connected to the aspx page, either under site.resx or under local resources. So still need help figureing this one out. /Andreas ...Show All

  • Visual Studio Express Editions C# and Ripples

    Hello There, I've been completing The Expression Interactive Designer Tutorials and regarding one of them, Reflections, I have been wondering how to take it further, such as being able to create ripple effects to the bottom part of an image where the reflection lies. i'd like to try this in C#, but I have only been able to find something like at this website http://rivalpro.net/~lakeapplets/lakeapplets/snowmountain.html where the terragen - created image has had a java applet ( I think) applied to it. I am a newbie trying to learn C# and Expression so please forgive me if the question is misplaced. Has anybody any ideas regarding the coding, or where I could find some appropriate C# examples, or even if this is possible Many Thank ...Show All

  • SQL Server Removed Publisher stays in Replication Monitor.

    We have a publisher that got red-crossed(Run to problem). I decide to remove and recreate it. However, after remove it, the publisher still stays in Replication Monitor. The remain thing has no distributor and logreader, but only snapshot agent. When to check the property of the agent, we got a error message basically say the job does not exist, which makes sense.  Now, it does not show up in any places, except Replication Monitor. Well, it cannot be removed from Replication Monitor. Can any one tell us how to clear it from Replication Monitor Thank you. More Infor:  The replication was set up on 2000.(2000 pub, 2000 dis and 2000 sub) with 2005 Management Studio,  and the publication was removed ...Show All

  • SQL Server SQL Query to output formatted Excel file

    I need to create a query (SQL 2000) that renders a formatted excel (xml or xls) file for each row that is outputted. The details, I have a Campaign table that contains information for Auto and Life "Leads" and the data is submitted by telemarketers directly into the database. I need to render a file for each line, and it would be good if It were an Excel XML or XLS file, because that's what we've been using for a while. hi try this query Exec master .. xp_cmdshell 'bcp "use dbName; select * from tableName" queryout "e:\test.xls" -c -CRAW' hope this will help you ...Show All

  • Visual C++ LNK4209 in VS2003

    Hi I am trying to link an EXE that will statically link in a library A that also depends on another static library B. When B is compiled with any debugging information, I get LNK4209 when linking the EXE. The steps I follow are: Build B Build A Build EXE The object files that LNK4209 comes up on are both generated from my own source files. All of these are compiled with VS2003. Additionally, eventually the linker terminates with "Internal Error during pass 2". If I rebuild B with no debugging information, I am successfully able to link & run the EXE, but this is not desirable. Below is some verbose output from the linker. If anyone can shed some light on this, it is much appreciated. GIPSSipVoiceEngineDll_debug.lib(rtpsende ...Show All

  • Windows Forms Concurrency violation help me please

    hi i use vb.net 2005 and an access database i connect to one table and change many things on the table and then save it again i use the disconnected mode i disappointed i try to solve the concurrency violation like the msdn said (get a fresh copy of the table and merge it to the worked one)but it sometimes save and sometimes not !!!!! although im one user for the database help me thanks in advance. thanks for reply the database is Access database xp 1- the table structure contains autonumber field and 4 string fields and date field and this table has relation to child table one to many .. 2- the error messages says "Concurrency violation the update command affected 0 of the excpected rows" it appears some times and times ...Show All

  • SQL Server Problem with store procedure

    I have the following error when I execute this stored procedure. Can someone please help Msg 208, Level 16, State 6, Procedure InsertIndicator, Line 28 Invalid object name 'dbo.InsertIndicator'. set ANSI_NULLS ON set QUOTED_IDENTIFIER ON GO ALTER PROCEDURE [dbo] . [InsertIndicator] ( @Module nvarchar ( MAX ), @ModuleID int , @Indicator nvarchar ( Max ), @ReturnValue int Output ) AS Select Module FROM Modules Where Module = @Module IF @@ROWCOUNT >= 1 Begin Select Indicator FROM Indicators Where Indicator = @Indicator IF @@ROWCOUNT = 0 Begin INSERT INTO [dbo] . [Indicators] VALUES ( @ModuleID , ...Show All

  • Visual Studio Express Editions Help2 :D

    Well i dont Know how to explain erm... Ok let me explain I mean Tutorial Make Launcher to DLL File like... erm Cheats Coutner strike or WOLFENSTEIN YOU Got me no Like.. All Cheat have DLL File Lets Take Fighter FX Download from here http://cheatdb.darkcheats.org/ game_id=1  Than Lets say i deleting this launcher and i want make 1 new exe launcher At C++ Visual studio 2005 How can i do this You should take a look at Platform SDK functions LoadLibrary and the associated GetProcAddress . ...Show All

  • Visual Studio CHM files in Unicode path

    I want to be able to install my application in a directory with Unicode characters in the filename. I am, however, unable to open any compiled html files (.chm) when I do this. The error message I get is: Cannot open the file: mk:@MSITStore:C\Program Files\Uni \myhelp.chm. The same .chm-file works fine a directory without Unicode characters. Has anyone figured out how to do this Regards Bengt Hi Bengt, You might try "escaping" the unicode characters in the directory's title name, substituting either hex or decimal values. Please see this conversion chart: http://theorem.ca/~mvcorks/cgi-bin/unicode.pl.cgi start=0400&end=04FF I'm not sure if this will work, but it's w ...Show All

  • SQL Server scripting Stored Procedures

    Hi all, I am trying to script Stored Procedures from a sql server, here's my console project: using System; using System.Collections.Generic; using System.Collections.Specialized; using System.Text; using Microsoft.SqlServer.Management.Common; using Microsoft.SqlServer.Management.Smo; namespace Scripting { class Program { static void Main(string[] args) { Server server = new Server("My_Server"); Database db = server.Databases["My_DB"]; UrnCollection urnc = new UrnCollection(); foreach (StoredProcedure sp in db.StoredProcedures) urnc.Add(sp.Urn); Scripter scripter = new Scripter(server); try { StringCollection sc = ...Show All

  • SQL Server Your upgrade is blocked because of cross-language compatibility rules

    I am getting this error in the installation of Sql server 2005 express. I have windows xp service pack 2 in spanish. Net Framework 2.0 installed. Please, What can i do Jose. You must have the appropiate language update pack, cross language installations / upgrades are not supported. HTH, Jens K. Suessmeyer. --- http://www.sqlserver2005.de --- ...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 Hi All I'm still having an issue with Delays in ASP.Net. I moved the Runtime instan ...Show All

  • Visual Basic Hi, Tailor POINT is a STRUCTURE with more than one property and is treated as a single item.

    Hi, I'm having trouble coming to grips with the use of arrays. This time I need to put a number of co-ordinate Points into an array. for example startPoint = 50,180 endPoint = 100,180 I've initialised my array : Dim arrowCoord(,) As Point = New Point(,) {} Then tried to input data with this. arrowCoord(0,0) = (startPoint, endPoint) I'm getting the error message that a ')' is expected at the comma between startPoint and endPoint. Would appreciate any advice. Whe I get this right I need to write the data to an Sql table, so would appreciate a little help with that also, as far as the extracting the data from the array. Thanks Tailor 1D array, imagine a line of box ...Show All

  • Windows Forms Mouse scroll event

    Hi I need to stop the mouse scroll event in a combo box in a form because for each selected index change i need to send a request to a web service which would become costly if the user scrolls as it would send n number of requests to the service. Please let me know the event which is fired when the mouse is scrolled. Thanks and Regards, Karthick. Try subclassing the combo box:     public class NoScrollComboBox : ComboBox     {         protected override void WndProc(ref Message m)         {             const int WM_MOUSEWHEEL = 0x20A;   & ...Show All

  • SQL Server SQL 2003 and SQL Express

    Hi I would like to install SQL express on a PC which already has SQL 2003 - I use enterprise manager to manage a database. I require express as part of a teaching role (my students have installed it). Is is possible to do this or should I remove the full version Regards Eddie hi, SQL Server 2003 does not exist.. but you can install SQL Server Express (or other SQL Server 2005 edition) side by side with SQL Server 2000 instances.. regards ...Show All

©2008 Software Development Network