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

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

daveiso

Member List

Chris Beiter - MSFT
Eagle 101
C#noob
Tzu-Yie
NextXtreme
Jon M.
Syed Faraz Mahmood
Al Christoph
KentaroM
JoeR1
nobodyman
Buddy
Rohit Ghule
TkNeo
aztec2_step
Sam4u2e
Microbert
Mark Jefford
IXOYE333
AlexBB
Only Title

daveiso's Q&A profile

  • Visual Studio Go to Definition

    I recently had to reinstall VS2005, and now in my right click menu I no longer have the option 'Go to Definition' I've been searching all of the options and customizations, but could not find out how to edit the right-click menu. You can reset the toolbars by unloading all add-ins and then going to Tools, Customize menu, Toolbars tab, select the desired toolbar and click the Reset button. You can also use the Tools, Import and Export Settings menu to reset to a desired environment Finally you can also open a VS 2005 DOS command prompt and type: devenv.exe /setup At least with VS.NET that resets the IDE too. ...Show All

  • SQL Server Newb question

    If I am using Ado.Net from a .Net Class library hosted outside SqlServer to do Sends and Receives do I have to use anything else other than queues The reason I am asking is because I already have an abstraction layer for a couple of our queueing systems and I was hoping to put SSB in there as well but the abstraction layers' primitive is the Queue not Conversation/Dialog/Service, etc. Thanks Costas Uncomment the begin dialog lines. Use the @service parameter as the to service in that statement. That will allow you to begin a dialog and send a message in your stored proc. This proc can be called from ADO.Net. ...Show All

  • Visual Basic "Language neutral" property in file Version Tab

    How do I set the language property on a DLL I go into the Project Properties -> Assembly Information... button -> Neutral Language dropdown box and set it to English (United States). After I build the project/solution, when I right-click on my DLL and go to the Version Tab, the Language property always says "Language Neutral." Please help, I'm getting frustrated with this. :( I also look forward to find a solution to this problem. I just tried that C# behaves in the same way, language is always neutral. Dropdown list in Assembly information has no effect. Sometimes I've opened my EXE with hex editor and changed language code manually. This is the only solution I know. Hopefully somebody k ...Show All

  • Smart Device Development MainMenu

    Hi there, i have a form with a MainMenu, and i'm trying to solve 2 problems: 1) if i show a MessageBox, closing the message box, the menu disappears. Solution: whenever i close the MessageBox, i do a kind of a "reset" to the menu: - this .Menu.Dispose(); - this .Menu = this .mainMenu; Well, it works, but is it a good solution 2) i click on the menu, it opens the menu items, and then when i click one of the items, i have a event handler that makes something. What i need is to close the menu immediatly after i click on a item. Solution: (i've tried doing the same thing i did above, including those lines in the beginning of the event handler, but it doesn't work.) Any ideas Thanks in advanc ...Show All

  • Visual Studio Express Editions Problem in MAPI.....

    Hi, I am using MAPI components to for automatic e-mail notification….the problem with tat is every time b4 an email is sent, a window pops up saying tat [ A program is trying to send an email from ur account....do u want to continue )…. N d user has to manually click yes to send a mail……is there neway to avoid dis……I read tat it can be avoided by installing “ClickYes” s/w…….but I would like to know is there any other way to avoid dis w/o installing any s/w It would be of gr8 help if you can provide a solution for my problem. Thanks in advance, Prakash James. Don't use MAPI..because it uses the default email client to send mail...instead use the system.net.mail names ...Show All

  • .NET Development c# ms access problem

    Dear All. I have mdb file (office 2003) with table called table1 (F1 int primary key, F2 text). and below is my c# code: private void FM_Main_Load( object sender, System.EventArgs e) { System.Data.OleDb.OleDbConnection Conn = new System.Data.OleDb.OleDbConnection(); Conn.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + Application.StartupPath + "\\db1.mdb"; System.Data.OleDb.OleDbDataAdapter DA = new System.Data.OleDb.OleDbDataAdapter("select F1, F2 from table1", Conn); DA.Fill(DS); // DS is the typed dataset with structure as table1 } But when I run my application it gives below error: "The Microsoft Jet database engine could not find the obj ...Show All

  • Visual C# PlaceHolder Image

    I've created a byte array: byte[] bytePic = (byte[]) chartSpaceName.GetPicture("gif", 600, 300); I'm wondering how to put this on my webpage without having to save it as a .gif file. The byte array is created dynamically so it will always be different so I made a placeholder. I'm not really sure what to do from there on... I know I could do: PlaceHolder.Controls.Add(new LiteralControl(strPath)); but that involves saving the gif file. Any ideas Welcome to the MSDN Forums, this forum is not reserved for ASP.NET related question. We've got forums.asp.net for those question. Unfortunatly I'll give it a try to help you. You should create on page that can give dynamicly generated images. The cod ...Show All

  • Visual C++ How can I add a bitmap(png fomat) into 3D view( OpenGL)?

    How can I add a bitmap(.png fomat) into 3D view( OpenGL) If you have some source code for this, please give it to me.   Thank you very  much! For general how to issues, please use the newsgroups at http://msdn.microsoft.com/newsgroups OTP Thanks, Ayman Shoukry VC++ Team ...Show All

  • .NET Development XML serialization with asynchronous callback promblem

    hello guys, im developing a windows application that uses asynchronous callback as network communication technique with xml serialization for sending complex objects over the network. the problem is that at receiving the buffer to be written to the file is never written fully and in correct format. its always cutted from the middle and so the serialization always fails. any clue thanks Please describe your scenario. What Async model do you use: is it old BeginMyMethod()/EndMyMethod pair or the new even-based one (MyMethodAsync(..)) Which component writing to the file Is it your client code Which serialization fails What exception do you get (with full stack info) ...Show All

  • Commerce Server Root Category Ranking Issue

    Hello, I'm having an issue with the .GetRootCategory method call. Here's the situation. Before I call the .GetRootCategory I set a where clause and pass it along. The method doesn't return me any results. But when I don't include the where clause I get expected results. Here's what I did (The where clause is included): 1. The current catalog has ranks for all root categories. So I created a new category with no rank and boom that new category was returned. If I set a rank to that category; it is not returned anymore. I've traced the issue in the ctlg_FillCategoryDescendants sproc: Here's the code. IF @oid = -1 BEGIN if (@fVirtualCatalog <> 0) BEGIN -- Insert the Categorys first-level descendents in the #Desc_Oids ...Show All

  • SQL Server Problem with the ”SQL Mobile Replication”

    Hi, I cannot start the Replications on SQL Server. If I try it, the following message is indicated: Access to the path '\\[servername]\repldata\unc\[servername]_[database]_PUB\20070208114424\' is denied. Although there are sufficient rights of access on the repldata - folder. In the SQLCESA30.LOG-file in replication-folder the following is located: 2007/02/08 11:42:37 Thread=13AC RSCB=3 Command=SCHK Hr=80045003 ERR:Initialize failed for DistributorSessionID = 0 2007/02/08 11:42:37 Thread=13AC RSCB=3 Command=SCHK Hr=80045003 The initial snapshot for publication 'PUB' is not yet available. Start the Snapshot Agent to generate the snapshot for this publication. If this snapshot is currently being genera ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XACT - System.TypeInitializationException on start-up

    Anyone else seen this problem starting up XACT It worked in the past but I haven't used it for a few weeks. In the interim, I've installed the Vista SDK, .NET Framework 3.0, WF and WCF extensions for Visual Studio etc. I've uninstalled all these components and reinstalled GSE and Visual Studio Express but still get the same exception on start-up. In the debugger, I see Additional Information: System.Net.Dns threw an exception. I built a quick program to check I could use this class and it worked OK. I'm going to post a duplicate of this question on the XACT forum. Help ! Cheers. Just to close this thread down, I 'fixed' the problem by uninstalling the .NET Framework 1.1 and .NET Framework 2.0 and .NET Framework 3.0 and V ...Show All

  • Visual Basic VB & Office 2003/2007 References

    This may be the wrong forum to post this in; if so, please let me know where I should ask this question. I'll start by saying I'm new to Visual Studio 2005 and in many ways,VB programming altogether so if I'm way off base here, please let me know. I have designed a program that gathers data from Active Directory and dumps the information into an Excel spreadsheet. The program works fine on my development computer which is running Office 2007 Beta 2 and another system which also has Office 2007 on it. In the program I have referenced the COM object " Microsoft Excel 5.0 Object Library ". When I try to run the application on another computer that is running Office 2003, the program will not run. My understanding of referen ...Show All

  • .NET Development Problems with SMTP Mail on Port 25

    This is a very strange problem... I have a Windows 2003 Server hosting a C# application, which is scheduled to run on a semi-frequent basis. I want the application to automatically send out emails, containing data collected by the C# application. So I set up the standard IIS SMTP server on the same machine. I use the System.Net.Mail namespace, and the following code to send an email: MailMessage message = new MailMessage(from, to, subject, body); SmptClient client = new SmtpClient("localhost"); client.Send(message); Only it doesn't work. An exception is thrown, with inner exception saying "Unable to connect to the remote server." To simplify matters, I deactivated Windows firewall - and have no other personal firewal ...Show All

  • .NET Development Oracle command cancellation

    Hello, Does anybody know how can i terminate a long-lasting query in Oracle 9i using OracleCommand of Oracle.DataAcess dll Has it got a sort of "Cancel method" yeah OrcaleCommand has a cancel method. using (OracleConnection connection = new OracleConnection(connectionString)) { OracleCommand command = new OracleCommand(queryString, connection); command.Connection.Open(); command.ExecuteReader(); command.Cancel(); } ...Show All

©2008 Software Development Network