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

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

bismarck

Member List

Kareem Shaker
edudog48
Gopinath M
egyamado
Subhash
Laurence Hunter
Juany
BigAlz
Gem Lode Ranch
crjones99
Scott Berry
Tiago Colombo
Chris Drie
Ganeshm
AbdulHak
paolo_cc
welsh
Juliau
Ajey
Java Programmer
Only Title

bismarck's Q&A profile

  • Visual Studio Team System reports not showing up on home page

    Hi, Am trying to understand why Remaining Work stays empty on the home page of the team portal. If I go to modify the web part - and hit 'test link', the report loads up flawlessly, although it doesn't show up by itself WITHIN the webpart. any ideas thanks Hi Roman, Are you still having this issue Are you able to see the Remaining Work reports when you click on it using Team Explorer Thanks, mauli ...Show All

  • SQL Server Choosing explicit cell in Excel to SQL Database

    Hi, is there a way to choose a specific Excel cell and put the value into a specifc column in a SQL table using the wizard For example, when the package is run, to have cell B3's value placed into a newly created row in column 0 and have F6's value placed into the same row in column 1 Thanks for your time, James EDIT: What happens currently is I'll map a particular Excel column and it will create almost 200 rows in my table with mostly null values, as that is the format of the Excel sheet. I would like to create 1 row per Excel sheet, with selected information input. Thanks! It is unclear. With ...Show All

  • SQL Server Replication troubleshooting

    We have some transactional replication jobs from oracle to mssql2005. I found an error in the replication monitor as below, ============================================ Incorrect syntax near 'index'. If this is intended as a part of a table hint, A WITH keyword and parenthesis are now required. See SQL Server Books Online for proper syntax. (Source: MSSQLServer, Error number: 1018) Get help: http://help/1018 Command attempted: if @@trancount > 0 rollback tran (Transaction sequence number: 0x00000000000000000D4300000000, Command ID: 26290) ============================================ I found the corresponding table from the com ...Show All

  • Visual C++ vs .net 2003 class wizard problem

    Hi, I'm running vs .net 2003.  If I start a new mfc project, add a dialog resource, then enter the class wizard to add a CDialog class to my project, everything works out fine.  But if I make a blank Win32 project and start making an mfc project by hand, and try to do the same thing, the class wizard will just exit without making any files or adding anything to my project.  Any advice   I tried changing the project settings to be similar to the mfc project's, but it didn't work.  Any advice would be appreciated. You have to create a native MFC Project in order to use Class Wizard ...Show All

  • Visual Studio Express Editions DB Update Problem??

    Hello everyone I am somewhat new to VB, but not to programming in general.  When I am testing out code I have that updates local DB tables, everything appears to work well.  I close the app and reload and looks like changes are still there.  I then close VB Express and reopen and changes still appear to be there.  But the moment I try to view data in the table directly, I cannot see the values I would expect.  Afterwards, the values appear to be gone when running the application as well.  It's like any time I touch the DB in design, all changes I thought were made to the tables are completely gone!  Is t ...Show All

  • Visual Studio There is no source code available for the current location

    Hello together I have a small C++ .net application written in Visual Studio 2003, Version 7.1.3088. .Net Framework installed 1.1.4322 OS: Windows XP professional, updated automatically The program also includes an unmanaged classes for communication using winsock. The Receiver routine (onDataReceived) operates in a thread . The program works very fine but if  I set a break point to the receiver methode the Error: "There is no source code available for the current location" appears. If I call this method for example directly by a button event, all works fine and I am able to step into onDataReceived. 1.) I already had a deep rechere abo ...Show All

  • SQL Server After Transaction Log Grows, it won't shrink.

    The other day I had someone truncate an extremely large transaction log (100GB) but it wouldn't return the space to the OS, not even after a backup and restore operation. There’s an interesting bit of trivia around shrinking this file. When the log file is truncated, you may not see all of the space returned to the OS. The reason is the way the data might be spread. Here’s the way we think data looks in the log file: <BeginFile>xxxxxxxx-----------------------------------------------<EndFile> So when you truncate it and it gets another couple of transactions, it should do this: <BeginFile>xx<EndFi ...Show All

  • Visual C++ problem with an activeX dll from VB

    Hello, I work with Visual C++ 6 I have to use an activeX dll which is developped with Visual Basic 6. this is my code :  _StatisticJobPtr MyStatsFcts;         /* The class from my DLL */     try     {         MyStatsFcts.CreateInstance(__uuidof(StatisticJob));         MyStatsFcts->CreateStatisticJob(...);         MyStatsFcts.Release();     }     catch (_com_error& e)     {             /* T ...Show All

  • Visual Studio Team System Working Offline with Source Control

    Hi, Am I supposed to be able to work offline with Team Foundation server I have a solution with a few projects in Team Foundation Server. I do 1.5 hours a day on the train and I usually work on my code on the journey. (I'm sure this is a common requirement and in fact I used to do this all the time with VS.NET 2003 and SourceSafe) When I'm offline I open a solution I get a few messages and I opt to "temporarily work uncontrolled". When I'm back at the office... -If I've added new items they are in my project but not in Source Control (I have to exclude from project and include to get them in Source Control) -If I've edi ...Show All

  • Visual Studio Express Editions Where's the "e-book"?

    As one of my "Registration Benifits" listed, I see: E-book - Download an electronic version of MicrosoftR Visual C#R 2005 Express Edition: Build a Program Now! from Microsoft Press I've searched High and low -- Where do I find this hi, if you registered your product you can check this link https://connect.microsoft.com/downloads/downloads.aspx SiteID=40 hope this helps ...Show All

  • .NET Development Major shortcomings -will vs2005 fix them?

    I coded Dim a As Boolean = Me .ActiveCheckBox.CheckState and get the warning, implicit conversion from syste.windows.forms.checkstate to boolean. I have lots of such warnings.  You'd think vs would allow you to get more information on how to solve it.  I have many such warnings and can't submit a million questions to this forum on solving each one. In addition, I can't copy the warning Another irritant is the well known need to click alt+enter A bigger problem is my attempt to inherit and add features to a binding navigator. Let me quote from my submission to microsoft Please refer to microsoft technical forums http:// ...Show All

  • SQL Server problem on sending message

    Hi few weeks ago I found an example of conversation using service broker. I used the following code: USE Test GO -- First, we need to create a message type. Note that our message type is -- very simple and allowed any type of content CREATE MESSAGE TYPE HelloMessage VALIDATION = NONE GO -- Once the message type has been created, we need to create a contract -- that specifies who can send what types of messages CREATE CONTRACT HelloContract (HelloMessage SENT BY INITIATOR) select * from sys.service_contracts GO -- The communication is between two endpoints. Thus, we need two queues to -- hold messages CREATE QU ...Show All

  • Visual C# Arraylist Clear

    I have an object that is recursive.  Meaning that it contains an ArrayList that holds child instances of the same object (like a tree node.....). When I call the Clear method, will all the other children be released or should I call Clear on each of the children's array list Thanks, Bob > So after the top level clear, nothing references the children > and grandchildren (although they reference other non-node objects). > On the next GC, they will be released.  Is this right Yes.  Something is garbage collected if nothing references *it*.  It can reference as much as it likes ...Show All

  • SQL Server Raising errors in Validate() method

    Hi, I am building a custom component. In the Validate() method I am checking for various things. Here's a section of my code: if (ComponentMetaData.InputCollection[0].InputColumnCollection.Count != 1) { return DTSValidationStatus .VS_ISBROKEN; throw new Exception ( "You need to select one and only one column" ); } The problem I'm finding is that my Exception never gets thrown so I never see the error in the UI. if I reverse the 2 lines like so: if (ComponentMetaData.InputCollection[0].InputColumnCollection.Count != 1) { throw new Exception ( "You need to select one and onl ...Show All

  • Windows Forms XP Style problems with treeview

    In my application I have a treeview (with some nodes) docked on left  on a winform.  Before Application.Run, I call Application.EnableVisualStyles and then Application.DoEvents in order to enable windows xp style for controls. When I start the application, the scroll bar is not in Windows XP style, but if I minimize the form and then restore it, the scroll& ...Show All

©2008 Software Development Network