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

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

karolina222

Member List

Waqar Ahmed
Beeblebrox_dk
scottnmead
Emil Damian
Brook G
Dgates123
TeddyG
Sundar.Iyer
Vales
Whit Nelson
RyanT5000
Andy Ng
1Deepthi
eaho
bioan
Matt Neerincx
Quadrillion
ChrispWard
SecurityBreaker
Mike in Tucson
Only Title

karolina222's Q&A profile

  • Windows Forms Install failure

    Hi, I get the error 'Cannot start the application. Contact the application vendor for assistance.' When viewing the details the error is summarised as + Exception occurred during store operation. + Value does not fall within the expected range. When my work collegue tries they don't get this error. Any ideas Can you include rest of the log that would make identification easier. It is likely storage for the apps may have got corrupted. Try uninstalling the app (if available in Add Remove Programs), then reinstall it. Do you try to manually modify files once the app is installed, like c ...Show All

  • Visual Studio Team System Global Supression File

    How can I create a global supression file in VS 2005   I see 1 set of instructions on MSDN (http://msdn2.microsoft.com/en-us/library/ms244718.aspx), but the steps do not work in the released version of VS 2005 Thanks In Advance! Rich The link you pointed to is a description of how to modify code analysis settings only. A global suppressions file is created automatically any time you right-click and suppress an item in the error list for which a global suppression is appropriate. To see what I'm talking about, compile a default C# application and run code analysis against it. You should ...Show All

  • Visual Basic creating a text object

    Is there a way to create a text object By putting [ and ] you can escape the name between them. In this case, since string is a built in keyword in Visual Basic .NET, the compiler would have treated it as the keyword string instead of the type name String. In this particular case (assuming that you are Importing the System namespace) they just happen to mean the same thing (a string in Visual Basic maps to the System.String class in the .NET framework. For a more informative example, see: http://msdn.microsoft.com/library/default.asp url=/library/en-us/vbls7/html/vblrfvbspec2_2.asp Best regards ...Show All

  • Windows Forms keycode

    hi everyone.......  i think most of you heard about this problem many times, but still i want to ask again.  actually, i have already did the things that i have to do to solve this problem based on solutions that i've got from websites and forums but still the problem occurs.  the solutions are:  - Register Crystal Report  - Register crqe.dll usin ...Show All

  • Visual Studio 2008 (Pre-release) Visual Studio Extensions for Win FX (November CTP) runtime

    Hi, I have installed VS 2005 RTM and Win FX runtime components and its visual studio extensions. When, i open a WinFX solution and try to open tool box, nothing appears there. Are we supposed to hand craft XAML and cross-wire the UI and their events Thanks, Ganesan Krishnamurthy. Michael, Thanks for your reply. When i had applied the visual studio extensions of previous CTP of WinFX components, I used to see the project templates as Avalon Win/Web forms. Those provided toolbox items and cross-wiring the events in xaml.cs code. It really helped us to quikly dirty our hands and start explore the xaml equivalen ...Show All

  • Visual Studio Express Editions I need to count by ascii characters. Seems tricky!

    Hey guys, I'm doing an expirement and I need to basically "count" but using a set of ascii characters. I'm having a heck of time. And using VB.NET Express. For example, in Decimal, you count 1,2,3...8,9,10. As you know, once your first character reaches 9, a new character is added, 0, to the left, and then you start over counting the 1st character such as 10,11,12...18,19,20. Each time the rightmost character reaches 9, the next one over goes up one, and if another char doesn't exists, it is created. Okay, I need to do this but instead of doing it with numbers 0 - 9, I need to do it with 93 ascii characters! Ranging from chr ...Show All

  • SQL Server Problem extracting data from multiple list boxes

    I have a report that has a header section with three detail sections.  The header section contains information pertinent to a person and a situation.  The detail sections each contain information pertinent to the situation and person in the header section.  I have been able to format the data correctly but I am unable to have the unique information per person extracted for the three detail section.  I am using data from four stored procedures, one for the header information and three for each detail section.  sample detail data: sit1desc            &nb ...Show All

  • Visual J# how to create DLL file in J# or convert J++ dll into J# dll

    Please help me...I know nothing about J#.  The following code is written by J++ for dll file.  I need to either convert those code into J# or create new J# dll file.  However, I have no clue how to start it.  Could someone help me as soon as you can.  I really appreciate it.  I only have one day to finish this assignment. import java.io.*; /**  * This class is designed to be packaged with a COM DLL output format.  * The class has no standard entry points, other than the constructor.  * Public methods will be exposed as methods on the default COM interface.  * @com.register ( clsid= ...Show All

  • Windows Forms transparent control

    > Hi ... > > In my application, the user can drag and drop objects from the toolbox to > the main working area (just like in Visual Studio). Each of these objects is > actually an image that is displayed in the work area using a picturebox. > > Now I want the use to be able to resize and move these images. How do I make > the&nb ...Show All

  • Visual FoxPro Select Statement

    Basically i want to create a view that calculate the stock end balance using moving average. On entry invoice the prg would create txn on a table item_txns that store all txns that affects the balance. The problem is the sale txns only store the qty but does not store the cost of good sold. This would be calculated on the fly when users query and want to see the cost of good sold . I want to do this using SELECT statement, The fields are common for stock txns date       itemid         txn_type          qty   ...Show All

  • Windows Forms how to set the start page?

    hi i have a windows application , and i want to set the start page , but don't know how.would u please let me know that thank u very much Hi, Select project properties from project menu and use startup object property to set the start page. But make sure whether static void main() method is included or not. I hope it will help. ...Show All

  • SQL Server changing timeframes with stock data

    I have stock data in 1 min intervals and would like to convert it into other timeframes (e.g., 10 min, daily, monthly). Here's is some sample data and my final goal: [DateTime] [Open] [High] [Low] [Close] [Volume] 10-Feb-05 12:10:00 3.88 3.88 3.87 3.87 10 10-Feb-05 12:11:00 3.87 3.87 3.87 3.87 2 10-Feb-05 12:12:00 3.86 3.86 3.86 3.86 1 10-Feb-05 12:13:00 3.85 3.87 3.84 3.85 23 10-Feb-05 12:14:00 3.85 3.85 3.85 3.85 6 10-Feb-05 12:15:00 3.86 3.86 3.86 3.86 1 10-Feb-05 12:16:00 3.85 3.85 3.85 3.85 1 10-Feb-05 12:18:00 3.85 3.85 3.85 3.85 3 10-Feb-05 12:19:00 3.85 3.85 ...Show All

  • Windows Forms Windows Forms Designer Bug?

    I created a custom combo box which extends the standard Windows Forms combo box.  In the constructer (Sub New), I set certain properties such as the Items collection.  For example: Option Strict On Public Class ClientCategoryComboBox     Inherits ComboBoxBase     Public Sub New()         MyBase.New()         Me.Items.Add("This is&nb ...Show All

  • Visual C++ Is C++ a version of VB... Im so confused.

    Ive been told that VB6 is just a simpled version of C++. Or is it a seperate language. Does it have any connection to VB6 No, C++ is another programming langauge, Visual Stuido 2005 supports, Visual Basic.Net (or VB8), C# and C++.Net, for Visual Studio 6, it supports Visual Basic 6 and C++ 6. For more please read : C++ and Visual Basic . Hope this helps. ...Show All

  • SQL Server OPENXML Not enough storage errors

    I am trying to work the a large (65MB) hierarchical data structure stored in XML that describes phylogenetic relationships in biology. I would like to return a set of species belonging to a particular phylogenetic class (e.g. "Mammalia") which corresponds to returning all the terminal children of this node in the XML tree. The query select sp from openxml ( @docHandle , N '//node[rank/text()="species"]/names/name[@class="scientific name"]' ) with ( sp varchar ( 50 ) './text()' ) runs and returns all 287000 species in the document, but if I try to restrict to children of the node "Mammalia" ...Show All

©2008 Software Development Network