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

Software Development Network >> Karlo S's Q&A profile

Karlo S

Member List

Anthony PPC
Richard Highton
gbshahaq
kalinkula
uclimng
ducks
Bob B.
Sathya_Subbu
Nils Nordenbrink
djMaurice
Srimurugan G
Andy Anderson
trofimich
Tayron
Docluv
Linda
RenaudBXL
IXX.SE
peter_griffin
paulxray
Only Title

Karlo S's Q&A profile

  • Visual Studio Getting RID of Just-In-Time debugger

    Hello all. I installed Visual Studio, and had no problems. Except one. The Just-In-Time debugger. It seems to come up all the time now, and it has broken Winamp AND Cakewalk SONAR 5. I tried disabling it in Visual Studio's options, but that doesn't stop the pop up and the subsequent shut down of the program (which did NOT happen before). Any ideas I am having the exact same problem. I removed the visual studio, but still getting errors from JITdebugger. Some people suggest to change something in internet explorer, but the problem doesn't o ...Show All

  • Visual Studio Express Editions Visual C++ 2005 Express Edition trouble

    I had the beta version and uninstalled it as directed on the site, seemingly without problems. I then installed the C++ Express Edition, again without problems. Though when I load it I get the error: Package Load Failure Package 'Visual Studio Explorers and Designers Package' has failed to load properly ( GUID = {8D8529D3-625D-4496-8354-3DAD630ECC1B} ). Please contact packe vendor for assistance. Applicaiton restart is recommended, due to possible environment corruption. Would you lie to disable loading this package in the future You may use 'VCExpress /resotskippkgs' to re-enable package loading. Then, I think due to this, I get the fo ...Show All

  • SQL Server Cube processing error: "The end of the input was reached"

    I created a cube with AMO and examined it in BI Studio by importing. Everything looks fine, but I get the following error when processing the cube: "Parser: The end of the input was reached". The processing of dimensions appears to be successful. SSAS processes the cube immediately after finishing dimensions. That's where the error occurs. What is odd is that the process progress dialog box shows everything was completely successfully. I am quite sure that the processing of the cube was not completed because I cannot browse it and I know it takes much more than a duratio of 0 seconds to process the cube. Could anyone offer ...Show All

  • Windows Forms Graphics Question

    After setting a winform to IsMdiContainer = true, I can't  draw graphics text on it in its paint event. Here's the code doing the drawing: Dim objGraphics As Graphics objGraphics = Me.CreateGraphics() 'Draw some text. Dim TextFont As New Font("Arial Black", 36) Dim TextBrush As New SolidBrush(Color.LimeGreen) objGraphics.DrawString("Welcome", TextFont, TextBrush, 20, 150) Please kindly advi ...Show All

  • Visual C++ Constructor address as a variable value

    In my code I need to set unique variable value to identify class sample. I have constructors with parameter which indicates Name value. If Name parameter is empty string I have to set Name to unique value. Of cause I can use counter or random numbers generator or GetHashCode() but it is not that I want. The idea is to use constructor address as Name value. But I don't know how to do that in C++/CLI. It is not possible to use type casting to String in C++/CLI. A::A(System::String^ FName) { if (FName == "") Name = reinterpret_cast<System::String>(this); else Name = FName; } How can I get constructor address ...Show All

  • Visual Studio Express Editions VB Express code documentation generation?

    After adding inline code documentation using the vbcommenter style tags, how do I generate the xml documentation files   I can't find the switch anywhere in the options.  Is there a tool that allows me to create these documentation files for future use in ndoc. Are you sure you 're talking about vb EXPRESS There is no Build-tab on the project properties, the ones available are: Application, Compile, Debug, References, Resources, Settings, Signing, Security and Publish I 've been through all these tabs and I can't find a reference to 'generate XML doc' ...Show All

  • .NET Development ADO.NET DataTable as OLE DB Provider??

    As abnormal of a usage this may seem... Is it possible to expose an ADO.NET DataTable as an OLE DB provider   I have a third party piece of software that provides an external interface to an OleDbConnection and ideally I'd like to hook into an in-memory data source rather than a file-based database.  Is there any way to create and OleDbConnection to an in-memroy DataTable Any suggestions would be helpful. Thanks you can reference the ADODB library and extend DataTable to implement the interface you need. which esri interface/function are you trying to work with ...Show All

  • Visual C++ HOW can I use WebBrowser in dialog box,don't use mfc ...

    HOW can I create a  WebBrowser in dialog box,don't use mfc .. I 'd like use only API; is any one know it tell me.. thanks.. Hi. take a look at these articles: CodeGuru: Display a Web Page in a Plain C Win32 Application http://www.codeguru.com/Cpp/I-N/ieprogram/article.php/c4379 The Code Project - Embed an HTML control in your own window using http://www.codeproject.com/com/cwebpage.asp ...Show All

  • Windows Forms copyright

    Hi I wonder how I could write a copyright character in a messagebox as text Thanks Moorstream Thanx for all the answers... Of course I mean Word :) /Moorstream ...Show All

  • Visual C++ Help C2039: 'hash_map' : is not a member of 'std'

    this is my stdafx.h #define WIN32_LEAN_AND_MEAN // Windows Header Files: #include <windows.h> #include <hash_map> #include <string> typedef std::hash_map<int, std::string> StringMap; it works for vs2003 , but when i compile it at vs2005 , it gots alot or errors related to c2039. T_T I believe that as hash_map is not (yet) an official part of the ISO/IEC C++ Standard the class template was moved from namespace std to nameapce stdext. ...Show All

  • Visual C++ rand()'s initial value seems very non-random

    I'm using the MSVC++ compiler (14.00.50727.42) from the Visual C++ Express Edition, and the initial result I get from rand() seems to be very non-random.  Subsequent values seem fine. Here's my code #include <stdio.h> #include <stdlib.h> #include <time.h> int main(void) {     int i;     time_t t = time(NULL);     for (i = 0; i < 5; i++)     {         int j;         int seed = t + i;         srand(seed);      &nbs ...Show All

  • Visual Studio Team System This type of page is not served.

    This type of page is not served. Description: The type of page you have requested is not served because it has been explicitly forbidden. The extension '.asp' may be incorrect. Please review the URL below and make sure that it is spelled correctly. Wat is solution Where are you seeing this WebTest, UnitTest (ASP.Net) Or is it a general ASP.Net problem -- if it's just ASP.Net, then this isn't quite the right forum :) Check out the other forums on this site, there is at least one dedicated ASP.Net problem. ...Show All

  • Software Development for Windows Vista Durable and non-Durable Workflows in same Workflow Runtime

    Hi, I've got a question about supporting workflow instances that are both durable and non-durable within the same runtime. As I understand it if a workflow persistence service exists in the service container then the engine will call it for every workflow instance. If it doesn't exist, then obviously workflow instances are not persisted. If I want to have a mixed model where I could somehow 'mark' a particular workflow as durable, in other words, use the persistence service whereas another workflow would be run in-memory without persistence, how would I go about it I thought about a combined database/in-memory persistence service, h ...Show All

  • Visual Basic Ok, let me phase this another way: How do I make the program store a dim when you click the button?

    I want it so when you click button1 it saves the data in TextBox1 as Dim A.  Then, I want the program to use Dim A in the next Sub.  How do I do that Public Class Form1 Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim A As Double = TextBox1.Text End Sub Sub Button2_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2.Click Dim out_put As Double Button1_Click(sender As Object , e As Sytem.Event.EventArgs) Dim B As Double = TextBox1.Text out_put = (A + B) TextBox1.Text = CStr (out_put) ...Show All

  • Visual Studio 2008 (Pre-release) Cannot set Image Source from IValueConverter?

    I'm trying to use an IValueConverter to pick an image to show. In this case, I have images of country flags that I want to show next to the country code. I also have a tooltip with the full country name. Here is the Xaml I'm using. This Xaml shows a hard-coded image name that works and another image whose source is set from the IValueConverter. The tooltip is also set via an IValueConverter and that works great:  <ControlTemplate x:Key="CountryCodeWithFlagTemplate">   <StackPanel Orientation="Horizontal"     ToolTip ="{TemplateBinding Property=ContentControl.Content,       ...Show All

©2008 Software Development Network