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

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

MrFile

Member List

PSal
AlexBB
olapdummy
Musafir
Quack!
ulric k.
KevinBurton
weeks61
Rakesh Jha
Nakkeeran R
Tadwick
Vishal Shah
zuoliang
rdrunner40
Leandro Rodrigues
sd_dracula
nghianghesi
Cyrus Chan
srividyaramesha
ShadowRayz
Only Title

MrFile's Q&A profile

  • Visual Basic VB.Net IDE Crashes Often...

    I am having a problem where my VB.Net IDE crashes often throughout the day... I have a Client/Server application that I am developing, shared between the two is a ClassLibrary I developed. So my Client and Server project both have this ClassLibrary as a Project added to the main Solutions. This way if I am in either the Client or the Server code, I can immediately get access to the ClassLibrary code to make changes if needed. Now, my problem is that several times a day, when I attempt to open a form in Design view, I get a white screen with a pink bar on the top that says: One or more errors encountered while loading the designer. The errors are listed below. Some errors can be fixed by rebuilding your project, while others may ...Show All

  • SQL Server Using variables in a data reader source

    Greetings SSIS friends, I have tried using a sql command for my data reader source. I added the following expression to my datareader source : "select * from result where result_id > " + @[max_result_id] but I get the following error message : The SQL command has not been set correctly. Check SQLCommand property. I then got rid of the variable (defined at package level) and replaced it with a string like so : "select * from result where result_id > " + "123456" but I still get the same error message! What am I doing wrong ! Please advise. Hi Rafael, For some reason, SSIS is expecting me to have something in the SqlCommand in the datareader source component ...Show All

  • .NET Development "Could not create type..." error deploying webservice

    I know this question has been asked a billion times already because I've found several instances on the net, but none of the proposed solutions seems to solve my problem, so I'd appreciate any help. I've created a C# webservice on my local machine that runs fine. Now I'm trying to deploy it to a webserver. The server is Windows 2003 with IIS 6. I created a new virtual directory in IIS, set it to be an application, and gave it "scripts only" execute permissions. I've manually copied all the files from my local webservice directoy to the virtual directory on the server. When I try to access the page, I get the dreaded "Could not create type 'Service'" message. Here is some additional interesting information: 1. I'm ...Show All

  • SQL Server Grant "view server state"

    New SQL User...v2005. I have been directed to Grant "View Server State" permissions to a user. However, I don't see it in the list of choices I can grant access to in Permissions, nor is there a visible hyperlink in an area that it is expected to be. I have also tried setting that permission in a query window to no avail as well. I can provide additional info if someone would like to work with me on this issue. Thanks! "VIEW SERVER STATE" is a server level permission and not a database level permission. So you cannot grant it to a database user. You have to grant to a login. hope that helps, ...Show All

  • Visual Studio Express Editions Best of both worlds?

    Hello, Just wondering if anyone knows if it's possible or advisable to install the express editions side by side with office 2003 on the same machine or should a person keep them separated Thanks. Hey Thanks for the feedback Tim. (Very Much Appreciated!) Didn't think there would be an issue......but thought I'd ask first. ...Show All

  • .NET Development Deserializing a String Array

    I have an xml file that contains a serialized object. I am trying to deserialize individual properties of the object from the file. For example: < xml version = " 1.0 " > < MySerializedObject xmlns:xsi = " http://www.w3.org/2001/XMLSchema-instance " xmlns:xsd = " http://www.w3.org/2001/XMLSchema " > < Foos > < Foo > < Prop1 > xxx </ Prop1 > < Prop2 > xxx </ Prop2 > < Prop3 > xxx </ Prop3 > </ Foo > < Foo > < Prop1 > xxx </ Prop1 > < Prop2 > xxx </ Prop2 > < Prop3 > xxx </ Prop3 > </ Foo > </ Foos > < Bars > & ...Show All

  • Gadgets Function to edit html code of a webpage

    Hi guys First of all, Marry Christmas. :) I'm developing a gadget for Vista Sidebar but I think that it's much better to explane my problem here. Take some random webpage, for ex. www.microsoft.com. I would like to create a script function that automatically delete first 50 lines and last 50 lines of html code of that page (I want my gadget to show only middle part). Is there any way to make something like this Thanks in advance Hi, thanks again for informative reply. My goal Just to create some useful gadget for Sidebar that allow people to search on Wikipedia and display results in non-very-large Flyout (that's why I need to get only useful information, I just don't have enough space for menu/frame stuff). Wanna add some other i ...Show All

  • Windows Forms Change colour of modified datagrid row

    Hi all, I am working on VS.Net 2003. I have a datagrid, on CurrentCellChanged event of that i am checking if there is any modification in cell by user, i am updating database with modified data. But i need to change the color of that modified row to indicate user that row has been updated. How can i do that Thanks in advance. Deepz It's not easy for you to achieve that with a DataGrid, it doesn't have a Row[x].BackColor property as the DataGridView(which is a .NET2.0 control)does. So you have to override the OnPaint event, do lots of work, for more information, read this: http://msdn2.microsoft.com/en-us/library/ms996485.aspx ...Show All

  • Visual Studio Express Editions Comparing pixels in a bit map

    how can i compare pixels in a bitmap or any picture file i also hope you guys can help me in my another post !! HELP !! Extracting frames in a video and comparing them THANKS... thanks for your concern. anyway the project isn't too good. what i need is to stream video from a digital cam then compare frames, the pixels. something like that, to detect still objects. anyone have any idea found on MSDN of some things like DirectShow, IPhotoAcquire IPhotoAcquireSource Video Capture but the problem is what language is it in VB and do i need to use/enable any resources to use the (class library, if it is) functions ...Show All

  • Software Development for Windows Vista Run a Workflow in a Workflow and cancel it

    Hi, As many others i am quite new to this topic. I found some examples and tried some simple things. I just wanted to know if someone maybe has some finished code for my problem or has some hints how to solve it. I have a Seq-WF-App where i start WF1, constisting of: cdBegin - Code : { Log("Beginn"); } Call Workflow 2 cdEnd - Code : { Log("end"); } In Wf2 i have: cdBegin - Code { Log("Begin"), Loop(10) { wait 1 sec; } Log("end"); } cdEnd - Code { Log("End"). I wanted to know how I can call wf2 in wf1 with a timeout. So i want: Call Workflow2 ( 5 sec ). After 5 seconds i want to cancel/abort/terminate the wf2 i called. What i reached yet is: I Abort() wf2. The Wf2 is currently i ...Show All

  • Visual C# Retrieving Application Role GUID from AzMan

    I am trying to retreive the GUID for each Application role in AzMan. So far I have only managed a collection of their names. Suggestions public static StringCollection ApplicationRoles() { IAzRoles azRoles = _application.Roles; StringCollection rolesToReturn = new StringCollection (); foreach ( IAzRole azRole in azRoles) { rolesToReturn.Add(azRole.Name); } return rolesToReturn; } ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Meaningfull exception information

    Is it possible to get some informative exception message than: "Error in the application.\n-2146232832 (Unknown)\n at Microsoft.DirectX.Direct3D.TextureLoader.FromStream..." I really want to understand what went wrong. Probably if you switch to the debug DirectX in the control panel, turn up debug output to max , enable unmanaged debugging in your project settings (if you have VS Pro - this option is not in VS Express) and looked in the debug output pane, you might find an error description... But I'm not certain... As Wessam says though - it doesn't always tell you what is going on. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Problem using .FBX file

    I have a model that I downloaded off of TurboSquid. I pulled it into 3DS MAX 9, and exported it as an FBX file. I added it to my project, and when I try to compile I get the following error: BasicMaterial has a texture, but geometry does not contain texture coordinates. Is this a problem with 3DS or GSE Any ideas on how to fix it Eli, I was using 2006.08, so I upgraded the plug-in and tried again, unfortunately I got the same error. So I then exported it as ASCII and did a search for LayerElementUV; here is what was there: LayerElementUV: 0 { Version: 101 Name: "UVChannel_DIFFUSE0" MappingInformationType: "ByPolygonVertex" ReferenceInformationType ...Show All

  • Visual C# Login indipendent application

    Hi to all, I need to write an application that runs indipendently from the login of the users on Windows. The application must run in background and log a user automatically in windows when a certain event occurs (in example when I insert a smartcard in a special adaptor) and logout the user when another event occurs. Have I to write a windows service Can I open windows form (like popup) from a windows service Thank you Caioshin wrote: Indipendently of start time of the service and the application, I can't see my windows app before the login. I execute the application when the service start, but if I'm in Windows logged as user I can see my windows application (a simple popup) to app ...Show All

  • Visual Studio Winform ReportViewer Control behind Authenticated Proxy

    Following is the scenario. We have developed a windows application (using VS 2005, C#, SQL 2005) which is exposed to client and some authorized people on internet . Clients download this application by using a URL which point to manifest file (basically it is click once deployment scheme). This application access various network resources like Web Services, Reporting Services, Reports (i.e. .rdl files palced on SQL 2005 report server) etc etc. We use winform ReportViewer control in our application which access server reports Everything works fine except when the client computer is configured to access network resources through Authenticated Proxy . Most the network resources (basically web services) which we access from our appli ...Show All

©2008 Software Development Network