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

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

Jazman

Member List

Andreas Kammann
aravinda.kishore
RyHarris
jsh02_nova
RSInstall
Darrell
Hibri Marzook
lcDavenport
LalewicZ
mpco
jneubeck
gssi
PAINKILLER1009
DomL
Yi Fang
nrs251
Jason W
webm0nk3y
Osamakhattab
KhaderM
Only Title

Jazman's Q&A profile

  • Visual C++ Making dlls with Visual C++ Express Edition Beta 2

    I am wondering if there is a way to make a dll in Beta 2. The radio buttons are greyed out. I do not have Beta 1. Is there a way I could make a dll in the win32 application I want to make a plugin for Maya. Though I do not want to pay money in order to do this. Is there an easy way to do this. Thanks. I went to View | Propert Manager, then Double Clicked on the Release|Win32 Heading.  That opened up the Release Property Pages which has a Configuration Type entry under Project Defaults.  That is where I could select a DLL. This was with the Release version, not Beta 2. ...Show All

  • Visual Studio Express Editions win 32 console application

    ok, i know how to make a form run hidden, but is there a way to make a win32 console application run in the background pyrodouthat wrote: ok, i know how to make a form run hidden, but is there a way to make a win32 console application run in the background I'm not sure about "running in the background" but there is a way to hide the console window and only see what the application creates in displayable Windows classes (like Message Boxes). Using the console version of MessageBox that I compiled, here's how I just did that. Put the .exe of the program wherever you want to run it from. It can be some out ...Show All

  • Visual Studio Team System Report Server - local AppServer only?

    Greetings- Looking for confirmation of default Report Server requirements: Dual Server setup; Visual Studio Team Foundation Server Going through the dd_vsinstall80.txt file that is generated - it looks as though when performing the application server install, that it wants the Report Server to be running on <localhost> (in this case the app server itself). Our configuration has a cross-matrix of two different related server solutions (and works flawlessly - with the exception of VSTFS) Server 1 (Database Server) WS03 EntEd SP1 IIS 6.0 ASP 2.0 ASP 1.1 SharePoint Portal Server    >>Connected to SQL server 2005 Enterp ...Show All

  • Visual C++ Compile Error

    I have some training in C++ but limited expererience. I am editing a program written to change some configurations. #define MAX_DESIGNELEMENTS        500 The limit needs to be increased. When I manually edit and recompile, I get an error message - resource.h not found. How should I go about correcting this. Any help will be greatly appreaciated. The compiler cannot find a header file named "resource.h". This is usually due to one of two reasons: 1) The file really isn't on your machine: this can be due to a bad install of the source code for your application (either by copying or sync'ing to a SCC sy ...Show All

  • Visual C++ changing file path for a project

    Hallo, 1) Suppose in my project, i have added c++ files from location c:\c++. Now if i have moved the files from c:\c++ to c\proj\c++, ofcourse when i open the c++ file in the project i will get the error "file not found" . one solution i know is to delete the files from project and add from the new location. but this is not always practical. is there any way to change the path without deleting the files from the project  and adding from new location i am using visual studio.net 2003. has anybody some other solution 2) i am using CString in the project and when i debug gets the message "show disassembly..." i have included both &nbs ...Show All

  • Visual C# Can I change the BackColor of the DataGridView's Column Header and Row Header (C# VS 2005)

    Please help me-out with this issue. check DataGridView.ColumnHeadersDefaultCellStyle Property http://msdn2.microsoft.com/en-us/system.windows.forms.datagridview.columnheadersdefaultcellstyle.aspx     MSDN.COM wrote: private void SetUpDataGridView() { this.Controls.Add(dataGridView1); dataGridView1.ColumnCount = 5; DataGridViewCellStyle style = dataGridView1.ColumnHeadersDefaultCellStyle; style.BackColor = Color.Navy; style.ForeColor = Color.White; style.Font = new Font(dataGridView1.Font, FontStyle.Bold); dataGridView1.EditMode = DataGridViewEditMode.EditOnEnter; dataGridView1.Name = "d ...Show All

  • .NET Development VS 2005 & Access DB problem

    Hi ppl, I'm having one of the strangest problems I have encountered while working with Visual Studio. The story is simple - I'm building a simple application (something like book collector, but it's not relevant to this question) and everything has been going perfectly for a month, until few days ago. All of a sudden, I cannot run the application without getting strange error message: The Microsoft Jet database engine could not find the object 'Expr1002'.  Make sure the object exists and that you spell its name and the path name correctly. The strangest thing is - I don't have anywhere in my Access DB or within any query in VS an e ...Show All

  • Windows Forms Displaymember by valuemember

    Hi all, I there a way to get the displaymember value by a valuemember  in a combobox So for instance i know the valuemeber(id) of a combo is 10 , is there a way 2 get the displaymember(descrition) value I know i can loop in the objectlist , but i don't think that is verry efficient Remco HI I think i was'nt clear! A combobox got  ...Show All

  • Visual Studio Express Editions serial port will not trigger data received event.

    Hello All, I have this problem that is driving me crazy. First I need to say that the test bed is a virtual null modem and another piece of software I have written that sends data serially. I am able to get this to work flawlessly using MSCOMM, but I want to figure out why it will not work with VB2005 express Serial port. Here is the serial port code. Private Sub Form1_Load( ByVal sender As Object , ByVal e As System.EventArgs) Handles Me .Load 'MSComm1.PortOpen = True 'MSComm1.RThreshold = 1 If SerialPort1.IsOpen = False Then SerialPort1.Open() If RadioButton1.Checked = True Then warn_charge() ...Show All

  • Windows Forms Client Source Code Availability

    Dear Terrarium Moderator, It has been awhile since a thread on client source code so I thought I'd ask. Are there still plans to release the client source for Terrarium If yes, is there are a target date If not, why not and are there plans to work on another release of Terrarium or is it 'done' Thanks a bunch. I'm a graduate student in computer scienc ...Show All

  • SQL Server Query Issues......help!

    SELECT tblWatchInstance.RepairNumber,tblWatchInstance.Comments,tblWatches.OwnerFName,tblWatches.OwnerLName FROM tblWatchInstance INNER JOIN tblWatches ON tblWatchInstance.Watch_Key = tblWatches.Watch_Key WHERE tblWatches.OwnersLName LIKE '%son' AND tblWatchInstance.ReapirNumber = (@RepairID)", myConnection for some reason when i added the Where clause, it stopped working and i dont really know why......Do any of you great individuals see anything wrong here I suppose you have an open quote to your query string as well and that this is not part of your query: ", myConnection Is your @RepairID by any chance eq ...Show All

  • Visual C++ new to VC++ 2005, have a few problems

    1-In VC++6.0 i could compile a single file by just opening a c++ source file(workspace less) and press the build button. But in vC++ 2005, if i open a c++ source file, the build command is unavalible. i tried to do it by creating an empty project and adding a c++ source file to it. well i can run the code succesfully, but i can not debug it. How can i do it 2-How can i want to add a template to my project: template<class TYPE> class CMyArray:public CArray <TYPE,const TPYE&> I can do implementation manulaly and add the function using the add function wizzard. But this is not of satisfactory. I want to use a wizzard to ...Show All

  • SQL Server Foreach Loop Container in SSIS

    Could someone send me any links or information on how to loop through an ADO.NET dataset in SSIS I need step by step information please. Thank you, Shiva Here are BOL topics that might help http://msdn2.microsoft.com/en-us/library/ms187670.aspx http://msdn2.microsoft.com/en-us/library/ms141724.aspx http://msdn2.microsoft.com/en-us/library/ms140016.aspx Some other helpful links http://www.whiteknighttechnology.com/cs/blogs/brian_knight/archive/2006/03/03/126.aspx ...Show All

  • Visual Studio 2008 (Pre-release) LINQ for compiling cool... but what about dynamic queries at runtime?

    just curious how this'll be handled.   having queries directly embedded in the code is awesome from a type safety standpoint, but what about at runtime i assume some kind of "on-demand" Compiling for a program like "SQL Query Analyzer" (more aptly named LINQ Query Analyzer) that is dynamically compiling these LINQ queries and seeing results, kinda like snippet compiler. I bring this up becomes sometimes you gotta give query ability to the users (report generation etc) This is definitely something we're thinking about. We shipped a sample called Espresso that shows you how to do this yourself. We un ...Show All

  • Visual Studio 2008 (Pre-release) Installing Windows Presentation Foundation

    I installed WinFX RTC founded at http://msdn.microsoft.com/windowsvista/getthebeta/default.aspx . Then I try to install Windows SDK but a receive an error and installation abort. The error log is here: ----------------------------------------------- 14.08.10 venerdi 13 gennaio 2006: [SDKSetup:Info] Begin 14.08.10 venerdi 13 gennaio 2006: [SDKSetup:Info] SDKSetupDll_DoTasks: Starting 14.08.10 venerdi 13 gennaio 2006: [SDKSetup:Info] SDKSetupDll_DoTasksWithGUI: Starting 14.08.11 venerdi 13 gennaio 2006: [SDKSetup:Info] Config_Products_Detect: Begin detection of product: Microsoft Document Explorer 2005 14.08.13 venerdi 13 gennaio 2 ...Show All

©2008 Software Development Network