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

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

DanUp

Member List

DocMARs
Dietz
Chugupta
Jorge125
Mehta Vikas
Gunnar Adler
Keith Chapman
Rekar
Paul Carruthers
cplusplus1
MHR
k62o
M Minasi
John Blight
kirchu
Cuzzlor
WizMan
AlexCr
TBotnik
Scott Boyd
Only Title

DanUp's Q&A profile

  • SQL Server Sql server Sp1 error messages questions

    Hello, I have installed Sp1 for Sql Server 2005 I also received "locked files" and "reboot required". These errors I can find on all forums and do not worry me anymore. However i still would like to know more about the messages in the log files. - What does this mean: "Failed to read associated hotfix build information for the following file"...... - What does this men: "Failed to read version information for the following file"......... - Why are some products NOT APPLIED, while in the other log file it says "SUCCES" for the same product These beneath the 2 log files. File C:\WINDOWS\Hotfix\ HotFix.log shows "success" ------------------------------------------- 06/23 ...Show All

  • Visual Basic Creating a multi project solution. Problem with web directory structure

    Hi all, I've developed Java Professionally for six years now, and I'd like to learn the .NET 2.0 Framework I'm using Visual Studio 2005 for a small starter app to learn with and I’m running into some setup difficulties. I would like to create a solution with three projects, data access, business logic, and the web project. I have accomplished the following. Created a Solution (directory simpleproj) Added a data access project (directory simpleproj\dataaccess) Added a business logic project (directory simpleproj\business) Added a web project (directory simpleproj\web) While my solution and my project dependencies are correctly set up, it appears that not all of my configuration files for my web ...Show All

  • Visual Studio 2008 (Pre-release) How-to skin application?

    Hello, I am looking into the subject and have to say, that I feel a bit disoriented... :( My goal is to build the main application and allow our partners to develop skins that can be distributed/sold to product users. Obviously, we would like to make it hack-proof, so that "outsiders" cannot modify skins/develop new skins. Solution that comes to mind would be to have signed assemblies that would contain ResourceDictionaries (with optional related code), so that application could load those assemblies at run-time, validate them, and apply templates. I would guess that it is something easy to do, but I have unfortunate feeling that I am becoming almost sure that this scenario is not supported by WPF (I refuse t ...Show All

  • SQL Server receive notification from server in application

    Hello, I have an application which is running on multiple computers and is connected with one sql server. I would like to that the user is notified when another user is performing some special action. So I thought that when this action begins, the server is notified either by writing some data in a table or something like this. Then I would like other applications to be notified so is possible that notification service notifies the application If yes how Thanks SSNS may be used in instances like this. If your "special actions" are not recognizable using the built-in event providers (SQL Server Event Provider & File System Event Provider), you'll need to create a custom event provider to gath ...Show All

  • Visual Studio Express Editions Registration

    I registered about a week ago. Now they are offering free icons, and images for registering. How can I get them I would like to do that, Please dont tell me I have to uninstall, redownload, reinstall and reregister. Thanks, Brian Thank you. That seems to have worked, just the activex prompt isn't coming up and the images are not downloading......I'll figure that out later this afternoon. Thanks, Brian ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Shader data flow questions

    Two questions: 1. Is there any decent way to get a small chunk of data (4-8 bytes) from a vertex shader back to the CPU I would only do this in direct response to a mouse click, so it need not be fast, just possible. 2. The MSDN reference material here would suggest that a variable declared static could carry information from one shader invocation to the next, so that one could, for example, calculate a running min, max, or average of some property over all vertices. But in practice it seems that my static variable is zeroed afresh for every vertex. Below are the bones of my test case. The CPU program is providing each vertex with the "extra" variable, of which extra.x is a unique id for each vertex, sta ...Show All

  • Visual C# How to return properly from an eventhandler (or do something approximating the same thing)

    Hi! In my code, I need to return from an eventhandler function (function for handling the click of a button), and I can't figure out how. I think this is impossible. I'm not sure. But either way I can't figure out how to redesign my code to work around that problem if that is indeed an issue. Here's the code in question: [code] private void BtnConnect_Click(object sender, EventArgs e) { Connect(); return; } private void Connect() { Socket = new NetFXSocket(false, "82.116.68.153", 1345); UserState = new StateObject(0, Socket.Listener, 1024); if (Socket.Connected == true) { LstConnectInfo.Items.Add("Successfully connected to login server!"); } else ...Show All

  • .NET Development stored procedure Parameter information

    Hello All. My concern is how to make a stored procedure paramter accept null values, do not accept null values and biggest concern is how to check programatically whether parameter accepts null values or not I have used DeriveParameters of commandbuilder class, but no use. The parameter object which it returns and its IsNullable property is not giving correct values. I have also used some system stored procedures but they are also not showing accurately whether parameter accepts null value or not. Please help me out with example stored procedure and programm example in vb.net. I would be very thankful to all you friends. hashmi wrote: My concern is how to make a stored procedure paramter accept ...Show All

  • Windows Forms Having problems building my Setup Proyect??

    Hi! At the time that I'm building my Setup Proyect I have a 8 warnings saying Two or more objects have the same target location and one error saying Unrecoverable build error I don't know what to do beacuse I can not find the error. Please help me if you have seen something like this before because I want to run my application in another computer.... Regards!!! I had that problem... Dependancies of my project output had dependancies themselves; and the setup project will recurse until it has all related dependancies... however, when these recursed dependancies conflict dosen't do anything about it. So, the solution is to simply add in the references to all possible projects (or assemblies) which may get automatic ...Show All

  • Windows Forms textbox controls problem? i want to clear all textboxes text

    there are lots of textboxes in my form i want to clear all textboxes what is the procedure to clear 800 textboxes thanks Loop the controls collection of your form. I assume you are in code of your form class, so the this pointer will have the Controls collection: foreach(Control c in this.Controls) { TextBox b = c As TextBox; if(b != null) { b.Clear(); } } If some textboxes are in nested control containers you will have to loop them also. -- SvenC ...Show All

  • SQL Server Threat due to SQL Injection

    I have gone through a terrible situation a week ago. One website was working fine since couple of years and suddenly it was hacked. I checked the entire code in all the pages and it was not at all modified. When I checked the database, I found that javascript was inserted in it. As soon as a recordset was displaying it, javascript redirected that page to the hacker's site.. This was the mechanism was used by hacker. Which database can be more secure in such situations Nishith Shah Nishith Shah wrote: Thanx a lot buddy. But still I am not able to solve the issue. I have put strict validations on all user inputs throughout the site.. But still, one more page was hacked last night. Situation is becoming worse.. Kin ...Show All

  • Visual Studio Express Editions Creating a textfile?

    How can I create a textfile that I can input info into after my "write" buttong is pushed. It should send the writing from my textbox. no, the textfile won't be saved automatically when the app is closed, you have to do this. The code sample given does write the text to the file but you have to give it the value, so if the text is in a textbox, just give it the textbox text: Dim theStreamWriter as new System.IO.StreamWriter("filename.txt") theStreamWriter.WriteLine(Me.theTextBox.Text) theStreamWriter.Close()   or My.Computer.FileSystem.WriteAllText("filename.txt", Me.theTextBox.Text, true) :-) ...Show All

  • Visual Studio How to expand formal Properties window?

    Hi; How can I have something similar to “Settings and Constraint” window of DSM, for my model element (in final release of DSL Tools) I think you are referring to the Setting and Constrain windows in Distributed System Designer. The property grid window is part of Visual Studio, and you cannot extend it. You need write your own tool window to perform similar functionalities. Thanks, -Yu ...Show All

  • Visual C# Ambiguity between methods ... Using method group?!

    Why do I get the following message when I am trying to rebuild my solution ! Warning 1 Ambiguity between method 'Microsoft.Office.Interop.Word._Document.Close(ref object, ref object, ref object)' and non-method 'Microsoft.Office.Interop.Word.DocumentEvents2_Event.Close'. Using method group. C:\Documents and Settings\Charoite\My Documents\Visual Studio 2005\Projects\InteropProject\Microsoft\WordPrinter.cs 27 27 InteropProject Warning 2 Ambiguity between method 'Microsoft.Office.Interop.Word._Application.Quit(ref object, ref object, ref object)' and non-method 'Microsoft.Office.Interop.Word.ApplicationEvents4_Event.Quit'. Using method group. C:\Documents and Settings\Charoite\My Documents\V ...Show All

  • Software Development for Windows Vista [BUG] Vista doesn't start application called "install" w/o being elevated.

    Hi, I just encountered this really strange behaviour, which is definitely a bug in Vista. Consider the following situation. You're logged in as an administrator account. Start a CLI shell of your choice, start it normally, so that it's running non-elevated. Now consider a console application called install.exe. It's neither a GUI application, nor is it an installer application in the Windows sense. It's just called install.exe. In my case it's part of GNU coreutils and it's called install because it's usual task is to install software on the system. However, it's perfectly valid to call install as normal user and use it to install stuff into a subdirectory on which you have permissions. This is what happens when running under Cygwin (proce ...Show All

©2008 Software Development Network