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

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

man302

Member List

Sir CodesAlot
cguy1
David Pallmann
Jim Thatcher
Nick Ericson - MSFT
yoshikatsu
Hermes 68
Lázaro
J B Li
DBRGSS
Krystan Honour
lianaent
N. Gama
Shalafi
S_Gibson
PeterdeLeng
Ivan Hou
guy87
mfsumption
nath
Only Title

man302's Q&A profile

  • SQL Server SAVING PROBLEM

    SAVING PROBLEM Now i know that my database is really saving but it is being saved on the copy database in bin folder of the project folder. But i want it to be saved on databse of the project folder. Everytime I execute the program, the database on the project folder copies itself to the bin folder which overwrites the updated database. I agree with Antoine (Software Design Engineer, Visual Studio Data Design-time) that SSE database has 2 copies ( http://blogs.msdn.com/smartclientdata/archive/2005/08/26/456886.aspx ). He or she suggested to set the property of the databse to "Copy Never" , on my SSE it's "Do not ...Show All

  • Visual Studio Tools for Office Cannot create project

    Maybe this could help someone else: When tring to make a new Word template project, I got the rather unhelpful dialog "Cannot create project" - and the project was indeed not created. Turned out I couldn't create any type of VSTO project anymore. On googling, sometimes this occurred with the 2005 beta, and there were various suggestions for fixes. No mention of anyone seeing this in VSTO 2005. I tried a repair/reinstall of VSTO 2005, but this didn't work, so I tried a repair of Office and that didn't work either. So I reinstalled the VSTO 2005 redistributable, and problem was solved. Still have no idea of the cau ...Show All

  • Windows Forms Basic Question on Properties returning a class

    Hello everybody, I think it would be easier giving an exemple to explain my problem. Assume you create a user control and you have a custom class called CustomClass. In the user control, I declare the fallowing: [VB Code] Private mTest1 as Point Private mTest2 as CustomClass Public Property Test1 as Point ... End Property Public Property Test2 as CustomClass ... End Property [VB Code] So far ...Show All

  • .NET Development Implicit Conversion ... in copying the value of ByRef (VS.2005)

    Hello, I'm going thru the warnings in my source code and I don't know what to do about this one. The error message is as follows: "Warning 11 Implicit conversion from 'System.Object' to 'System.Windows.Forms.CheckedListBox' in copying the value of 'ByRef' parameter 'obj' back to the matching argument." The line that triggers the error is the following:   Dim sSql As String         sSql = " Select DivisionName FROM tblDivisions"         LoadList(lstNotInCompany, sSql, "divisionname")   Public Sub LoadList( ByRef obj As Object , ByVal strS ...Show All

  • SQL Server Probem in using the Copy Database wizard

    I am trying to migrate from  Sql server2000 to Sql server 2005 with the help of Copy Database Wizard of 2005. It is failing in the Last step. That is when executing the Sql Jobs.Could any one help me out Thanks Ram Vajrala Let us know if you are using Attach/ Detach method or SMO transfer Could you please post the exact error message . Please make sure that SQL Agent was started and running before you copy a database using Copy database Wizard Thanks Sethu -- This posting is provided "AS IS" with no warranties, and confers no rights. Use of included script samples are s ...Show All

  • Visual C++ Pages allocated to a process

    hi How do i obtain the pages allocated to a process given its PID or handle i need to know the pages allocated to that process at that instance of time and those pages present in the memory thanks Please follow up your previous thread at http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=419665&SiteID=1 Thanks, Ayman Shoukry VC++ Team ...Show All

  • Visual FoxPro executable database

    I have constructed a project in VFP 9.0.   I want to make the project an executable database so that others that don’t have VFP installed on their machine can access the forms that display the information.   How do I do this   Also I’ll need to update the table periodically so does this mean I put the table on the server   I’m really lost in all of this.   InstallShield Express Limited Edition is a fully licensed version. It just has a few features disabled. As Don notes, it works for many developers with basic installs. If you see a feature disabled that you need, you need to b ...Show All

  • Windows Forms Component with DataTables. How to impliment?

    I'm creating a business object as a component that sits in the tray of a winform or ASP.Net page. This component will have functions that fill data tables. I would like to expose these data tables to binding similar to how the DataSet works. I presume from the documentation that you need to impliment IListSource.  I can get the base component to s ...Show All

  • Visual Basic date format

    i am having trouble comparing dates, 1 is pulled from Outlook [Duedate] which is in the format mm/dd/yyyy and the other is todays date which is in the format mm/dd/yyyy when I display it in a message box, however I get the message type mismatch or the value in the condition is not valid Set myItems = myTasks.Restrict("[DueDate] > todaysDate") You should post the full error message, and the code in context that is giving you the error. In this case, todaysDate is a variable, so you need to put the value in the filter string, not the actual variable name, like this: myItems = myTasks.Rest ...Show All

  • Visual Basic How to create user interface for Fileloader in VB.NET

    Dear Sir/Madam,   I am trying to create user interface in VS.NET that allow the user to choose and open a file (Browse)  like MS Word, etc... It is like Fileloader in Java but I just don't know how to it in VS.NET Any help is greately appreciated. Thanks. Sincerely, Ramy.  Hi Bridgette From the toolbox add an Openfiledialog to you form and name it OPNFD   Private Sub CbAddFile_Click( ByVal sender As Object , ByVal e As System.EventArgs) Handles CbAddFile.Click Const cSuccess As Integer = 1 Dim iStatus As Integer OPNFD.Title = "Open a ...Show All

  • Visual Basic How do You Change the width of a Excel cell or columns in VB.Net

    I am having problems trying to change the width of a cell or even columns programatically in VB.Net. I have created an excel object and I can get data into excel, but I can't seem to find the right way to format the cells and columns. Here is what I have thus far. Dim xlApp As Microsoft.Office.Interop.Excel.Application Dim xlBook As Microsoft.Office.Interop.Excel.Workbook Dim xlSheet As Microsoft.Office.Interop.Excel.Worksheet Dim lb As Integer xlApp = CreateObject( "Excel.Application" ) xlBook = xlApp.Workbooks.Add() xlSheet = xlBook.Worksheets(1) For lb = 0 To ListBox1.Items.Count - 1 ...Show All

  • Visual Basic MouseDrag?

    Hello - I have a bunch of custom controls named timeSlot that are just little pannels that the color can be changed.  In another control (timeTable), a bunch of timeSlots are added programatically.  I am trying to create the effect that when the user clicks on one of the timeSlots in the timeTable, that slot's color changes and all the other slots that the mouse is dragged over change as well. This effect  can be seen here - http://mischedule.com/v20/MISchedule.php term=w06 (click the times button, and select the custom radio button) I have tried to do this every way I see possible but cant accomplish it. The problem seems to ...Show All

  • Visual Studio Express Editions Reports & Persistance

    Hi! I'm planning to do a small project to startup with C#. I have a lot experience in coding C++ and Java, but don't have any clue of the .NET capabilities. So before I download the C# Express and install it, i want to know the following: How much effort is it to make reports (e.g. reports like everyone knows from Access with print preview etc.) Which kind of persistence is supported Can Objects easily be made persistent in lets say an Access mdb file or a XML file Kind regards, Ingo Here's a breakdown of the Express Edition features: http://msdn.microsoft.com/vstudio/products/compare/default.aspx ...Show All

  • Visual Studio Express Editions VC-EE Redistributable Executable?

    Hi, I live in a country where ISP's have harsh restrictions on download usage. And would like to save a copy of Express Edition that doesn't require me to download 60mb~ every time I reinstall the program. Does anyone know if a "redistributable version" exists which would allow me to install it without an internet connection I ask this as nearly all other Microsoft software I've come across has this option. (.NET Framework, Service Packs, DirectX, etc) I admit I'm not very good at finding what I'm looking for :( The closest thing I could find was that page with the 500mb ISO files which probably included the 400mb worth of MSDN extras. Thank ...Show All

  • Visual Studio Team System Extendable?

    I am interested in extending FxCop.  Is it extendable at the framework level Can we write event handlers or Services that say – once an error report is created it is sent to a server which displays the report in a list for all to see. Thanks FxCop wasn't designed as a general framework for driving analysis and results. We recommend using the command-line tool in a scripted system for this sort of work. For the next major release, we are looking at componentizing certain aspects of FxCop, such as rules configuration and output, to support a broader range of execution scenarios, but we haven't yet made def ...Show All

©2008 Software Development Network