Software Development Network Logo
  • Smart Device
  • Visual C#
  • Visual FoxPro
  • Architecture
  • Windows Live
  • Windows Forms
  • Visual Basic
  • Visual Studio
  • Visual C++
  • VS Team System
  • VS Express Editions
  • Windows Vista
  • .NET Development
  • SQL Server
  • Game Technologies

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

amosz42

Member List

Alma S.
Ree84
JWTK
Emadkb
roeltherule
BatchBoy
sroughley
Jenga
antleite2001
MuratCapanoglu
M. Paydar
Alexander Klizhentas
heavenly
John Carroll
Alan Reed
Will87
floodzhu
Zonram
Tim862000
pguerette
Only Title

amosz42's Q&A profile

  • Visual Studio Express Editions How to Receive an Optimal Response to Your Question

    Asking a good technical question is a skill and an art and it’s a valuable skill to acquire. Your question and the information you supply will hopefully help you receive a rapid response and what is often unseen is that it can help others. There are things you can do that will maximize the help you will receive and maximize the value to others. Often, when you have to ask a question, you’re frustrated and things aren’t working as you think they should work. We’ve all been there. So it’s time to take a deep breath, step back and formulate a description of your problem that people will understand. One of the most import ...Show All

  • Windows Forms How to Force Push/Pull on Bound Data Source

    How can I force my form to re-read fields from the bound object In my case, I have a form that uses simple binding to bind to properties on an object.  I'm using the Format/Parse events to manage data flow in/out of the object.  Everything works very well. Sometimes, I want to trigger the form to re-read (get properties) from the object (i.e ...Show All

  • .NET Development ssl hell

    I've made a self signed certificate and private key to use for ssl If I go by browser : no problem. When I want to do add webreference I get following exception: (it opens the page in the left window and in the right window the exception: The document at the url https://deftje/services/service.asmx was not recognized as a known document type. The error message from each known type may help you fix the problem: - Report from 'https://deftje/services/service.asmx' is 'The document format is not recognized (the content type is 'text/html; charset=utf-8').'. - Report from 'DISCO Document' is 'There was an error downloadi ...Show All

  • Smart Device Development How to make sure I am working with NETCF SP3?

    Hello, I'm rather new to Visual Studio and especially SmartDevice developing. I have a decent knowledge in Borland Delphi, and i'm trying to apply my skills in .NET developing using Visual Studio 2003. Here is the brief explanation of a problem I've run into: In my application I'm using a listbox, which stores some collection items. Anyway, I want to trap the keys, pressed while listbox is focused. In the event list there is no such an event. I read that in base version of Net CF just a small amount of the controls are supplied with the OnKeyDown/OnKeypress/OnKeyUp events. But it was also mentioned that in .Net CF ServicePack 2 all the c ...Show All

  • Visual C# Visual Studio's propertygrid - How do I reset it?

    Hi there, As I'm new to the game of C# and visual studio, maybe the question is the wrong place or the answer is so easy it's emberassing, but still... (I'm working in Visual studio 2005 beta2 - C# ) I'm building an VS add in which uses Visual Studio's propertygrid window to display stuff for my class-instances. object [] a = new object [1]; a[0] = aObject; ParentToolwindow.SetSelectionContainer ( ref a);   That works like a charme... but... I can't seem to figure out how ro 're-set' the property grid. I've tried stuff like (no success)   ParentToolwindow.SetSelectionContainer (null);      a[0] = ...Show All

  • SQL Server Yukon SP performance issue

    Hi all, I'm using the next-to-latest Yukon Enterprise beta. I have an SP with a complex query and have discovered a strange performance issue. My query includes:   * 8 variables, 3 from the SP parms and 5 locally defined   * a .NET UDT I have a fairly simple schema: 9 tables of which four are accessed in the query. When I call the SP, it takes ~16s to execute. However, if I replace the parms with static values, it takes ~0.1s! What's going on Please help. Rod O. In general, using local variables in a query condition causes the optimizer to guess selectivity rather than use accurate estimates. T ...Show All

  • SQL Server Enumerating Role Permissions with SMO

    Hi, I am attempting to enumerate role permissions using SMO. I can enumerate the permissions on a atbel, view, or store procedure no problem. When I try to enumerate the permissions that a role has I get the following error: 'Operation not supported on SQL Server 2000' Can anyone help me in sorting this out. I had the permissions enumerated in DMO but I just can't seem to get it to work in SMO. Thanks, James Hi, I am connecting to SQL2K. I have not problem getting the permissions on a table, view, stored procedure, or function. Its only when I try to get the permissions for a role or user ...Show All

  • Visual Studio Creating Package Installer

    I have created package installer for VS2003. And used Orca to edit the msi and include 'devenv /setup' at the end of installation/uninstall process. I'm migrating my package to  2005 and wanted to see if 2005 had a mechanism to configure 'devenv /setup' from setup project instead of editing the msi. Any ideas  or thoughts on how to include it from the setup project will be appreciated. (I dont want to edit the msi built by the setup project.) Cheers, Naga I'm assuming you're asking about Visual Studio's installer projects -- in which case, the answer is no, you need to add a custom action to execute `devenv /setup` a ...Show All

  • Visual Studio Tools for Office .net COM Add-in for Excel - cannot find Extensibility Projects

    Hi I have installed Visual Studio Tools for Microsoft Office after installing vb.net and Microsoft Office 2003 respectively. I cannot find the Extensibility Projects folderin the Other Projects folder. Please would someone help. Thanks Murray  Hi Misha Thanks for the last response. The thing is that I want to sell my Add-In to users of Excel 2000 and onward. I would also like to try and target Excel 97 users if possible. So how do I create and Add-In to manipulate my VBA code that can be used in Excel 2000 and Excel 2003 (and at a stretch in Excel 97). It seems that I massive part of my market lies ...Show All

  • SQL Server Cannot find PInvoke DLL SqlCeMe30.dll

    I create a smll app that should created a database in the hand held, it compiles without problem but when I debugg it I ge the error message: Cannot find PInvoke DLL SqlCeMe30.dll I found such dll to be located in:C:\Program Files\Microsoft SQL Server 2005 Mobile Edition\Device\Mobile\v3.0\wce500\x86 among other folders. Why then is "not found" Maybe this will be helpful: (LoadLibrary) - http://forums.microsoft.com/msdn/showpost.aspx postid=1349826&siteid=1&sb=0&d=1&at=7&ft=11&tf=0&pageid=1 ...Show All

  • Visual C# display webpage in windows form

    i want to display certain webpage in my windows form, the code i used is as follow.... private void button1_Click(object sender, System.EventArgs e) { object Zero = 0; object EmptyString = ""; string webpage=" http://bursa.n2nconnect.com/BursaStockSearchAll.htm "; axWebBrowser1.Navigate(webpage, ref Zero, ref EmptyString, ref EmptyString, ref EmptyString); } if i use the above coding, it will display the webpage in my windows form, but how can i disable all the button so that user cant click any button on the displayed webpage or how can i disable the displayed webpage or to make it readonly is there suc ...Show All

  • Windows Forms Quick Survey- Why is there such a small presence in these forums?

    If anybody has any comments on why there are so few questions that are asked here, I would like to start a discussion thread about it. I think it is because, from my experience, it seems to take a while for posts to be approved( which is probably the case bc there are so few posts and moderators arent as likely to constantly check for&nb ...Show All

  • .NET Development Connection string for SQL Express

    I'm new to SQLExpress and 2005 of .net. When I use the code below I get multiple errors depending on various conncetion strings. The database is not read only, at this point I'm just trying to open the db. Currently I get the error below: System.Data.SqlClient.SqlException was caught Class=14 ErrorCode=-2146232060 LineNumber=65536 Message="CREATE DATABASE permission denied in database 'master'. An attempt to attach an auto-named database for file C:\SQL Server 2000 Sample Databases\NORTHWND.MDF failed. A database with the same name exists, or specified file cannot be opened, or it is located on UNC share." Number=262 Proce ...Show All

  • Visual Basic Relase the Fix for Visual Basic Compiler Error &H8013141e&

    Hi all i just want to know when is going to be released the fix for visual basic compiler error &H8013141e&   this is already reported in the microsoft productfeedback site. i think this is a very urgent patch that must be released asap and please do not repond that i should go back to vs.2003 because i have lots of code developed in VS 2005 to framework 2.0 ..   JSB PS: this error pisses me of, i need to restart VS.IDE every 5 minutes. i think this is too bad for a recent relesase product ( its full of Bugs ).   I am having the same problem. Happens in both Visua ...Show All

  • Visual Studio Team System Build Automation: Public and Private Project Components

    Scenario * Our website is currently hosted externally. * We host (internally) a portal that our members can log into to access a number of business related services. * Other organizations with similar business interests have bought into our portal; their version of the portal has the same feature set but a different feel (their own logo, colors, etc.).  To accomplish this we simply have replicated the portal and modified images, text, etc. where required. * Along with migrating to Visual Studio 2005, Team Foundation Server, etc. we will be bringing our website in-house and integrating it with our portal.  For obvious reasons, we ...Show All

©2008 Software Development Network