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

Software Development Network >> gabriel h's Q&A profile

gabriel h

Member List

Jeff Putz
Amos Soma
ron nash
anubisascends
John Paul Cook
Delusion7
evan_t
Sarath.
hr0nix
Norbert.Bender
donbox5
Subby Dev
Criminet
amendez
cpaesano
RapsFan
Pockey
ChandraP
Robs Pierre
Kohl.Mike
Only Title

gabriel h's Q&A profile

  • Visual C++ Intellisense becoming unable to resolve objects

    I'm posting this here and not in the general Visual Studio forum because my experience so far tells me the situation with C++ is different than with, say, C# (I have so far at least one example where VS's tools behave worse in the C++ environment than in that of C#). I have Intellisense getting confused and unable to resolve objects so often that I find myself closing the solution, deleting the *.ncb file, and reopening the solution. It almost makes me wish I had a "rebuild Intellisense" button... Kamen I totally agree with you. Meanwhile, it is important to note that we won't be able to help unless you provide us with a reproducible case so that we can investigate. I will invesitigate further from my side but can't ...Show All

  • Visual Studio 2008 (Pre-release) Model generation wizard working backwards or is the programmer backwards? :)

    I have a table (again, using the video game stuff as my sample to play with): ID Title Description Rating (int, refers to the ID column in GameRatings) Type (int, refers to the ID column in GameTypes) Rating and Type both have foreign keys that point to the source tables GameRatings and GameTypes respectively. I have Associations in my Entity model that have produced classes called FK_VideoGames_TitleRatings and FK_VideoGames_VideoGameTypes. That all appears fine. However, I don't appear to have any navigation ability to allow me to do things like: game.Type.Name or game.Rating.Name Is there something I missed in the DB to allow for this automatic member generation, or, if the wizard doesn't do it, what do I have to do to my pre-generated ...Show All

  • SQL Server An error has occurred during report processing (rsprocessing aborted) Invalid attempt to read when no data is present

    Hi , The application is in ASP.Net with backend as SQL 2000 SP4. The ASP.net displays reports using SQL reporting services using stored procedure.If two users try to view the same report and navigate the same reports concurrently I gets following error for first user "An error has occurred during report processing (rsprocessing aborted) Invalid attempt to read when no data is present." Note: Two users are viewing the same reports and navigate the same reports and error is getting for first user not for 2nd . The second user can navigate reports without an error. Please help me for solving this problem. Thanks, Rakesh Could this be a security issue rather than a concurrency issu ...Show All

  • Visual Studio Express Editions Installation Error

    When i try to install Visual Basic Express Edition it gets so far then a box saying 'Unknown Error' comes up with eht only option to click ok when you do the window comes up again, the installation will continue but then the program will not run, help appreciated ...Show All

  • Microsoft ISV Community Center Forums Scripting

    HI, Do anyone has a script than checkes if a certain service is running,and If not it restart the service Cheers These forums are for topic discussion for developers relating to Windows Forms Application development using the .NET Framework. Please redirect your issue to a forum that better suits your problem. Thank you and good luck. ...Show All

  • Windows Forms How to speed up datagridview

    Hi, I have a datagridview and i bind it to an arraylist. The arraylist contains about 50 000 of records. When a large number of rows(say 49000) being selected and I try to remove them all at once, it's such a lengthy process almost takes me 20mins. I have been looking for the solution all over the net, but i still couldn't find any. I have read an article on "Using the Selected Cells, Rows, and Columns Collections Efficiently" but it didn't tell me how to determine which rows are selected. So I can't determine which rows need to be removed from the datagridview. Can anyone help me with the problem How are you removing the rows Many times it is faster to manipulate the datasource than the act ...Show All

  • Visual Studio 2008 (Pre-release) Problem opening an WinFx Browser Application

    I have created a WinFX Browser Application. I can run it from Visual Studio 2005 with no problems. I've copied all the files from the release directory to the root of the server's Web server. I've also turn on content expiration and registered the necessary MIME types. When I try to bring the application from the browser I get the following error in the error log file: * An exception occurred while downloading the application. Following failure messages were detected: + Downloading http://localhost/XAMLBrowserApplicatoin/PresentationDesignCore.dll.deploy did not succeed. + The remote server returned an error: (404) Not Found. The file PresentationDesignCore.dll is one of the files in the Web site but not the Presentatio ...Show All

  • Software Development for Windows Vista InvokeWorkflowActivity doesn't call 2nd workflow

    I'm trying to get one workflow to call another one. I tried using the invokeWorkflowActivity, I set the TargetWorkflow to the workflow that I want to get called. It's in another project so I added the project as a reference. What else do I have to set up in order for this to work properly. I get no errors, the first workflow starts and then completes as expected because the call to start the workflow is asyncronous. The problem is that my second workflow doesn't seem like it's getting called. I only associated the 1st workflow, do I need to associate the 2nd workflow too Thanks, -Somsong Hi, I have a similar problem that I cannot solve, I have two state machine workflows, one invoked from insid ...Show All

  • Visual Studio Express Editions missing header files

    hello all.... the master of weird annoying problems is back.   ok heres my problem, wenever i try to compile a programm and include windows.h, i get an error saying that it cannot find windef.h can any body tell me wat happend to it and if i never had it to start out with is there a way i can download it or get it back   thanx, jt Ack, scratch that, read. I just noticed what you wrote. It seems as if you are trying to use the windows libraries and headers by copying the files from one place and putting them elsewhere. That wont work. You need to get the PlatformSDK and install that and then set the paths according to http://msdn.microsoft.com/vstudio/express/visualc/usingpsdk/default.aspx ...Show All

  • Visual Basic VB project published item does not work because of wmppia.dll

    Hi, I have have developed a VB program, works fine on development environment. It also works fine on user machine if I use bin directory. However, if I publish the program and run the setup.exe on user machine, it gives following error... "Unable to install or run the application. The application requires that assembly wmppia version 9.0.0.3095 be installed in the Global Assembly Cache (GAC) first. Please contact your system administration." User machine has .NET framework 2.0 installed. Please help me, Thank you, Shalin. Hi Spotty, Thank you for your response. Now I realised that I can not use ClickOnce, I have to go for Windows Installer. Can you send me a link where I can ...Show All

  • .NET Development dataset.merge .NET 1.1

    Hey guys Got trouble with dataset.merge in .NET 1.1 . I did 8 query with the sql database and tried to merge those tables to one dataset. it simply doesn't work. It gets 7 datatable and doesn't merge the 8th one. I wrote a simple for loop and it does the same. mycode: DataSet dts = new DataSet(); for (int i = 0; i < 10; i++) { DataTable dt = new DataTable(); dt.TableName = "table"+i; dts.Merge(dt); } dataGrid1.DataSource = dts; Result: adds table0 till table6 and after tht doesn't add anymore tables. I display the results on a datagrid. Please help!!! is this a bug Or constraints on DataSet.Merge ...Show All

  • Visual Basic Drawing is not a member of System?

    I have a namespace called "Jimmyware.GameLibrary" which contains a form called "Game". Apparently Drawing is not a member of System. I have ensured that System.Drawing is referenced in my app, and I added "Imports System.Drawing" at the top of my code, and it still doesn't work!!! What's going on I have checked in My Project, and System.Drawing is definitely imported. The code: Namespace GameLibrary Public Class Game Inherits Windows.Forms.Form Public Sub New ( ByVal FullScreen As Boolean ) End Sub Private Sub InitializeComponent() Me .SuspendLayout() ' 'Game ' Me .BackColor = System.drawing.color.black '<--Drawing is not a ...Show All

  • Windows Live Developer Forums Developing Messenger bot

    Hi. I'm developing Messenger bot. It will be based on .NET 2.0 and be using DotMSN library to handle messenger protocol. I'm trying to enable activities handling in this bot. Right now I'm able to get data from activity sent using SendData method of Channel. But I need to send data to activity client from my bot. Could anyone help on this I've sniffed messenger packets and it seems that there is direct TCP connection for data exchange. Is there any docs on that protocol Thanks. sir i am devloping chat server application using java and j2ee ploatform .it should communicate with yahoo chat server with our yahoo login and password .it should login toyahoo messanger. it sent automati ...Show All

  • SQL Server SQL Server Studio Management Express Unable to do Import/Export

    Hi All Expert there, May i know is that a Free tools that can do the Import/Export from a SQL 2005 Express. Thanks The Import/Export wizard is not included in Management Studio Express at this time. We are researching this for a future release of SQL Express. BCP is installed with SQL Express, which allows for bulk load of a limited number of file types, you can find more aobut BCP in the Books Online. I have not research third-party tools to accomplish this, free or otherwise. Regards, Mike Wachal SQL Express team ---- Check out my tips for getting your answer faster and how to ask a good question: http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=307712&SiteID=1 ...Show All

  • SQL Server SQL Statement gets truncated at 7459 characters.

    Hello, I am debugging a SQL Server 2005 stored procedure that creates and executes dynamic SQL statements. One of these statements fails because it has a length of 7811. The statement is created in a varchar(8000) or varchar(max) and executed with exec(@variable). Apparently, the system tries to execute only the first 7459 characters of the command string, and it fails. Obviously, the query can be redesigned in a better way, but they are complex queries and there are hundreds of them, and i do not have the time to do it. The SQL Server documentation says that the length of a varchar can be up to 2^31 characters with varchar(max) declaration, and I hope for a way to enable these long queries to work. Thank you in advanc ...Show All

©2008 Software Development Network