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

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

nwkrzysztf

Member List

gjhdigital
Faisal Abid
digimonk
JKCroney
Michael Collins
Assaf Ella
PanBocian
Vhii
Rashmin_s_saraf
jonrmorgan99
godzilla9
asd9ny0yy
BillM
Mans
CMP
Martijn Iseger
David Bennion
Seba85
OwenG
soskman
Only Title

nwkrzysztf's Q&A profile

  • Visual C++ Manifest file when using both /MD and /MDd DLLs

    I have an application that can be built in debug (/MDd) or release mode (/MD). This application uses third-party DLLs that are built with /MD; for example the Microsoft PDH.DLL. There is no memory-mismatch issue since these third-party DLLs handle properly all memory allocations/deallocations. When I build my application in release mode (/MD), everything works. When I build it in debug mode (/MDd) and run it, I get the error dialog   "This application has failed to start because MSVCR80.dll was not found. Re-installing the application may fix this problem". I was able to work-around this ...Show All

  • Software Development for Windows Vista vista 5231

    Help!!! Please.. I've just got build 5231, and installed it onto my box. Some weird and horrible reason it's not allowing my network card to install correctly. I have a SIS 900 integrated network card, that according to device manager, it has installed but requests me to re-install the drivers. When I go through the motions it has my drivers listed in the drivers list. But always reports that an error has occured whilst installing. I've downloaded the most upto date drivers from sis, and tried installing them via Compatibility mode ( set as xp ). But I get errors whilst doing that. Has anyone got any reasons why this would happen It's vital ...Show All

  • Visual Basic how do I get web templates in my ide?

    how do I get web templates in my ide When I installed beta2 I chose visual basic.  Now I want to try some web pages.  I find no way of changing my profile so that I can create some web projects. Can somebody please help me dennist Forgot to mention in my earlier msg, I have installed from the "Visual Studio 2005 Team Suite" CD. I am assuming I can use it as an individual developer without a team. ...Show All

  • Visual C++ Is it possible to...

    ...number the lines in the compiler to make it a little more convenient to locate errors For example you have an error on line 250 in your 500 line program and most people wouldn't want to count to 250 (and I know I dont want to), so I was just wanting to know if the lines can be numbered or if there is another way to easily find the line that contains the error. ...Show All

  • Visual Basic Loading Crystal Reports Report, How To Stop Prompt Enter Login ID And Password, This Never Happen Before

    How do I stop VB from asking me this I want to view the Crystal Report immediately without the prompt. With a simpler version of my application, it never asked me this. Thank you, Christopher Lusardi This is a pretty common problem. So common that they created a nice knowledge base article on it which I think should shed some light on the situation. http://support.businessobjects.com/library/kbase/articles/c2010371.asp In addition they have some sample code you can take a look at: http://support.businessobjects.com/communityCS/FilesAndUpdates/vbnet_web_samples.exe.asp ref=devzone_netzone_resources_supportsampleapp ...Show All

  • Visual Studio Express Editions Simple Pause

    Hi, I'm trying to add pauses into one of my programs. If the pause is in a loop, the system hangs up on it. As a simple example, the following works fine - it waits 4 seconds then puts "5" in the label box: Dim g As Integer = 5 System.Threading.Thread.Sleep(4000) Label1.Text = g The following code, however, doesn't work. It just hangs up and does nothing: Dim g As Integer For g = 1 To 10 System.Threading.Thread.Sleep(4000) Label1.Text = g Next I'm just trying to throw in a pause during each iteration of the For loop. I've tried the things mentioned in the threads "A P ...Show All

  • SQL Server question on using xp_cmdshell

    I am trying to run an exe file like: EXEC master.dbo.xp_cmdshell '\\Share\sharepoint\folder1\folder2\test.exe "input parameter"' And executing the above with the input should give me an output.But the input parameter is not recognised. Any help. Thanks EXEC xp_cmdshell 'dir *.exe'; try removing the double quotes, above I do a DIR command passing in *.exe ...Show All

  • Windows Forms Reduce SPACE

    Hi vevery body How I can reduce space between the items of a listview if that listview is in LargeIcon view. Thanks ...Show All

  • Visual Studio Tools for Office regarding actions pane

    i created arround 5 user controls and added them to actions pane when i run the excel appln, all the user controls are shown in the task pane with heading 'document actions' in excel there are many task panes like getting started,help, search etc what i want is to have each user control on a separate task pane so can we create multiple task panes in vsto Hi, You can only customize the Document Actions Task pane, and there is only one actions pane available. What you can do, is hide and show controls on the actions pane for the different scenarios you want to cover. For example, you could show ...Show All

  • .NET Development Cropping Image using GDI problem

    I am using C# and GDI to crop an image but I am having a problem where the far right and very bottom pixels are being set to white no matter what I do. Here is my code, note I have also tried this using unsafe code where I simply copy the pixels over. public static Image cropImage(Image img, Rectangle cropArea) { Bitmap bmpImage = new Bitmap(img); Bitmap bmpCrop = new Bitmap(cropArea.Width, cropArea.Height, bmpImage.PixelFormat) ; Graphics gphCrop = Graphics.FromImage(bmpCrop); Rectangle recDest = new Rectangle(0, 0, cropArea.Width, cropArea.Height) ; gphCrop.DrawImage(bmpImage, recDest, cropArea.X, cropArea ...Show All

  • Visual J# Is there a public J# Roadmap ?

    Hi I am looking for the public J# roadmap, does anyone know where I can find it Ohad What exactly you are looking for Could you please let us know why this is required for you Thanks Neela ...Show All

  • Windows Forms multiple forms and datagridview question

    Hi all :) New problem today for me :( I have a form where users are allowed to insert some data. On another form, i have a datagridview that filter records. On this form, im trying to select a record on datagridview, and bind results to another form that is already opened and active. Thx at all in advance. I would create properties on the Data Entry form and when an item is selected in the DataGridView, set the parameter values on the Data Entry form. In the property set statements on the Data Entry form, post the data to the related controls. Obviously, you will need to handle w ...Show All

  • Visual Basic Processing Serial Data

    I need the reduce the processing time in a uMicrocontroller to allow faster sampling times. This has creates a problem in the data collection routine in VB. The old system collected the analog data a converted it to a decimal format before sending it to the serial port. This data is collected and saved using Hyperterminal. The VB program would, when run, would open this file and process the decimal data by graphing it. What I need is to capture the data directly and process a binary word. All attempts to run the graph program have failed! I'm sure it's in the way I'm reading the data. I've not been able to find much informatio ...Show All

  • Microsoft ISV Community Center Forums Avalon Adaptation

    Scenario Lets say that Avalon is released for XP (and in Longhorn) on time, Holiday season 2006, and that it is accepted as “wonderful” like we all know it will be. Question: How rapidly will it make its way onto the corporate desktop What percentage of corporate desktop machine will have Avalon install one year later, two years Are there any moderately reliable figure that we can use in our sales projections Anything will be helpful Thank you Mike Greenway Thanks Vikram. I think WinFX/Longhorn is going to put .NET on-the-map in a real way. Right or wrong..... I'm going for it. Mike Greenway ...Show All

  • Windows Forms Binding a combo box to a data set

    Hi, I am trying to just list some columns in my dataset by binding it to a  combo box in windows form application. I can easily do that in a web  application. But really doesn't seem to work as a windows form  application.  Label1 and label3 lists the values in my dataset. But label2 displays  it as a DataRowView object. Could any one p ...Show All

©2008 Software Development Network