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

Software Development Network >> Dietmar Gleu's Q&A profile

Dietmar Gleu

Member List

Kennet
MrMad
Aubrey Kagan
AjayB
DLSeth
gotit
t_girl
zhenzhou wang
tapir
AmitInnani
ggentile
Lam Nguyen
efarook
ZhangQing
graffy
vivekanand
N777
Kumar Mridesh
Eraser465
DeepakBakshani
Only Title

Dietmar Gleu's Q&A profile

  • Windows Forms Custom order of categories in PropertyGrid

    Hi, I need to know how change the order of the categories in the PropertyGrid. Thank's Alexei Hi, I have found solution: For the first category (in my order) I have added character '\r' 256 times. For the second I have added character '\r' 255 times. And so on... For the last I have added character '\r' 0 times. The PropertyGrid control sorted categories  ...Show All

  • Windows Forms Eumerate Sub-Folders

    All, I am trying to write something that you can point it to a directory, ex. c:\library, and it will tell me what the sub-folders are in that directory. The reason that I am doing this would be to create something of a dynamic library.  I am looking to have each sub-directory be put into a treeview control as categories.  Then when you  ...Show All

  • Visual Studio Formating Questions

    1) When I format my date fields, its always MM/DD/YYYY format. How do I change it to DD/MM/YYYY 2) I have a group header row, which has a blue background. txtGroupSales is one of the text boxes in the row. I've set txtGroupSales to toggle invisible when txtGroupName is clicked. Unfortunately, this also hides the blue background for the text box. So I have a white gap in the blue bar. Any ways around this 3) Is it possible to save that the report should always be printed in Landscape Thanks Vayse Hi, Vayse, for 3), set the PageSize property on design mode ( e.g. 11in, 8.5in ), that should give you a ...Show All

  • Windows Forms threading problem updating a dataset bound to a datagrid...

    hi, i'm quickly getting to grips with multithreading, but i'm still a newbie :) thanks for your patience in advance. i have a datagrid hooked up to a dataview, which gets its info from a datatable.  i also have a method to update the datatable which calls Fill on a dataadapter. i always call this method asynchronously (via delegate) because its slow&nb ...Show All

  • Visual C# How do I move my records in one dataset into SQL database with field matching?

    I am working on a attendance application( base on SQL Express) for school, I figure out the way import the CSV files(Attendance Record) into a dataset but I cannt find any information regarding how to transfer the record into SQL Express Thanks Hi, Try using the sqlDataAdapter object. You need to set its select, insert, update, delete command. After doing that you can try doing something like: System.Data.SqlClient. SqlDataAdapter adapter = new System.Data.SqlClient. SqlDataAdapter (); //Set the commands.. adapter.Update(dataSet); The adapter will check the status of each row in the dataSet and will invoke the apropreat ...Show All

  • Visual C# If statement problems

    Hi, I'm very new to the C# community I have been working on a program that uses username recongnicition and I have a question. Here is my code if (textBox1.Value == "mittensonfire")             {                 MessageBox.Show("You are very leet");             }             else             {         &nbs ...Show All

  • Visual Studio 2008 (Pre-release) Rendering in pixel space

    There are certain types of visuals that must be rendered in pixel space such as a fractal or an audio waveform. These things can't be composed of the geometric primitives currently available in WPF. How would I go about making a custom control/visual that renders itself on the pixel level You need to use a bitmap to get control over pixels. You can then add the bitmap to a Visual tree, keeping in mind that the Visual tree may stretch the bitmap according to the screen's DPI settings, any transforms in the tree, and so on. You can use the RenderTargetBitmap class to rasterize Visuals to a bitmap, but if you ...Show All

  • SQL Server connecting to sqlexpress from classic asp

    hi, i'm using classic asp to try and connect to a sqlexpress database on a development server. i get the following error: Microsoft OLE DB Provider for SQL Server (0x80004005) [DBNETLIB][ConnectionOpen (Connect()).]SQL Server does not exist or access denied. /dbtest.asp, line 8 I'm using the following script which runs fine against a regular SQL server (version 8) on the network. <%@LANGUAGE="JAVASCRIPT"%> <% var strCon, conn, sql; strCon = "Provider=SQLOLEDB.1;Data Source=localhost;Initial Catalog=rapidHB;User Id=rapid;Password=xxx"; conn=Server.CreateObject("ADODB.Connection"); conn.Open ...Show All

  • Visual Studio Team System How to put the code in a team project?

    Hello. I created a team foundation proyect. I see many things there, work items, documents, reports, build. but I dont see the code. I created a website , how can I associate the website proyect to the team foundation proyect       Why I cant create bugs it doesnt let me write on the title field. Hi Kevin, You will need to install a source control system. E.g. you can install Visual SourceSafe ( http://msdn.microsoft.com/vstudio/previous/ssafe/ ), try out the exciting new Team Foundation Server product which is in its Beta3  ( http://msdn.microsoft.com/vstudio/teamsystem/team/ ), or install other source control ...Show All

  • Smart Device Development Bound emulator like Palm ?

    I was wondering if I could create a bound emulator like I can with the Palm emulator so I can send it out with our salesmen and trainers. It is really great when you run the app on the emulator on the big screen with the projector, it helps us sell our handheld companion products and more handhelds in general. Thanks You can install a standalone DeviceEmulator from http://msdn.microsoft.com/mobility/windowsmobile/downloads/emulatorpreview/default.aspx This blog: http://www.furrygoat.com/2005/09/portable_ce_20.html shares some ideas on building standalone demos using the emulator. Barry ...Show All

  • Smart Device Development EDB API not found !?

    Hello, I have installed Visual Studio 2005, but now if I try to use the API found in the msdn documentation and for all the functions CeCreateSession, CeOpenDatabaseInSession, and co, it tell me that theese functions are not defined. I tried to include the windbase_edb.h header -> this file does not exist. Now all the headers that are included are : windows.h and windbase.h neighter contanin these functions. Any help Best regards. You will need to #define EDB before including windbase.h. Also check out the complete reference on: http://msdn.microsoft.com/library/default.asp url=/l ...Show All

  • Visual C++ how to get errors for nonstandard ISO c++?

    As I understand it, "for each" (as opposed to for_each() from STL) is not allowed in standard ISO C++, it's part of the new C++/CLI standard instead. So if I take the program below, it doesn't compile in Cormeau's compiler. However, it compiles in VC2005 even if I use /Za and do not use /clr. My question is, how can I prevent the compiler allowing new constructs like this My friend's compiler doesn't compile them! What switch am I missing to get regular standard C++ cl /EHsc /MDd /Za /W4 /c /Zi /TP .\scratch.cpp #include <list> #include <string> int main () { s td::list< int > foo; ...Show All

  • Visual Basic Is it possible to change the column header backcolor of datagridview?

    Hello, Is it possible to change the backcolor of Column header of datagridview. I can change style, height, width of the column header of datagridview but i'am not able to figure out how to change the backcolor of column header. Please help me. Thank you in advance. - Manju ...Show All

  • Visual Studio Express Editions Me.Invoke How to use it with sub routines?

    This is the code I have: I need to invoke the sub routine, and I can not find any correct tutorials or posts for this Thanks SJWhiteley - Helped me a bit. How would this look if I had two or more textBox's Could I use this one function for all of those Thanks, mNilysg ...Show All

  • Visual Studio Express Editions Newbie General Questions & Error on Non-Dev Machines

    Hello, I've just started programming C++ as of today, so yes I am a newbie, but I do have some experience in Java and GML so hopefully it will come in handy. First off I'd like to know if there is some kind of function list for standard C++ Libraries.. For Java and GML their is an obvious list of all the functions and parameters easily available to all programmers. From what I can see, even MSDN doesn't offer something like this. Secondly whenever I use, lets say, #include <windows.h> I get an error similar to: Error 1 fatal error C1083: Cannot open include file: 'windows.h': No such file or directory c:\documents and settings\ ...Show All

©2008 Software Development Network