Josh Kinder's Q&A profile
.NET Development Can't get a new table into my dataset
Can't get a new table into my dataset I created a new table Person in my Access 2003 database. However, I can't get it into my dataset. I tried refresh, the designer, and confiqure with the wizard, however the table Person doesn't appear. Is this a bug Or am I just being an idiot, as usual dennist Paul, <g> A copy of the .mdb was in the body of the project. How I missed it I don't know. I ...Show All
Visual C# disabling and/or hiding Windows taskbar
Could somebody post code that disables and/or hides Windows taskbar and enables it when I or user click on the button in Form. Goran The P/Invoke needs: [DllImport("user32.dll")] private static extern int FindWindow( string className, string windowText); [DllImport("user32.dll")] private static extern int ShowWindow( int hwnd, int command); private const int SW_HIDE = 0; ...Show All
SQL Server xml data source, not sure why i'm losing data
i'm trying to load data into a sql database using an xml data source. here's the file location: http://www.ecb.int/stats/eurofxref/eurofxref-daily.xml the xsd (generated by visual studio) is below. All outputs generate 0 rows inserted into an OLE DB destination, and there are no errors thrown.. What am i missing Thanks! < xml version="1.0" encoding="utf-8" > <xs:schema xmlns:tns="http://www.ec ...Show All
Windows Forms Data binding non datagrid in VB.NET
Ok, Maybe I'm trippin’ but it seems to me that all the examples for ADONET 2.0 only go over datagrids. Although I think they are cool I often need to bind data to text boxes, drop downs and want to have more general control over the alternative options pre built into VB. Anyway, can someone point me in the direction of some tutorials or other information that goes over manually databinding using the newer features of AD0.NET 2.0 Thanks, C ...Show All
Visual Studio Express Editions still problem
#include "stdafx.h" #include <iostream> #include <string> #include <stdio.h> #include <stdlib.h> #include <fstream.h> #include <math.h> #include <conio.h> using namespace std; i've done so. I need fstream.h to use files. Is so difficult visual c++ 2005 :D Please follow your previous post at http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=271063&SiteID=1 . If don't understand ...Show All
Visual Studio Express Editions Web Browser
Hi, I have been creating a web browser Can you tell me though how to make a progress bar work Thanks For the progress bar control you can set the lower and the upper value, the default value are 0 and 100, and you set the value by the function SetPercentage( int ) . That's what you mean // Update the DataBase Handle.executeNonQuery( "ALTER TABLE Ana ADD COLUMN GROUP_COD INTEGER" ); updFrm.SetPercentage( 25 ); Handle.e ...Show All
Windows Forms When use rowfilter, the currencymanager is reset to zero!
I have a datagrid source to a dataview. After I use the rowfilter to do some hiding on the dataview the currencyManager reset to row 0. After that the currencyManager never changes position again . Is there anyone knows how to fixed that or&nbs ...Show All
Software Development for Windows Vista Relationship to BPMN or BPEL?
I've installed and played around a bit, but I haven't looked closely at the XML resulting from the designer. Is it BPEL or something else How close is the graphical notation to BPMN from BPMI AFAIK, it has been announced that an activity set will be released through the activity gallery on windowsworkflow.net ( http://www.windowsworkflow.net/default.aspx tabindex=2&tabid=31 ), that supports both import and export of BPEL ...Show All
Visual Studio Express Editions Notify Icon
I'm trying to get my application to minimize to the system tray but it doesnt' seem to work. Do I need an icon set in the properties for this to work I have draged the NotifyIcon to my form, visible in properties is set to true, what else do I need for this to work. ...Show All
Software Development for Windows Vista AERO GLASS (PLEASE HELP) (MVP´s would be great)
In builds 5219 and 5231 aero glass worked fine in my ati radeon 9250, now in build 5259 doesn’t seems to work anymore, even with the "enablemachinecheck" tweak. What’s wrong A quick guess would be you are using a different driver now, proably an in box one that isn't LDDM since the 5259 build isn't a public and would probably not have a supplemental driver pack. you shouldn't be using this build unle ...Show All
Visual C++ Sealed classes
How can we implement sealed classes in C++ If you make all constructors private, then nothing can inherit from your class. To still allow creation of objects, you need to add static methods that return instances of your class. ...Show All
Windows Forms HOW TO: Dynamically Add a Control Without Hardcoding the Control Type in Visual Basic .NET
this article http://support.microsoft.com/default.aspx scid=kb;en-us;311321 is very interesting, but only tells how to add controls to the form. I want to do more than that and add a control to a previously added control. Let's say I add a panel to the form ...Show All
Architecture The IASA Foundation Reference Model
Hi all, Just wanted to give a preview of the IASA talks at the Insight conference. For those of you unfamiliar with the IASA, check out the website www.iasahome.org . We are simply a bunch of architects from around the world, getting together to make our jobs more professional, educable, sustainable and useful. The IASA already represents and is made up of thousands of architects. We are doing three discussions at the conference: Key ...Show All
Software Development for Windows Vista WWF and SCORM
Is there any research or effort ongoing at Microsoft (James ) on using WWF in a SCORM compliant solution I'm referring to the ADL Sequencing specification (SCORM 2004 Sequencing and Navigation). Is Microsoft interested in SCORM at all There is very little info on Microsft.com on e-learning, specifically on Learning Management Systems (LMS). Looking at WWF and SCORM, it may be a task as simple as providing an XSLT transform between XOML (XA ...Show All
Software Development for Windows Vista future activeX in MS Vista
Hi, I'm developing a framework in winfx which can move and rotate components (panel and its children). I would like to know if can be possible (in the future) to host winfx applications in another winfx application. I mean, for example, it will possible to get an Excell (developed for vista) activeX that I can host into my application (for rotate/scale/fade it) Thanks and sorry for my english. ...Show All
