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

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

windpuffs

Member List

GlenO
RueSam
irl-barse
svxtc
TRID
JonesAtl
hypo
Hossam Abdel Wahab
poiuytrewq
Spangltk
A.Kahn
pst_grant
JasonG271009
Bloom326984
Yones
elixic
Raba Shani
Paul60
d.delft
csname
Only Title

windpuffs's Q&A profile

  • .NET Development Registering System.EnterpriseServices.dll trouble

    I am unsure if this is the proper place to post this. My apologies if I am in the wrong place but... While trying to run a new program, I discovered that I needed the .NET framework v2, which I then downloaded. Everytime I attempted to install it would stop at Registering System.EnterpriseServices.dll. The system wouldn't hang. I got no error messages. It just wouldn't proceed. After waiting about 1/2 hour, I would have to use Windows Task Manager to stop the program. Help! Bob Hesch Ps. I am an average home user with good Windows skills but without any programming experience. I have a Compaq Presario 5000 - Athlon 1Ghz processor running XP Home, 640 MB of DDR RAM. ...Show All

  • SQL Server Multiple values contained in query string to be used as parameter in Report. HELP!

    Hi, I'm a bit desperate here so any solutions would be much appreciated. I'm using SQL reporting services 2005 & .NET2.0 & Oracle DB. I need to pass multiple values in the query string, or any other suggested way, to my report to be used as a parameter. The idea is a user on the web app will do a search & select an item to open a new form. The user can print the report from here, by pressing a button and being redirected to the report's URL. In this form there will be many (could be alot) of IDs that I will need to pass to the report and the report will use these as a parameter. The problem is that I am passing it at the moment as a comma deliminated string so instead of the SQL doing this : "ID in ('1', '2')", it's d ...Show All

  • SQL Server EXECUTE permission denied on object 'xp_sqlagent_notify', database 'mssqlsystemresource', schema 'sys'.

    I'm trying to create a new subscriptions on an existing report and get the following error. An internal error occurred on the report server. See the error log for more details. (rsInternalError) Get Online Help Get Online Help EXECUTE permission denied on object 'xp_sqlagent_notify', database 'mssqlsystemresource', schema 'sys'. I ran the following that was suggested in http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=17774&SiteID=1 . But still I get the same error. Do I need a reboot or restart of the services The only log file information I can find contains the following. System.Web.Services.Protocols.SoapException: System.Web.Services.Protocols. ...Show All

  • SQL Server What could be the problem with my code? its not updating the database

    Hi My code that Im using is not updating the database, Im using the following stored procedure :- set ANSI_NULLS ON set QUOTED_IDENTIFIER ON go ALTER PROCEDURE [dbo] . [Update_VMI_Capture] ( @ID int , @Weighbridge nvarchar ( 50 ), @Volume float , @DateTime datetime , @Fuel_Type nvarchar ( 50 ) ) AS SET NOCOUNT OFF ; UPDATE VMI_Capture SET Weighbridge = @Weighbridge , Volume = @Volume , DateTime = @DateTime , Fuel_Type = @Fuel_Type WHERE ( [ID] = @ID ) When Im running this procedure using SQL Server Management Studio it runs perfect. The problem is when I use a little C# code to run this procedure like :- int ID = Convert .ToInt32(Requ ...Show All

  • Software Development for Windows Vista Using MXDW

    I would like to use MXDW to create XPS documents from any application. But I would like to automate the creation by automating the printing process. But when I try to do this it always comes up with the "save as" dialog box. I had the same problem using the MODI driver as well. Does anyone know how to get rid of that Any samples will be helpful. Hello Tibi and XPSUser, I am fixed in exactly the same case as XPSUser. Tibi I doubt we can create a port monitor, as you told it does more than what we see. Please suggest if there is any other way of getting rid of that "save as" dialog box. Regards, ...Show All

  • Visual Studio 2008 (Pre-release) Possible BlockCollection bug - Need clarification

    Not sure if this was by design or a bug. When taking blocks from the BlockCollection of a RichTextControl and adding to a FlowDocumentViewer, the source collection will suddenly wipe clean once you have added the first block of the source collection to the destination collection. ie Place a RichTextEdit and a FlowDocumentPageViewer onto a form. Enter text into the RichTextEdit making sure more than one block is entered. and have the following code execute from a button click ect FlowDocument destinationContent =(FlowDocument)flowDocumentPageViewer1.Document; FlowDocument sourceContent = (FlowDocument)richTextBox1.Document; Block currentBlock = sourceContent.Blocks.FirstBlock; for (Int32 blockIndex = 1; blockIndex < sourceContent.Blocks. ...Show All

  • .NET Development Send object to Client from Server using TCP/IP

    how to send and receive object not a string(like code in the bottom) to client from server. so the client will accept object not array byte. //this is for send string TcpClient connectedClient = tcpServer.AcceptTcpClient(); byte[] bt; bt = Encoding.ASCII.GetBytes(message); connectedClient.Client.Send(bt); Of course as stated by BJohnson, create a class of whose object you want to send objects over the network and decorate it with Serializable attribute like this: [Serializable] class NetworkMessage { string userName; string chatMessage; } No you can use Soap or Binary Serialization to serialize them into bytes and send these byets on the Network.... upon receiving these by ...Show All

  • Visual C# Sorting 'complex' objects...

    Hello all, Just say I have an arraylist of objects (all of the same type) and say these objects are 'Person' objects. So each person has instance variables. such as firstname, surname, etc. I wish to sort this arraylist of person object references by surname. What is the easiest way to do this Thank you Chris int CompareClientsByAge ( Client c1 , Client c2 ) { return c1 . Age - c2 . Age ; } While I'm all in favor of a good shortcut, I'd still write that as: int CompareClientsByAge ( Client c1 , Client c2 ) { return c1 . Age.CompareTo( c2 . Age) ; } for a few reasons: For some numbers in the range of Int32s (but, admittedly, not in the range of ...Show All

  • SQL Server i am unable to trieve the date in ms-access

    hi friends, I am trying to create alert system in which i can able to retrieve the date while configure the OleDbDataAdapter1 itself the problem occurs this is the code i tired select * from table name (username= ) and (date=) after entering this error occurs You haven't mentioned about SQL Server version you are using, refer to this http://www.aspfree.com/c/a/Microsoft-Access/Configuring-a-Linked-Microsoft-Access-Server-on-SQL-2005-Server/ link in this case where it explains how you can achieve from SQL Server side. IN SQL Server 2000 you can use DTS to get (import) the data from any other data provider and you can schedule the DTS package too. ...Show All

  • Visual Studio Team System How to check whether any MSOffice file exist in any TFS project programmatically using TFS API

    I want to make sure that none of the projects in TFS has MS office files, programmatically.can anyone suggest me how to do the same Hi Martin.I think my wordings in the post were bit misleading.Actually we are trying to standardize all the application running on our floor.One of the checklists for the same is to make sure that all applications should have all project related docs (like Req doc,Design doc etc, whcich are basically MS files) on VSTS.I just want to list down all the application which dont have such. So whatever you are doing is perfectly alright. ...Show All

  • .NET Development IIS 6 connection to SQL Server 2005

    Hi, I have an aspx page with a connection to SQL Server 2005 which works fine on the local VS2005 setting. When I deployed it to an IIS 6 box it could not establish the connection. Could someone help shed some light Scenarios, Local to sql 2000 -- OK Local to sql 2005 -- OK IIS box to sql 2000 -- OK IIS box to sql 2005 -- Error The connection string is, "Data Source=DBServer;Initial Catalog=DB;User ID=uid;Password=pwd;Pooling=true;Max Pool Size=50;Min Pool Size=10;" I get the error message SQL Server does not allow remote connections. (provider: Named Pipes Provider, error: 40 - Could not open a conne ction to SQL Server) If connection string is, "Network=DBMSSOCN;Data Source=10.10.1 ...Show All

  • Software Development for Windows Vista Power icon problem

    Hello, I've just installed the Windows Vista Beta 2 (Build 5384) and so far so good, except for one thing: somehow i can't activate the option to show the power icon on the "notification are" of the "taskbar". When i go to the properties of the "taskbar", and then go to the "notification area" options, i'm allowed to select to always show the clock, volume and network icons, but not the power icon. Do you know what can i do to fix this problem Because of this problem, i never know when the battery is low. Thanks for your help!! Looks I'm not the only one with that problem. I also tried to install the XP drivers, but with no results too. Lets just hope that ...Show All

  • Windows Forms Invisible Column

    Hi all, I want to prepare 2 columns in my DGV: 1 column for displaying "text" and another one displaying "value". E.g. ColA ColB First Name firstname In the backend, I'll loop through all DGV row and I want to obtain the "value" from ColB for further processing (ColA containing space and for display only). I set the ColB.Width = 0 and DataGridViewAutoSizeColumnMode.None, but the column still visible. If I set the ColB.Visible = false then I can't loop through that column value programmatically (e.g. at the CellFormatting Event). Any solution to this situation Thanks, A screen shot is attached here . ...Show All

  • Smart Device Development Application works on one handheld but not on the other!!!

    Hello people, this is my last shot so please help me out! I have two MC1000s handheld barcode scanners. My application works on the one but doesn't work on the other. It has something to do with SCAN_ENABLE error that doesn't appear when I remove any SQL code. I emphasis that it works on the one but not on the other. The only difference I have found is that the one that works has an OEM 00.00.0007 and IPL 01.00 and the one that doesn't work has an OEL 01.00.0011 and IPL 01.01. Please help! I have tried pretty much everything and I really hope someone will give me an answer! Thanks in advance, John. Thanks again for your reply Steve. Can I ask what you mean exactly by override the show method of ...Show All

  • Windows Forms [GDI+] Bitmap scaling - NearestNeighbor interpolation bug?

    Hi, Sorry if I have choosen wrong place for this thread but i think that it is rather connected with WF programming. I am actually making a tool which needs high precision while operating on bitmap (let say it is something like icon creator.). That's why I am using high zoom and pixel-grid. I have encountered a problem (bug maybe ) while using nearest neighbor interpolation. If my zoom factor is set to 8, each pixel is magnified 8 times except the "edges" of bitmap. They are resized only for only a half. And because of that the whole bitmap move slightly, and pixels are about of their grid bounds. To visualize this problem I attach screen: http://img214.imageshack.us/img214/5073/bugdk7.jpg I intentionaly draw the bitmap sta ...Show All

©2008 Software Development Network