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

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

Bolke

Member List

corado
BHGreene
Dominator Legend
FluffyDevilBunny
Univer Blue
LuisValencia
madhu mudunuri
HuWu
Esmond
HouZhenYu
PALANISELVAM
I_luv_peanuts
Aisrar
mark aoki
npvw
dh
FabianCJ
jaczura
Heikki
Nits
Only Title

Bolke's Q&A profile

  • SQL Server How to call Integration Services Project from Web UI

    I just got done finishing an Integration Services Project (which I have to say was sickening easy!) which does the following:  1) Imports a comma delimited txt file 2) Exports it into a table 3) I do some manipulation and other table creation using SQL 4) Outputs a table to a flat file again I now need to allow the user to run this process.  I'd like to either: a) Provide them a shortcut that when clicked on their desktop starts the process that I have defined in my Integration Services Project b) Better yet, create a web U I that has a button they can click on, something that shows the progress in time, and th ...Show All

  • Visual C++ lnk1112

    In VS2005, I added a MFC DLL project. The default platform is win32 and this project does not have input lib. A very simple boiler plate project with code from Microsoft. Then I converted the project to x64 by setting the platform type to x64. I can see that the target machine type from the Linker option got changed to x64. Then I built the project from VS2005, I got the following error: \ x64\Debug\mfc2.obj : fatal error LNK1112: module machine type 'X86' conflicts with target machine type 'x64' Note that there is no input library and therefore there cannot be a mix of object modules. The only object module is the mfc2. ...Show All

  • Architecture How can I achieve self-documentation AND generality

    Here's the issue I am stuck with, and browsing through a ton of pattern books hasn't provided a solution as best I can tell. I have a problem that requires one of two possible solutions, and I am looking for perhaps a third that I'm not aware of. I have a set of classes that inherit from a base class, and each of these classes does some activity and returns a boolean result. The problem is that each of these classes requires a different number of inputs, from 1 to 5 in order to do their evaluation. These classes also only accept base types as arguments (int32, double, string, boolean, etc) to avoid having them restricted in their usag ...Show All

  • Windows Forms listview

    Hi All, I just want to ask how i can get the selected item in a listview control in vb2005... Hi, Especially i want to use this to get the current item with all subitems to export 'em into a second form. Does this contains all of the subitems, too thnx ...Show All

  • .NET Development Does foreach loop undergo loop unrolling on multiprocessor?

    I have a program in which the the foreach loop iterates over a collection. Each member of the collection is then executed, which then write the output to a single file. This file is shared by all the elements of the collection. I am facing a problem when I execute the program on a Dual Processor with hyperthreading on. The ouput file seems to be corrupted, i.e. the ouput from one member of the collection and next member are overlapped. It seems that when the foreach loop iterates over the collection, two members of the collection are running in parallel, and hence are trying to write to the file at the same time. Now my question is: Is the ...Show All

  • Visual C# I dont have a title ! please read

    Ok i want to make like 20 buttons or 10 or 13 but programaticly. for examle for(int i=0;i<n;i++){ Button a=new Button(); } // where n is a nuber gived by the user // and if the user gives n=15; show 15 buttons if user gives n=100; show 100 buttons; i know this wont work!, but anyone have any ideaa about how to do this Each Button will have a different reference, you can get all the reference of button by indexing through the Form Controls. or else u can also name the buttons by using the b.Name Property. ...Show All

  • Visual Studio Express Editions FullScreen Posible?

    Hi: I’m developing a Aplication but i need to view the Aplication in Full Screen (1024x768) Is this posible Thanks If you mean you want the form to start up maximized, just set the WindowState property to Maximized: Me.WindowState = FormWindowState.Maximized If you want to prevent the user from minimizing it, set the MinimizeBox property to False. Hope this helps, Steve Hoag Visual Basic Express ...Show All

  • Visual Studio Express Editions Problem writing to database

    I have a problem writing data to a database that I hope someone here can help me with. I have a program whose main function is to record daily measurements. The measurements are saved in a database. This piece works just fine. Another piece I am working on is the ability to add new users with passwords etc to the program. When I open the window I can add a new user and then review all users with the new user shown. However, if I close this window - not the whole application - and then reopen the add user window the new user is no longer there. The user's names, passwords etc are saved in a second database. Any help will be greatly appreci ...Show All

  • Visual C++ Visual C++ 2005 Express and ASP.NET Web Service error ...

    Hello, Just trying out a web page creation using Visual C++ 2005 Express Beta 2 and ASP.NET Web Service template. It builds OK but when run it I get error message below. Also when trying to debug I get message saying that "unable to start debugging on the web server. The debugger is not registered on the web server computer. Visual Studio or the full remote debugger components must be installed on the web server" - meaning ! When I drag/drop items onto the screen I am not able to position them as with a Windows Froms Application. This not possible How do I position items on the web page Cheers Geoff Server Error in '/webtrackba ...Show All

  • Visual Studio Team System Fxcop LiteralsShouldBeSpelledCorrectly and German

    Hi, i added Fxcop 1.32 to Visual Studio .net 2003. When i let it check my project i receive a lot of "LiteralsShouldBeSpelledCorrectly" Error messages in the output window of VS. Correct the spelling of the unrecognized token 'AGermanWordInHere' in the literal '<span>My german text in here</span>' Is there a german dictionary for fxcop to use or a work around Thanks, toebens toebens, In FxCop select Project | Options and then the Spelling & Analysis tab. In the Dictionary Locale combo box you can select either of two German language options. Guy ...Show All

  • Visual Studio Express Editions create a wrapper for the unmanaged C++ dll file

    I have a . dll written in C++ that I would like to use in C# program. Is it possible to do that and how If I try to add with Add Reference, I can't. Tell me how to create a wrapper for the unmanaged C++ dll file. Willfin Platform Invoke or P/Invoke is what you need. Please check out this tutorials: http://msdn.microsoft.com/library/default.asp url=/library/en-us/csref/html/vcwlkplatforminvoketutorial.asp As a thumb rule when designing native interop wrappers is that you should hide as much information as possible from the user (the managed program). If your native function takes lots of paramete ...Show All

  • Visual Studio Express Editions Windows Forms Opacity where is that ?

    im using vb.net 05 express, im trying to make a transparent form, where is the The Opacity property i been looking everywhere hi, its in the properties table at the bottom under "window style" tab has its value as % or if you want to put it as code it can take value between 0 and 1 ...Show All

  • Windows Forms Adding user control to panel

    I did  a program to add multiple user control to a panel.  My problem is whenever i add a new user control , the new user control will be at the top and the other previously added user controls will be moved below.   I want the new user control to be below and the others all remain on the top...is there any way This is&n ...Show All

  • Windows Live Developer Forums Windows Live Messenger Beta Invitation Winners

    Last week, the Messenger team offered Windows Live Messenger Beta invitations to the first 5 people who submitted Activity Apps that passed the provisioning process. Drum roll please...  And the winners are: 1. Notesaic by Daniel Tse 2. Quatro by Chris Weeink 3. Boter kaas en Eieren by Glenn Klijn 4. Let's Play Chess by Prasad DV 5. CooperYoung by Frans-Willem Hardijzer Congratulations to the winners!  You will be receiving your beta invitations shortly via the email address used when you submitted your application to the contest. Keep the apps coming!  The Worlds Best App contest continues until midnight (PST) December 31, 20 ...Show All

  • Visual Studio Express Editions Visual Studio Installation Express

    Have just installed Visual Web Developer Express with SQL Express. Seemingly successfully Running the program for the first time and creating a "personal website" a suggested produces this error on attempting to view the newly created site " The file "\\fs01\Users\robin\My Documents\Visual Studio 2005\WebSites\WebSite3\App_Data\Personal.mdf" is on a network path that is not supported for database files." My PC is part of a W2003 domain and the My Documents folder is redirected to the User's home network drive. I don't want to change this. How do I place the database on a local drive Any hel ...Show All

©2008 Software Development Network