Software Development Network Logo
  • Windows Vista
  • Audio and Video
  • Windows Forms
  • Microsoft ISV
  • IE Development
  • Visual Studio
  • Smart Devicet
  • SharePoint Products
  • Visual Basic
  • Visual C#
  • Game Technologies
  • VS Team System
  • Visual C++
  • .NET Development
  • Visual FoxPro

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

Stckmn3

Member List

Brunosdd
nef001
Olaf vd Sanden
Danny_FADBA
Chris Boorman
UtterMan
BlueBeetle
BrentHecht
errolian
Jim P.
Gohan222
gmcbay
dvferretm
Vijay Thirugnanam
orcmid
OPH
Jordan Roher
ykgreene
PaulDotNet
XNA Rockstar
Only Title

Stckmn3's Q&A profile

  • Visual C++ CImageList, CBitmap and CToolbar

    Hello, suppose I have few bitmap files a.bmp and b.bmp which i mange to load into CBitmap instance a and b accordingly. Now suppose that I added them to a CImageList, then how can I load / set it to a CtoolBar tnx Why don't you use a complete bitmap of all symbols for the toolbar The only way I see is to create a new temproral bitmap. Draw all images from the Imagelist into it and select this with CToolBar::SetBitmap into the Toolbar. But if you decide to use a CToolBarCtrl you can driectly use the imagelist with the member function SetImageList! ...Show All

  • .NET Development System.Runtime.InteropServices.COMException: This command is not available

    The application is working fine in my local machine.But after deployment in client's machine I am getting this error.Please help me. How are you writing to the Word document if not via the COM-based Office automation APIs Anyway, it sounds like you should add proper exception handling and logging to your application so you can tell where the exception originates from. ...Show All

  • SQL Server move database from development to production

    What's the best way to move database from development to production environment SSIS usage of databases or databases in general If you want databases in general the Database Engine is a better forums for this question. Thanks, Ovidiu Burlacu ...Show All

  • SQL Server Population size in Naive Bayesian algorithm

    Hi, I am working with Naive Bayesian Algorithm and I do not understand why if the original table has 8.000 rcds the size of the entire population shown in Hystogram viewer is only of 2000. Do you have any answer Histogram In the Attribute Profiles part of the viewer If this is the case, then the most probable cause is that teh column you marked as Key in the mining structure does not contain unique values. Another possibility is that some of the conditional probabilities detected by the algorithm fall below the limit considered by the algorithm (which is controlled by the MINIMUM_DEPENDENCY_PROBABILITY algorithm parameter). So -- you could make sure that the key is unique, or lower the value ...Show All

  • Software Development for Windows Vista filter compilation under vista issue

    Hi all, I am trying to compile a directshow in-trans filter using the VS2005 over vista. This filter was compiled fine under VS2005 over XP . It does not compile giving the following output: Command Lines Creating temporary file "d:\MediaCam 1.0\mCam\New_MD\Release\RSP0000028923592.rsp" with contents [ /O2 /I "D:\MediaCam 1.0\mCam\Logger" /I "C:\Program Files\Microsoft SDKs\Windows\v6.0\Include" /I "C:\Program Files\Microsoft SDKs\Windows\v6.0\Samples\Multimedia\DirectShow\BaseClasses" /D "WIN32" /D "NDEBUG" /D "_VC80_UPGRADE=0x0710" /D "_WINDLL" /D "_UNICODE" /D "UNICODE" /FD /EHsc ...Show All

  • Smart Device Development How can RAPI detect SmartPhone vs PocketPC

    I am developing a mobile application that runs on both SmartPhone and PocketPC. I have a PC based management app that needs to load software and configure the mobile application for each platform differently. ActiveSync 4.2 seems able to identify if a SmartPhone or PocketPC is connected but RAPI does not appear capable of returning this information. I see that other people have also struggled with the same problem. Can anyone help I have seen the blurbs about having common binaries for the two platforms but I don't think that is going to work for my case. thanks, KevinBase Hi Kevin The RAPI2 Interface IRAPIDevice provides a way to identify a connected device. See here: http://msdn.mic ...Show All

  • Windows Forms Datagridview GUID as primary key

    For the life of me I have forgotten how to handle this. I have a primary key that is a GUID another column that is a NChar 'FName' for first names. These items or I should say datagridview is bound to a dataset. When I start to enter first names in the column and move to the next column I get an error stating that the primary can not be null. How do I stop this Thanks. I would do it a little different in the form load event I would add a handler to the tablenewrow event. AddHandler DataSet1.Table1.TableNewRow, addressof dt_TableNewRow Private Sub dt_TableNewRow( ByVal sender As Object , ByVal e As System.Data.DataTableNewRowEventArgs) CType (e.Row, Dat ...Show All

  • SQL Server Function Compiling Error 2005(2153)

    Hello! I have scalar function which calls from stored procedure. When SP recompiling (before start) in profiler I see Exception "Error: 536, Severity: 16, State: 5" - Invalid length parameter passed to the SUBSTRING function. at next line of function (original text changed for easy sample) : if @p1=4 set @s1=substring(@ipstr,1,@p1-1) but at same line like: if @p1=4 set @s1=substring(@ipstr,1,3) works good. Somebody can explain such I think you should proivide full repro with variables declaration and initialization. Don't forget to mention MSSQL version you run this script on. ...Show All

  • Windows Forms newby textbox . question

    i have set my textboxes to only allow one instance of "." my problem is that if i have already typed something that contains a"." when i tab over to the textbox that already contains a "." the text highlights but if the first character i type is a "." it won't do anything. i want to delete all the selected text and replace with the new text. all other keys work fine but since i limited the textboxes to only allow one instance of "." it won't do anything. i need to some how make it replace all the selected text with "." when i press the "." key Thanks Try this: Private Sub TextBox1_Enter(ByVal sender As Object, ...Show All

  • Windows Search Technologies no search results

    I recently had a corrupted registry that prevented my WinXP pro machine from booting. Our Tech Support team was able to repair it, but it appears my workstation is still somewhat crippled. I had to reinstall all of the software back on it, and lately I've noticed that the Search function within File Explorer fails to return correct results. I have several .asp text files in a folder, at least three contain the result I'm looking for, and the search only returns one instance of these files. Refining the search makes it worse. I get no results at all, when I'm certain there are more than three instances of the string I'm looking for within the files in this folder. Any help will be greatly appreciated. Hello Genaro, The search ...Show All

  • SQL Server Most time consuming SQL Queries

    What are the types of queries that are most time consuming...which may easily lead to expired time out etc...thanks Regards Alu I wanted to compare sql queries from oltp db with mdx queries from udm. Therefore i need specific queries that using udm has the advantage over the norm. Regards Alu ...Show All

  • Visual C++ Creating MD5 hash

    Hello, i'm new in C++, i want to make console program for creating md5 has, you can enter string and from that string program would create md5 hash and display it on the screen. I have searched msdn library and i found MD5 class, but i don't uderstand it well, so can somebody give some tips or some sample code. Sorry for my bad english Nishant Sivakumar wrote: With 2003, you need to use the old-syntax. Here's some code to help you along (I ported the other poster's new syntax code to old syntax) that's it, code is runing good, that's i need it, now i can implement my code and i have class for md5, thanks ...Show All

  • Visual C++ Standalone EXE

    Hi everyone. I have just started using vsc++ 2005! However, I made an app and tried to run it. It worked. But running it on any other PC is hell. I have since searched the forums about how to make it standalone, and now i am very confused. Please could someone help me by posting step by step instructions for the idiot. Please don't link to other threads because I have read them all. wilk06 - Thank you no. the VS IDE (VS.NET) uses .NET framework to create the application you are developing. all the components etc... are part of the framework. You will be using them in your application. Otherwise to make a standalone .exe file, you will have to use something like C/C++ to do this, not ...Show All

  • Visual C# Inheritance Bugs in Windows Forms

    I'm using the Visual Studio 2005 to do WinForms development and have been repeatedly running into problems with inheritance. What happens is that sometimes when I override methods in a base class the override isn't called - but the base class method is called instead. I've verified repeatedly that the code is correct, the method signatures match, and the override should be called (polymorphically) rather than the base class method - and yet it calls the base method instead. I haven't seen in in none Form-based classes so far, but I've seen it several times in specialized Forms that I've created. In each case, the problem is the same. The base class method is invoked rather than the override method. It appears to be a bug in the compiler. N ...Show All

  • Visual Studio Express Editions mspdb80.dll was not found !

    When I tried to run cl.exe from the command line, the error message I get is "Application unable to start, mspdb80.dll was not found". Can somebody help me with this Thanks, Deepak I'm running Express 2005 and the default path for the IDE directory is: C:\Program Files\Microsoft Visual Studio 8\Common7\IDE You should find it there. ...Show All

©2008 Software Development Network