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

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

Haake

Member List

Fab5
Mike Kidd
Lensouille
MariaW
Jonathan Roy
Igore65
Azeem Khan - MSFT
kenl1234
marc8080
Larry Charlton
Arshad Paracha
jeffnc
Padvit
SidC
jslx7
CJ Butcher
Dan Lukinykh
johan claes
Dave Hampe
JimR1
Only Title

Haake's Q&A profile

  • .NET Development Stored Procedure parameters

    Hello friends. I am a software engineer working for a software company. Recently I have developed a software for vb.net and sql server which reads database metadata, stored procedures, foreign keys, stored procedure parmeters and generates full featured data access code for vb.net and sql server. It generates full, bug free and highly optimized code for playing with database tables, stored procedures, etc. Now I am extending this softwa ...Show All

  • Windows Forms Question about UserControl

    If I have a usercontrol that inherit from TextBox (myControl). It's possible when myControl is drag into the form (from the toolbox), to add a label control too Thanks. Yes, you can do this with a custom ToolboxItem. Below is an example: /// <summary> /// This custom ToolboxItem displays a simple dialog asking whether to /// initialize a certain value. /// </summary> class MyToolboxItem : ToolboxItem { c ...Show All

  • Visual C++ On adjacent ">"s in a parameterized declaration

    Hello, There is a syntax erron in the following code -- adjacent ">"s need a delimiter (it is marked AAAA) template <class T> class A {}; template <class T> class B {}; int main() { A<B<int>>(); // AAAA } But VC8 can compile it. It seems to be a error but on the other hand Mr. Stroustrup have being dreaming on such a syntax for ages and he promotes it pretty vigorously now, as far as know. So, I a ...Show All

  • Visual Studio Express Editions Newbie - File copying confusion

    Hi I am severely struggling with even the basics of this part of my project. I have a destination path in a variable, selected via the FolderBrowserDialog function, and this works fine. I have a ArrayList of source paths, mixed folders and files. eg a file as C:\My Documents\TextFile.txt eg Folder as C:\My Documents\Folder1 I am trying to copy each item as follows: if it is a file, copy to destination folder, if it exists, ...Show All

  • Visual C++ circular reference in parent/child classes

    I have been trying to understand some code that another guy wrote, and though his code compiles and runs, it seems like it should never have compiled. He has 2 classes. One class is basically the parent, and it includes a pointer to the child it creates. As the child is being created, the parent passes the constructor a "this" pointer, so the child can later access variables in the parent. When I try to duplicate this logic, ...Show All

  • Visual Basic Computer take a nap every third time through a for/next loop.

    Hi All, I have the wierdest problem I have come across in my 40 some years of troubleshooting code and hardware.  The followinf code is simply 3 nested for/next loops.  About every third time (sometimes 2, sometimes 4) through the inner, y loop both of my computers take a 15 millisecond nap.  An instruction gets performed and then it is 15 milliseconds before the next instruction is performed.  Nohing else is going on, t ...Show All

  • SQL Server Using custom assembly problem. Help!

    I've created C# assembly which was included into Script Task code as following: -------------------- Imports DTX55AppDefaults.DTX55ApDefaults --------------------- The ScriptMain window recognize this assembly and can see all methods with no problem. The class View window see the assembly with whole list of methods with no problems. I build the code when ScriptMain window was open and save the code. Then I close window and run the package in Deb ...Show All

  • Visual C++ Class Designer not a feature for C++?

    There is an error in the Visual Studio 2005 product line info at http://lab.msdn.microsoft.com/vs2005/productinfo/productline/default.aspx The table lists Class Designer as a feature, but as far as I am concerned, this is not true if it does not support C++.  Anyone else look at this table and think it was in there   I'm sure someone overlooked this, but it is somewhat disappointing to rely on this table for the past few weeks and l ...Show All

  • .NET Development XSD + XPATH = XSD-Type?

    I got an XSD containing a definition for XML and I got XPath Queries which would return nodes from an XML valid against that XSD. I know that all the queries will result in nodes containing simple types. How can I figure out what the simple type is without actually having XML data Just to clarify, I would have something like: < xml version="1.0" encoding="utf-8" > <xs:schema attributeFormDefault="unqua ...Show All

  • .NET Development Beginner: Q on using XSL to convert from XML to XML

    My first time dealing with XML/XSLT I have to take a XML file(that is HUGE), and convert it into another XML format (the purpose being to get rid of most of the unwanted information and retaining just the ones our program needs) I was told that I can do this easily using XSL. I took some examples from the web and tried it on my machine. (I am using notepad and IE6.0) Here is the XML < xml version="1.0" encoding=" ...Show All

  • Visual FoxPro foxpro dos program convert to foxpro window (any)

    I have a software created in foxpro 2.5 which i want to convert it to any foxpro under windows. there is any command or utility which can hlep me out. Regards, Asad If you have a copy of Visual FoxPro you should be able to open the 2.5 project and recompile it pretty much as is. There are a few gotchas like needing to turn theme support off and such. But, if you aren't looking to rewrite this application and just wish to compile a 32 ...Show All

  • Architecture Need for MINI OS

    I do embedded systems at times and i would like to utilize the power of the XP core without the overhead of the GUI on the actually embedded system. I would like to turn off the GUI comletely. It would be nice because windows API is more programmer friendly than Linux. Plus the tools are more reliable. Have a look at Windows Embedded . There are two "flavors" right now, XP Embedded and CE. XP Embedded is essentially a &qu ...Show All

  • Windows Forms How to use BindingSource.Filter to select Null fields

    I have a BindingSource control bound to a DataSet table. The table has a column called EndDate, which can be Null. I want to set the Filter property to select only rows that have an EndDate of Null, or have EndDate after today. This is what I tried: Me .myBindingSource.Filter = "IsNull(EndDate, '01/01/2099') > '" + Date .Today.ToShortDateString + "'" However, that didn't work. What is the correct syntax ...Show All

  • Visual Basic How does VB app go about authorizing itself to modify SqlX 2005 database?

    Environment: VB 2005 Express Edition Sql 2005 Express Edition. XP Pro, 1GB of memory, 160 GB disk space, Pentium IV processor Project Goal : Develop a desktop app which connects to local database instance named ".\sqlexpress". This app is intended for distribution to other desktop users. The app needs to perform database and table modifications. This may be done through stored procedures. i.e. change database options ...Show All

  • Visual Studio Add-In

    I am trying to add an item with an icon in to Tools menu of VS2005. I created the project as suggest by MS using Add-In wizard. I added a small dialogbox and also created a set up project( as in VS2005 setup project is not created automatically). Project has all the required components(dll, files etc). It compiles fine and also setup project runs with out any error. Program does create a folder item in Program dirctory but fails to create an ent ...Show All

©2008 Software Development Network

powered by phorum