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

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

ennisb

Member List

Paul Fuhrmann
Rykin Poe
Anton__
Wendell G
flyte
rwbogosian
msdnuser06
Justin-M
Jonathan Cran
Narny
Jassim Rahma
ashwin_k_s
KAAU
enric vives
Pita69
UtterMan
Simon Honeybone
ahmedWebDev
vicarious
rmgjohnes
Only Title

ennisb's Q&A profile

  • Visual C# How to update DataTable when changes on DataGridView were made?

    Hello! I have a question about updating object DataTable after the changes on DataGridView were made. I think it is not good idea to go cell by cell... The problem is I probably can't use DataAdapter because I don't have any database below. I would like to store changed data only in DataTable object. Any idea Thanx, Ziga Thanx! I already made this, but I didn't knew this is made automatically. So update on DataTable is perfromed when the focuse on the updated cell (on DataGridView) is gone Thanx, Ziga ...Show All

  • Visual Studio Undocumented error loading a Logger DLL

    Hello, I have built a logger DLL for msbuild and am trying to include it on the command line but am getting an MSB1029 error: C:\Nova\Builds\Tools\BuildLogger>msbuild ..\..\..\source\products\client\code\pr esenter\presenter2.vcproj /logger:buildlogger.dll Microsoft (R) Build Engine Version 2.0.50727.42 [Microsoft .NET Framework, Version 2.0.50727.42] Copyright (C) Microsoft Corporation 2005. All rights reserved. MSBUILD : Logger error MSB1029: Log file was not set. C:\Nova\Builds\Tools\BuildLogger> The DLL is in the directory I am executing that command from so I am not sure what it is talking about. -Caolan O'Domhnaill I believe that error is what we show when the logger ...Show All

  • SQL Server Newbie Parameter Problem

    Hi, I have 3 parameters on my form. StartDate (datetime), EndDate (datetime) and CompanyName(string). The default values are: StartDate (Non-queried) 1-1-2005, EndDate (Non-queried) 1-1-2008, CompanyName (From query) DataSetBelow, Value field (AccountFamily): SELECT DISTINCT AccountFamily FROM CallDataRecords The table on the form contains the following DataSet: SELECT Salutation, InboundTimeMS, OutboundTimeMS, ModifiedOn, IsRightParty, AccountFamily FROM CallDataRecords WHERE AccountFamily = @CompanyName AND ModifiedOn BETWEEN @StartDate AND @EndDate The error I get is: "Query execution failed for data set (one directly above)". "Must declare the scalar variable "@CompanyName". Can ...Show All

  • .NET Development Unable to connecto remote server while accessing exchange server

    Hello all, I am trying to access the exchage server 2007 and send a mail through a WebDAV request. The exception that i encounter is "System.net.webException: 409 Conflict". I am using VS 2.0 and i am not sure where lies the problem. I have checked the credentials and i am providing everythng correctly. Can anyone guide me with this please. I am also providing my code hereby: string strServer = "server name given here" ; string strSenderAlias = "alias given here" ; string strFrom = "email of the sender"; string strTo = "email of reciever" ; string strSubject = "Send Using HttpWebRequest" ; string strBody = "Hello World" ; ...Show All

  • Windows Forms Vertical Label

    Does someone know how i can make a vertical label like this : H E L L O Thanks Unless my eyes are deceiving me... http://img213.imageshack.us/img213/4910/untitledoq8.jpg I have never had any problems not being able to make vertical labels using the default label control. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Is there any way to tell if a sampler has a texture attached in shaders?

    Is there any way to tell if a sampler has a texture attached in shaders The default behavior is getting black when no texture attached but I want it to be some other color. No, there is not such functionality available in shader. If you want to use other color, just attach 1x1 sized texture in your code when no texture is needed. I think such things were actually used for emulating "default" black behaviour in some older HW. ...Show All

  • Windows Forms How to insert images into database with out using file streams

    Hi all, I am inserting images into the database(oracle using blob )by loading pictures to the picture box using file streams, but my requirement is -> from clipboard copy the image to the picture box and save to the database and retrieve from there without using file streams. I copied the image to the picture box as a data object and tring to insert the image as normal data object, but not able to do the rest of the program,pls give me an idia. Yes you can load from Memorystream   Here I do load a Bitmap from file, but the Bitmap img can be any bitmap that you have in your application. (used MySql database and a typed dataset however but that should not make much of a difference)   Bitmap img= ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. InvalidOperationExceptions playing XACT Cues

    Hmm, this is quite odd ... this error seems to pop up after a while of me playing Xact cues $exception {System.InvalidOperationException: This resource could not be created. at Microsoft.Xna.Framework.Audio.Cue..ctor(UInt32 handle, String name) at Microsoft.Xna.Framework.Audio.SoundBank.GetCue(String name) at ProjectPulse.Piper.Update(GameTime gameTime) at Microsoft.Xna.Framework.Game.Tick() at Microsoft.Xna.Framework.Game.HostIdle(Object sender, EventArgs e) at Microsoft.Xna.Framework.GameHost.OnIdle() at Microsoft.Xna.Framework.XboxGameHost.Run() at Microsoft.Xna.Framework.Game.Run() at ProjectPulse.Program.Main(String[] args) } System.Exception {System.InvalidOperationException} For the time being, my title has no v ...Show All

  • .NET Development Generate Dataset VS.Net 2005

    Hi In VS.Net 2003 I could Create an Xml file. Sketch out some nodes. Right click and create an Xsd The Xsd got added to the project I could open the Xsd and right click and Generate Dataset Then use the Strongly Typed Dataset I am using RC0 VS.Net 2005 It seems this flow is no longer there. I've worked around it. It takes several steps. Is the flow hidden somewhere Thanks You must be using a different version of VS.NET 2005. The One I use in the Team edition for Software architects. The only properties displayed for my dataset (.xsd file) are name and path. A darn shame too, The old Schema designer was a much better (intuitive) way to generate an XSD file. I can't see why the interface was pul ...Show All

  • Visual C# treeview question

    hi i want prevent treeview from collapsing when i refill it. i m using code. im using this code in afterselet event of treeview. try { txtUserId.Text=tvAdmin.SelectedNode.Text; TreeNode Node= new TreeNode(); Node=tvAdmin.SelectedNode; General obj=new General(); obj.FillTVAdmin(tvAdmin,"SELECT Name FROM tblCompany"); tvAdmin.SelectedNode=Node; tvAdmin.SelectedNode.Expand(); or //here gives exception tvAdmin.SelectedNode.EnsureVisible();//i m using it in } catch(System.Exception p) { MessageBox.Show(p.Message); } but ti gives exception that object refrence not set to the instance of object The problem is you get selected node. Refresh tree nodes which cause all nodes to be deleted and ...Show All

  • Visual C++ Very Large IF-Else structure in VC6

    I have a an application in which I use a function which has alomst 150 if-elses like following if(strcmp(str1,str2)==0) { // some instructions which including a "new" instruction } else if(strcmp(str1,str2)==0) { // some instructions which including a "new" instruction } else if(strcmp(str1,str2)==0) { // some instructions which including a "new" instruction } ...... and so on. All these instructions execute on the basis of an input file. If i have an input file wich uses LAST 5 or 6 else-if instructions then my application does not reads the complete file. It SUCCESSFULY completes the execution (NO crash), but does not reads the complete file. I know this, as my application shows the line count propcessed so far. I ...Show All

  • SQL Server Problems connection to SSAS

    I just installed 2005 and have an instance of Enterprise on my local machine. My SSAS service appears to be working properly in Services. However, whenever I try to deploy a cube (simple one from tutorial) or try to connect from Management Console, I get rejected. The error message is: No connection could be made because the target machine actively refused it (System). I've tried about everything I can think of and can't get past this. Any guidance would be greatly appreciated. ...Show All

  • Microsoft ISV Community Center Forums Object Browser

    I find the object browser very useful for finding out what objects are available to me. However, it would be more useful if I new what the small symbols or icons denote just to the left of each object/class (e.g. an easy one to describe would be a hand holding what looks like a card and another a green object with what looks like motion lines coming off of it). Would anyone who knows what I am referring to be able to list what they mean Cheers! No worries Keithyboy, The grey square with the red, green and yellow blocks on it is a class. (i.e. Application) The green moving thing represents a method of the class (i.e. Application.SetDefaultChart()) The finger pointing represents a property of ...Show All

  • Visual Basic AutoRecover Not Working

    In VS05, we have autorecove set to every 7 minutes and save them for 7 days. The help says they are saved in \...\My Documents\Visual Studio 2005\Backup Files\< projectname >. However, the project name is there, but the folder is empty. The actual path of our project is C:\CS\CSolution_Telephony Any ideas on why autorecover is not working Bob Day Hi Pipo, I just want to be sure that I understand, your scenario is that SQL BI projects and VB projects are not being recovered properly. It wasn't clear whether you had tried with a VC project, can you confirm that you did or did not Can you let me know what the value of Tools | Options | Projects and Solutions | General | "Save New Projects When Created& ...Show All

  • Gadgets Gadget for my site...

    I would like a gadget for my personal site that would be able to pull dynamic content from a message board and list the 'hot topic' or top 5 topics in a seperate little window when you click the gadget. I click it...the window opens...and the selected content is displayed... Thanks, Chris Yeah...sorry after re-reading I see what you mean..:) I would like to figure it out myself with a little help. I use phpbb software for my forums and though I don't know if RSS is in the software itself I know there are MODs for it that deal with RSS. I will look into that a little more. I pull code direct from my DB on my main page for visitors with php right now. I would assume all I need to make the gadget do is ...Show All

©2008 Software Development Network