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

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

kslim

Member List

Winston
Ric C
Saeed Nawaz
Faizel
Golden_Jammy
Phil at AUT
shawn2005
narsimanv
calico
Cbless
Daniel21
nishu
ptoinson
Mark Sh
EJG
JimmyAndrews
Fil_NZ
Jose.
Marius H
nate.sammons
Only Title

kslim's Q&A profile

  • Windows Forms datagridviewcomboboxcell problem

    hello there, i have a datagrid of 6 columns with one being a combobox. I databind the datagridview with a table A, i set the combobox to table B as a datasource in order to fill the combobox. When i fill the rows like 3 rows of my grid and then save, i don't know why the table B as 3 additional rows and nothing in table A. When i remove the codeline that deals with the combobox all data from the datagrid are saved in table A except for the column with the combobox. I really don't understand what is happening, nowehere in my code do i update table B and still it will create new rows depending on the number of rows i fill in the datagrid. Ple ...Show All

  • SQL Server Help with Connections

    Hi everybody, I need a little help... I created several packages, that after their creation should not be changed again; that's why I created a Package Configuration File in which I set all the Connections I need, so that this is the only file I have to modify. I set there also the path of the connections for my log file and for my error files (which are both text files), but if I change their paths in the configuration file this change doesn't affect the package, and the path of the log remains the same. That's an image of one of those packages.... The fact is that I cannot change the ConnectionString of the connection c ...Show All

  • Visual Studio VCBuild Task and Warnings

    Hello, Can I use the VCBuild task without the output of compile warnings Thanks. Ori, What type of warnings are you seeing from the VCBuild task You mentioned in your earlier post that you are using Beta2.  There have been a lot of changes since Beta2 - especially around the VCBuild/MSBuild integration story, so if you are using the VCBuild task, you will certainly want to get a later relese - preferably the Release Candidate. Thanks. Faisal Mohamood ...Show All

  • Visual C++ Sealed classes

    How can we implement sealed classes in C++ You cannot protect a class against derivation. But you can protect the creation of the class, this is the idea. If the class can only be constructed by a factory (static function inside) nobody can derive it. class A { private:    A() {} public:    static A* Construct()       {       return new A();    } } void Foo() {    A *pA = A::Construct();    delete pA; } Nobody can create a derivied class of A! You can not protect anybody to d ...Show All

  • Visual Studio Express Editions Me.Visible or Me.Hide ???? Help

    I want to make my VB application run in "hidden" mode, with no interface or GUI This is my code so far, but I can still see the Windows form.....   Public Class Form1 Private Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load Me .Visible = False End Sub End Class I even tried the Me.Hide() method, but I can still see the GUI when I run the app.  Any help would be greatly appreciated. I found out that if I put "Me.Hide()" in a button function it works. But I want my application to load with no G ...Show All

  • Windows Forms Nox invasion

    Hi, I was just wondering what type of animal, and why the Nox 3.6 has totally invaded my ecosystem. Thanks  Well I am not sure about this, what I would really like to see is an advanced terrarium and a beginner terrarium. but you know that is only a wish and I know it would take an act of some higher ups to aprove  ...Show All

  • Visual J# World's greatest IDE

    Hi; I swa a couple of questions about the best development IDE so here is in IMHO: java - IntelliJ - rocks. c# - VS 2005 w/ ReSharper - rocks. j# - you're screwed. (I think j# itself is really good - it's the IDE that sucks. No refactoring, no live code parsing, etc.) Since I am using common source, I do all my development in java/IntelliJ and then copy to j# and use VS 2005 just for building. thanks - dave Hi David, Thanks for your frank feedback. It's really unfortunate that J# doesn't have refactoring in VS 2005. We are considering to support it in our next release. Thanks. ...Show All

  • .NET Development Importing XML Data into MS SQL Database (VB2005) (Not so easy)

    I have searched for a long time for the answer to the question and have gotten some results, but I continue to have problems. I have asked on other forums and no one knows how to resolve it, or I am not making myself clear, although the task seems simple enough, to import data into a database. This is my problem: I need to import the following XML Sample Data: < xml version="1.0" encoding="UTF-8" > <MyXMLFile> <XMLHeader> <HField1>String</HField1> <HField2>String</HField2> <Record> <Table1> <Table1Field1>String</Table1Field1> <Table1Field2>String</Table1Fi ...Show All

  • Windows Forms ToolStripControlHost designer usage

    I've created a class that extends ToolStripControlHost.  Is there a way to make it useable in the design view I'm hoping that I'll either be able to add it to the toolbox so I can drag a new instance onto a toolstrip, or that I'll be able to go it to show up in the toolstrip's "Items Collection Editor" dialog, inside of the &q ...Show All

  • Visual Studio Express Editions Extracting and installing of IMG-Files

    Hello! I want to know if it is possible to extract the IMG-Files with IsoBuster and than to copy all the files on a DVD I only ask because i can extract the image files and install it from the hdd but i don't know if i can copy the files on the DVD in the folder for example VisualCSharp and install it from there. Another question: I read in the web that visual C++ don't have an IDE. You have to install the IDE separatly. Is that right or does only have the beta the IDE separate Please help me! I don't know about the DVD question, although I imagine it can be done. Might as well try it. As for C++ and I ...Show All

  • Windows Forms OnKeyDown doesnt handle arrow?

    OnKeyDown doesnt handle arrow i'm overriding it in a usercontrol and i can't catch any arrow keys if ( e.KeyCode == Keys.Up ) ... i wanted to make some stuff repeat when the key is down i got around using ProcessDialogKey i guess i will be overriding IsInputKey so that all keys all handled in 1 method ...Show All

  • Visual Studio Team System FxCop 1.35 RC1 - SuppressMessage for IdentifiersShouldBeSpelledCorrectly

    Is it possible to suppress all violations for a given word using a single module-level SuppressMessage attribute For example, if I use the unrecognized word "Foo" in several places in my code, e.g.: public int AddFoo(Foo f) { ... } public void RemoveFoo(Foo f) { ... } I would like to suppress the IdentifiersShouldBeSpelledCorrectly violations for all instances of "Foo" with a single module-level SuppressMessage attribute. I tried the following but it didn't work: [module: SuppressMessage("Microsoft.Naming", "CA1704:IdentifiersShouldBeSpelledCorrectly", MessageId = "Foo&q ...Show All

  • Visual C# reading from resources in project

    Hi guys :) i need help with reading from a resource file in my project, i have tried searching through the MSDN and Knowledge Base but i didn't find anything. I have 2 Resource files in my project. Can someone please help me with this Thanks in advance. thank you really much :D you saved me a very long time :) thank you once again :D EDIT: this does not work with .resx file... ...Show All

  • Smart Device Development Deploying a Visual Basic/Studio program on a PocketPC 2002 emulator or device

    The device has been synchronized with the PC. My Ballistics program has been working fine on the emulator. I deploy it now to the actual device. The message: "----deploy started: Project: Ballistics, configuration: Release Pocket PC---deploying to Pocket PC Device using TCP Connect Transport Connected to Pocket PC Device (Pocket PC) runing on ARMV4T. Copying files from 'C:\Documents and settings\arthur pejsa\My Documents\Visual Studio ... Copying BallisticsOutput.exe Could not write to output file 'BallisticsOutput.exe' - sharing violation." My question: What is a sharing violation. Also, after bumping into this e ...Show All

  • .NET Development Convert .NET Char array to unmanaged C++ char array

    Hi, We are trying to create C++ managed wrapper for our legacy C++ code such that we can use from C#. The issue is we need to pass an Char array (passed from C# code) to Unmanaged character array. How do we create a property in the managed wrapper where in it gets/sets the character array (char a[10] ) from C#. We are successful in using to convert to char* to String vice versa but the issue is how we can do it by fixing the array size. Thanks for your help. V Hello, Perhaps this will help you: Pinning an Array greetings ...Show All

©2008 Software Development Network