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

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

DBizFoShiz

Member List

amitMerla
Dr. B.
Karzanboy
DOlmsted
mrdomiscoding
Dude on base
Jean Philippe Boucher
renealejandrov
StephenCraig
MBE
ChristophB
ScottTTx
Mark 5762
Tiggyboo
QATester01
nad22
Viral
Chad_06
Dave Huntley
Doug Holland
Only Title

DBizFoShiz's Q&A profile

  • Visual Studio Team System Partial results display from some reports

    Hi there,     I'm seeing weird bug in reports in my Bug server which VSTS Beta2. For Few reports like Bug List, I only see result being rendered for up till certain bug. In this case up till bugId 102. For all such reports results are coming only for up till that bug. I'm not sure what happed after that bug that is causing rest of the bugs to not to appear in reports results. In the query thuogh I see all the bugs, but in the reports they are mssing. Can someone explain what could have caused and how can I fix that Thanks, Anu Hi Anu, One thing you might check out is the event log.  Check to see if you are gett ...Show All

  • Visual Studio Add Shortcut key to my Add-In

    Hai.....,          How can I assign a shortcut key to my Add-in so that when installed, my command has a shortcut assigned to it. By default when we assign a command to the Tools menu, we specify parameters such as the Command Name, Button Name, MSOButton, etc., But where must we specify the shortcut for our command Regards, Hemant You get "The Parameter is incorrect" is because you are trying to assign an array of object to Command.Bindings. Command.Bindings is of type of Object, so just try cmdAddCode.Bindings = "Text Editor::CTRL+E"; HTH ...Show All

  • Visual Basic Interesting Calculations

    Hello everyone, I have a interesting problem. I'm trying to calculate how many pallets, boxes and units I need out of a ordered number of pieces. Let's clarify this by an example: I need 6852 pieces in total: (I keep this info in a database, so this info is available for use) * 1 pallet = 4000 pieces (20 boxes) * 1 box = 200 pieces * 1 unit = 1 piece The goal is to calculate how many pallets, how many boxes and how many single pieces i need to fullfil my order. So the output should be as follows: 6852 pieces = 1 pallet (4000 pieces), 14 boxes (2800 pieces), and 52 units . This seems easy, but I think it ...Show All

  • Windows Live Developer Forums ReplaceIM and RecieveIM - How to use???

    Say the user types 'hello' and presses send, is their a way to replace 'hello' with 'hello, how are you' before it is sent out. So the modified message is sent. Also, can this be done on recieving messages as well, so the recieved message is modified before it is displayed Because their is the ' ReplaceIM' and 'RecieveIM' properties and i would like to know how to use these. Thanks -Balupton ' ReplaceIM' and 'RecieveIM' tag to True in messanger xml file function Channel_OnRemoteAppClosed() { msChannel.SendIM( fetchRemoteNickname() + " Has Left the Conversasion "); } function fetchRemot ...Show All

  • Visual Studio Open VSS from winforms app

    I am developing a windows forms app. I want to allow the user to open VSS explorer on clicking a button. How can I do this thanks Hi, You can identify the VSS install folder for instance by reading the following registry value HKEY_LOCAL_MACHINE\SOFTWARE\Microsoft\SourceSafe\SCCServerPath. (This gives the location of the MSSCCI dll ssscc.dll) Then, to launch VSS explorer you should run the "ssexp.exe" application from the same folder as ssscc.dll. Alin ...Show All

  • SQL Server Can't SqlCommand - Help.

    Hi all, I am using VS C++ 2005 and SQL Server 2005 to build a simple application which will work with a database. I can write the code to open the database which all goes well, but as soon as I write in a 'SqlCommand' and execute it I get an error message telling me that the 'Connection' property hasn't been 'initialised'. The code I have writted is as follows: #include "stdafx.h" using namespace System; using namespace System::Data; using namespace System::Data::Sql; using namespace System::Data::SqlClient; int main() { SqlConnection conn( "Data Source=gps028;Initial Catalog ...Show All

  • Software Development for Windows Vista About the solution in "DesignerSerializationManager seems to not work with typeproviders"

    Can anyone confirm that the solution proposed in the topic "DesignerSerializationManager seems to not work with typeproviders" ( http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=420682&SiteID=1 ) does solve the problem Thanks. Yes - I can confirm that the WorkflowMarkupSerializer (as well as many other WF components) rely on the TypeProvider to get type information, and a key in many WF apps is getting your TypeProvider setup correctly. ...Show All

  • .NET Development How do you Broadcast Data over the Internet?

    Is there any possible way to broadcast data over the internet I need to use this data in a Visual Basic application in a dataset; my application is compleletly datacentric. I have read many msdn articles, but none of them have actually told me how to broadcast the data. I have also looked into many technologies like ASP.NET, SQL Server, XML, and I just don't know the best way to get the job done... I need the data source to work for Visual Basic 2005 projects and I also need it to be secure... If some could please steer me into the right direction, I would greatly appreciate it... What do you mean by... broa ...Show All

  • Visual Basic Using DragDrop on a datagridview with a bound datatable

    I have a datagridview bound to a datatable. I have selected dragdrop and can confirm that when I drag an item over the datagridview column that the display does in fact update. I am using the line below to make this happen on DragDrop '----------------------------------- Private Sub InputGrid_DragDrop( ByVal sender As Object , ByVal e As System.Windows.Forms.DragEventArgs) Handles InputGrid.DragDrop Dim controlMousePos As Point = InputGrid.PointToClient( New Point(e.X, e.Y)) Dim hitTest As DataGridView.HitTestInfo hitTest = InputGrid.HitTest(controlMousePos.X, controlMousePos.Y) Dim Col As Integer = InputG ...Show All

  • Visual C++ Linking Error (Related to GetEventSinkMap,DECLARE_EVENTSINK_MAP)

    I get this linking error:- error LNK2001: unresolved external symbol "protected: virtual struct AFX_EVENTSINKMAP const * __thiscall CMyClass2::GetEventSinkMap(void)const " ( GetEventSinkMap@ECGetFieldDlg@@MBEPBUAFX_EVENTSINKMAP@@XZ ) Can some one please tell me the reason and solution of it as well. Best Regards, The reason is that your program needs a definition for: const AFX_EVENTSINKMAP* CMyClass2::GetSEventinkMap() const; but no such definition is being included at the link step. ...Show All

  • Visual C++ Program terminates without finishing code

    hi... what is happening when a program terminates (no error messages) without executing the rest of the code my code is attached below. The while loop does not iterate and after one iteration, my program exits. I don't know what is wrong and how I can debug... Thanks for any help. #include <stdio.h> #include <speex/speex.h> #define FIXED_POINT #define MaxFrameSize 500 #define MaxFrameBytes 500 int main (int argc, char ** argv) {     printf ("sampleDEC.exe started!\n"); /**/     int nBytes, FrameSize, BitRate;     FILE *fin, *fout;     char *inFile, *outFile, *PEnhancemen ...Show All

  • Smart Device Development connection issue

    Hi, i'm trying to access MSDE from smart device apps. but connection  failed.Actually i tried this before few months. spent more than a week. but failed. so i just used SQL 2000. Now it's a time to change from SQL 2000 to MSDE. So again trying my best. but still I couldn't make the connection. if i test the connection from Server Explorer -> database connection, connection succeeded. but when i try to establish it via pgm(VB.NET), failed to open the connection. As u said,I enabled TCP/IP. Firewall - off anti virus - unloaded. OS -windows xp pro SP2 Dev.Env :VS2003 still getting error like "Server not found - "CMP1\MSDE1" ...Show All

  • Visual Studio Team System B3R Client Install Error Code 2381

    During the installation of the Team Foundation Client. A messagebox appears with the following error... "The installer has encountered an unexpected error installing this package. This may indicate a problem with this package. The error code is 2381. " I'm Installing from the Best 3 Version CD-ROM. OS = Windows 2000 Installed Office 2000 SQL 2000 VS 2003 VS 2005 Team System 180-day trial. Please assist. No, you cann't. You need to have MSDN subscription to have access to RC. Bo ...Show All

  • Smart Device Development Command Prompt for Windows Mobile 5.0 Devices

    Does anyone know if there is a command prompt that runs on Windows Mobile 5.0 Devices   The one that I had been using on PPC 2003 devices does not run on Windows Mobile 5.0 devices. Alicia This has been blogged at http://blogs.msdn.com/marcpe/archive/2005/06/20/430725.aspx 1     Go to the home screen, press and hold the ‘action’ key (that’s the middle button of the direction keys). By default the Pocket PC 5.0 emulator uses the right Alt key for ‘Action’. 2     Tap and hold the clock in the top right. 3     Select ‘Run’ SRIKAN ...Show All

  • .NET Development Adding rows to table in Dataset

    VB 2005 express beta 2 I've set up a dummy project to learn how to insert rows into a database, and i'm having some trouble. You'll see the naming convention right away.... Here's the code that looks like it should work... the warning that pops up is that the variable NewTestRow is used before it has been assigned a value. i want it to be a new row in the table, but can't figure out how to set it as a new row. Private Sub TextBox1_Leave( ByVal sender As Object , ByVal e As System.EventArgs) Handles TextBox1.Leave     Dim NewTestRow As TestDataSetDataSet.TestTableRow    NewTestRow. ...Show All

©2008 Software Development Network