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

Software Development Network >> Eli Gazit's Q&A profile

Eli Gazit

Member List

gchornenkyy
David Anton
JStalnaker
uoknor
wim_
Klaus Löffelmann
s2631
weirdbeardmt
Hardik Mehta
Anindya Maiti
Zarryn
MisterChief
2theLake
dougMurph
DaveGoliath
wpfnewbee
Leejo.Paul
J.H. Chrysler
George Hernandez
gary.ruan
Only Title

Eli Gazit's Q&A profile

  • Visual Studio How can I sign my VSI package ?

    I created a project template, a couple of Item Templates and some code snippets to make it easier for developpers to use our framework. I packaged them into a VSI file which works perfectly. During the install I get a warning that the VSI is not signed. I can't see any publisher information in the Visual Studio Content Installer. I would like to sign my VSI but I can't find a way to do this. extra info: http://msdn2.microsoft.com/en-us/library/ms185314.aspx thanks in advance First, you should download and install the powertoys from http://workspaces.gotdotnet.com/ccipowertoys . There is a known bug in the signing process that will no ...Show All

  • Visual Studio 2008 (Pre-release) Porting/debug woes

    I got past the compile errors from the move to Nov bits, but things are not all there that were there in the application using the Sept bits.  Controls are missing that are in the XAML file. It looks like my immediate issue is the control library assembly finding the resource dictionary.  In the old template the file generic.xaml contained the resource dictionary for the assembly.  In the Nov bits the assembly attributes for locating the resource dictionary have changed to using ResourceDictionaryLocation.  Apparently the file name has changed or I am missing a piece to locate the file.  I tried to create a new contr ...Show All

  • Visual Studio Team System Getting an Error while acessing Work items in MSProject.

    Hi, We installed VS 2005 April CTP with team foundation client  We can able to access the team projects in vs 2005, team explorer. In MS Project, we could able to access the team projects, on selecting one of them and trying to retrieve the work items we are getting an error "Unable to retrieve data from the work items database server". This works with the TFSSETUP user, but not with another user say "Developers".  we have added the user "Developers" in the TFS Server-> Permissions and given him all permissions. This user was also added in the Active Directory and has all the groups which the TFSSETUP h ...Show All

  • .NET Development Remoting error over Http channel (401) Unauthorized

    Hi ... I'm trying to implement Remoting with an Http Channel, to do this, I add a Remoting.config file to a WebServer Application and on the App_Start Event I run the following line : Dim strRemConfig As String     strRemConfig = HttpContext.Current.Server.MapPath("./Remoting.config")     RemotingConfiguration.Configure(strRemConfig) And my Remote Object is started !! I have a test client, to check the functionallity, and It only works when the Virtual Directory is configured with an Anonymous Access in the Directory Security Options. (uses the IUSR_XXX user). but when I change to the "Integrated Windows Auth ...Show All

  • Visual Studio Express Editions How to turn off Overflow Checks?!?

    Is there any good reason for not having the ability to turn off overflow checks in VB.NET Express I know that this is an "advanced" option, but lots of common code code doing some binary operations will break and not be usable for beginners to run and study . That's pretty bad IMHO. There's the workaround of course by putting the "RemoveIntegerChecks" XML element in the vsproj file manually, but why all this pain, Microsoft, why Thanks for listening! Go ahead and purchase the more advanced IDE: Standard or professional if you really need this feature. VBExpress is a tool designed for beginners, who may n ...Show All

  • Visual Studio Persist paramter values after initial request Visual studio 2005.

    I have a report that requires parameters. After the intial prompt for values, the report appears properly. If you then click on any control, the report appears with no data, as if the paramters are null. I am persisting the report document by using a session variable. I am loading the session variable in the page_init event. I'm not having any trouble persisting the database connection information using this method, so I wonder if there is some other problem happening with the parameters. I'm using Visual Studio 2005 Version 8.0.50727.42 (RTM.050727-4200), .NET Framework Version 2.0.50727. Thanks for any help ...Show All

  • .NET Development SSL/TLS exception when using HttpWebRequest with client certificate

    Hi, I wrote following code to call a aspx page in code (from another aspx page): HttpWebRequest httprq = ( HttpWebRequest ) HttpWebRequest .Create(uri); string certificateName = "SoapProxy2" ; X509Store store = new X509Store ( StoreName .My, StoreLocation .CurrentUser); store.Open( OpenFlags .ReadOnly); X509Certificate2Collection certificates = store.Certificates.Find( X509FindType .FindBySubjectName, certificateName, true ); X509Certificate certificate = certificates[0]; httprq.ClientCertificates.Add(certificate); httprq.Method = "POST" ; httprq.ContentType = "text/xml; charset= ...Show All

  • Visual Basic WebBrowser.DocumentText vs. View Sources right click mouse on HTML page with frames

    I use WebBrowser control (VB.NET 2005) in my winform application. It work fine. Then I open some website in code "MyWebBrowser.Navgate(strURL)" with HTML page with frames. If I right click on page and select in context menu "View source" in default notepad window I see full HTML code of page. If I use Me.TextControl.Text = MyWebBrowser.DocumentText, in Me.TextControl.Text I can see only small html frame code. How to receive in Me.TextControl.Text full HTML code from frames of HTML page You can get the frames like this: HtmlDocument doc = webBrowser1.Document.Window.Frames[0].Document;   Unfo ...Show All

  • .NET Development ASP.NET PDF Document Library Online

    Hello. I need to develop a library of PDF files, organized into several projects and, in some cases, sub-projects. The specification is that ASP.NET will be used to develop this web application and that it will be accessible in both Internet Explorer and Firefox. I have never used ASP.NET before, so I need any help, hints, or references that you can give. I am especially confused by how to link the database into the ASP page. Thank you in advance for any help. It is more difficult to write the code in ASP because there is no server control like a listbox. But you can write a code that generates a loop of ADO recordset data rea ...Show All

  • Visual Studio Express Editions how to encrypt/decrypt?

    Hello, I was wondering how I can encrypt/decrypt text, as I am building a program that stores very personal information. Is this possible in .NET EE Any help would be appreciated. Grtz, Tom. With .NET, anything is possible What you want to look at is the System.Security.Cryptography namespace. You can look through pages and pages (and pages) of documentation on how to encrypt/decrypt using the .NET Framework, or you can use this handy little Encryption Library from the Code Project: http://www.codeproject.com/dotnet/SimpleEncryption.asp I used this library in one of my projects recently and it is great. The documentation will ex ...Show All

  • Visual C# using Microsoft.Samples.DirectX.UtilityToolkit;

    I trying to write an application in Visual C# with the DirectX SDK. The application should use various controls so I want to use the namespace: using Microsoft.Samples.DirectX.UtilityToolkit; when compiling i get the the error that an assembly or reference is missing. However I can not add it as a reference because I can not find it. Shouldn't there be a dll with the name  Microsoft.Samples.DirectX.UtilityToolkit. What shall I do te be able to use the namespace With the latest Managed DirectX SDK, you can use the empty project that you would have for VS 2003 in VS 2005, just make sure you use the n ...Show All

  • Microsoft ISV Community Center Forums has anyone done the tests at all?!

    hi, just wondering has anyone done microsoft ISV software tests   i'm a one-person ISV and i'm interested to hear from others who have been through the testing process.  i've been on the ISV empower program for the last 18 months and i'll be taking my tests shortly.  i intend to apply under the "platform" tests, doing the windows client test, and web services + .net framework.  i read the instructions from the testing company VeriTest and it sounds very basic to be honest... don't crash the system, don't delete files without permission etc.  etc.  i was expecting my source code to be FxCop'd but it see ...Show All

  • SQL Server The target service name could not be found.

    Hi : I am creating a queue application using Service broker. I was able to send and receieve messages between 2 databases in the same instance. Now I am trying to communicate b/w 2 different instances. I am getting the following error... The target service name could not be found. Ensure that the service name is specified correctly and/or the routing information has been supplied.. The routing informations is as follows DROP ROUTE SERVERROUTE CREATE ROUTE SERVERROUTE WITH BROKER_INSTANCE = 'D6F1721F-E7A2-4497-8890-FD4C2AAD98FE' , SERVICE_NAME = 'SERVERSERVICE' , ADDRESS = 'TCP://10.23.3.12:602 ...Show All

  • Visual Basic dataset won't save back to database

    hi all i have created an SQL db containing 1 table within VB 2005 express. i then created a datasource to connect to the DB. A dataset was then created. i dragged the dataset onto my "Form1.vb" and bindingsource, tableadapter and binding navigator were then created. i then pressed f5 to run. I can nvavigate through the records and create new one's but when i click on the save icon and then exit, the new records are not written back to the DB. any ideas Hi I already made this experience. Problem is that datasets are copies of database files so when You press f5 to run app it does not save to the original database the records. B ...Show All

  • Windows Forms XML Data Export to an Access Database

    I have an XML file being view to dataGridView in a Windows Form application. What is the best way to get the data in the dataGridView into the access database private void button2_Click( object sender, EventArgs e) { string FileLocation = "C:\\POINTEXP.xml" ; pointDataSet.ReadXml(FileLocation); dataGridView1.DataSource = pointDataSet; dataGridView1.DataMember = "PrimaryReportData" ; } PaulDR ...Show All

©2008 Software Development Network