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

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

AngeloB

Member List

Cleverp
Boricwa
yuvals
Tryston02
Rey Ramos
lalithak
Andras82
gerbilferrit
SLaquiche
cds_ks
Benny Tops
JimKennelly
CorkChop
Jason Perez
sudeepunnikrishnan
kkang
Tod1d
bettoni
Logicboy
Mark Rejhon
Only Title

AngeloB's Q&A profile

  • Windows Forms Full-Trust and Internet Zone Workarounds?

    Hi all, My application requires full trust, but it's just a freeware application that I want anyone to be able to install from my web site. At this point the only way to install it from my site is to add the site to your "Trusted Sites" in IE. This, obviously, is less than ideal for Joe User. Is there any way we can get around this Could I, for example, allow them to download a copy of the deployment files and run them from a local folder, then ...Show All

  • Visual C# Advice needed please - How to display an image from a file quickly?

    I have a project that displays DPX files (an image file format common in digital film) in a PictureBox on a form.  It works but takes several seconds to display a typical image that is 2048x 1556 pixels.  Not so bad but .NET can display a similarly sized TIFF file in under a second. My display routine is primitive it just reads each 32 bit word from the file, unpacks the three 10 bit RGB values to 8 bits and finally sets the pixel valu ...Show All

  • SQL Server File..Save Copy of <package file> As... not available

    According to the help for SSIS, one method of deploying an SSIS package to a SQL Server,  http://msdn2.microsoft.com/en-us/library/ms137565.aspx, is to use the File...Save a Copy of <package file> as... menu option.  I don't have that menu option at all.  And yes, the package is in focus.  My save menu options are simply; Save Selected, Save <package file> As... and Save All. I am using Version 9. ...Show All

  • Visual Studio Express Editions recompiling old legacy c files on VB Express

    I am new at this, so excuse my "dumb question" I have some old legacy files compiled using MS-Visual C++ 5.0 Project settings, and MS-Visual C++ 5.0 Workspace settings. When i try compiling with express i get errors that has to with "windows.h" file.  What do i do Don't know if you have a typo and are in the wrong forum, however if you are trying to comile c++ files you are not going to do that with VB exp ...Show All

  • .NET Development Get connection string from app.config file

    How do i read my connection string from app.config file I also know that connection string is saved in settings.settings, but i don't know how to get value from there either (I found info about this only for vb, not for c#) Here is the app.config file: < xml version="1.0" encoding="utf-8" > <configuration>     <configSections>         <sectionGroup name="userSettings" type=" ...Show All

  • Software Development for Windows Vista Statemashine workflow - Set State

    Is it possible for a state mashine workflow to have multiple states at the same time Hey Jon, I'm doing exactly this - with Cancel/OnHold/Pause etc. as being Events part of the parent state. From my understanding and what I've noticed is that in the State machine, there is only one 'Active State' - you can enumerate up the 'control tree' to find 'outer states' When the WF is sitting there waiting for an Event, we would like to kno ...Show All

  • .NET Development Activator.GetObject and client-activated object mutually exclusive?

    Hi all, From reading the documentation and articles, it appears that when the remotable type is configured as a client-activated type, Activator.GetObject cannot be used. I tried creating an instance of a client-activated remote object using Activator.GetObject. I started from a working implementation of a Singleton to a client-activated type. I can get a proxy, but every call to a method on the proxy results in a "Requested Service not found" e ...Show All

  • Windows Forms Embedded Component-Properties in Controls

    Hi there, I'm trying to write a slider control which should have more than one scale. So I wanted to write an own component class for the scale, which gets instantiated for every scale in the slider control like this: public class Scale {   pr ...Show All

  • Visual C++ Another conversion problem for me. Can someone tell me how to convert from char* to LPCTSTR?

    I want to see what's in variable "path" after several conversion the messagebox still not working right. I'm in vs2005, using only C++/COM window library (no mfc, clr). Thanks in advance for your help. _variant_t varDomain; hResult = padsRootDSE->Get( L "defaultNamingContext" , &varDomain); bstrDomainPath = _bstr_t( "LDAP://" ) + _bstr_t( varDomain ); bstrDomainOnly = bstrDomainPath; ...Show All

  • Visual Studio Express Editions C++ .net express.. Now what?

    First of all.. Thanks to anyone who is willing to toss me a few seconds of their time and help to give me a bit of direction.. I am on a quest to learn the C++ language and write applications.. I have been cruzing web sites and book stores picking up every bit of info I can. I am trying to see a clear way into this massive forest of abbreviated technicalities. .Net ASP, SQL, CRT, ALT, SCL, MFC  and on and on and on. Behind each ch ...Show All

  • Visual Basic Number of controls in a form?

    IS there any way I can count how many controls are in a container or in the entire form You can use the count property to count the controls in and forms present The next example determines the number of controls on a form and a report and assigns the number to a variable. Dim intFormControls As Integer Dim intReportControls As Integer intFormControls = Forms!Employees. Count intReportControls = ...Show All

  • SQL Server Missing image in PDF Export version

    I have an ASP.NET application that passes stored procedure params and generates a dynamic report with one or more Image controls. The image paths are created with absolute references to their locations in a separate web directory, the one that the .NET app calls the report from. So the stored proc returns a string similar to http://mysite.com/myimage.jpg , and with an expression I wrote in the report designer, I assign this to the Image contr ...Show All

  • Visual Studio 2008 (Pre-release) FindResource is throwing an exception

    The documentation says that FrameworkElement.FindResource will return null if the resource is not found.  But if I search for a style that doesn't exist, I am getting an exception thrown: ResourceReferenceKeyNotFoundException.  This is a huge performance drag in this particular application, where I look for a named style that is usually not present to see if the default style has been overridden. I don't see any "HasResource" or "TryFi ...Show All

  • Visual Studio Express Editions Confused about method returns and params

    Howdy folks, Newbie comin' through... I'm confused about when a method is returning a value. I'm also confused about when a method is taking in a parameter or passing out a parameter. I understand that when a method name is preceeded by the "void" key word, it is not returning anything. However, when a method is preceeded by the keywords "string", "int", etc. it is returning a value of that type. my ques ...Show All

  • Visual Studio Express Editions "Microsoft SQL Server" choice missing in Data Source Configuration Wizard

    I'm a newbie trying to learn VB using VB Express Edition, so I bought the ADO.NET 2.0 Step-by-Step book from Microsoft Press and installed the sample databases, etc. The very first lesson involves using the Data Source Configuration Wizard. In the "Choose Data Source" form, the book shows five possible selections. My system only shows "Microsoft Access Database File" and "Microsoft SQL Database File". I need &quo ...Show All

©2008 Software Development Network

powered by phorum