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

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

milfora

Member List

penguinman007
Thomas Logan - MSFT
dickdunbar
bkuwhopper
Giancarlo Aguilera
pankaj_singh
kehoe
Code Cowboy
skostiuk
awdon
HemantKumar
Richard oupatty
rvlemmings
Sundown Kid
twinklekumar
helpPlease176795
Cy Harper
limelight
CyberShoggy
RTIT
Only Title

milfora's Q&A profile

  • Visual C++ Error: LNK2019

    Hi I am using MS VC++ .Net (2003) and MS DirectX 9.0 SDK (December 2004). I am getting the following error :- GDPass error LNK2019: unresolved external symbol "public: void __thiscall bullet::gunshot(void)" ( gunshot@bullet@@QAEXXZ ) referenced in function "long __stdcall WndProc(struct HWND__ *,unsigned int,unsigned int,long)" ( WndProc@@YGJPAUHWND__@@IIJ@Z ) "gunshot()" is a function which is declared in a header file, as a public function of a class. Its definition is in the same source file as the function call. I cant seem to understand the reason behind this error. Please help me. fixed tha ...Show All

  • Microsoft ISV Community Center Forums Exceptional kind of Error - Menus deleted at statup of Access 2000...?

    Hi, I had been working with databases from many years...Recently I had encountered an exceptional/unusual kind of error in Microsoft Access 2000. I had developed some applications on Microsoft Access 97 and Access 2000, which also has custom based menus and toolbars etc. These applications have been running successfully on many machines, but recently I got problems on few pc's...When I open my Access applications/Databases on machines (which are generating this problem) suddenly at startup of Microsoft Access 2000 all of my Menus are deleted. Only top level menus eg: File, Edit, Tools, Help are visible and all it's sub item (sub menus l ...Show All

  • Visual C++ VS and side-by-side installations of PSDK?

    Hello all, I'm currently evaluating VS 2005 C++ (Express Edition) and I'm planning to install the new Platform SDK Windows Server 2003 SP1. However, I'm still running VS 6.0 on my computer which is still needed to build a number of old projects. On the PSDK download page however it says that side-by-side installations of the new and older PSDKs are not supported, which doesn't sound nice at all meaning, as I understand it, that it won't be possible to still build Windows apps with VS 6.0 after new PSDK has been installed. However, after browsing the forums for a while it still seems to me that side-by-side installati ...Show All

  • SQL Server load CatalogItem array in treeview

    Hi, i would like to load my array 'items' in a treeview CatalogItem[] items = rs.ListChildren("/", true); is there anyway that automatically does the layout or do i have to check what the type is of everey object so I can indent correctly. thanks I'm really looking for this one :). I'm trying to do it manually but I can't find a way to get the reports in the right structure. I'll show what I want to accomplish and how I am trying it now: WANTED LIST: + Adventureworks - Company Sales - Employee Sales Summary + Subfolder - Report from subfolder - Report from subfolder Code trying to ...Show All

  • Windows Forms good books for vb.net

    Can someone recommend some good books for vb.net  Not for beginner. Apress has some pretty good books too. "VB.NET Business Objects" is one good book. ...Show All

  • Windows Forms Excel fields

    Hello I am trying to make in a database field the ability to make calculations inside it, like MS Excel. Does anyone knows how this can be done. Thanks Pedromdrp SQL compliant syntax isn't going to accept an = sign at the begining of a value and interpret the following characters as a formula... In other words, if you want the user to typ ...Show All

  • Visual Studio Team System Can I get Team Build to run custom task, immediately compile a solution and then repeat in a loop?

    Ok, since I don't think the title conveyed the intent of this post, here's a more verbose question. I am doing a POC with Team Builds. I need to do the following: Get all source code for the build For each solution in the Team Build If the current solution requires code generation Then Run the CodeGeneration custom task for current solution End If Compile current solution Next Solution The reason I need this in that I have cases where a solution down the compilation chain will have its code gen reflect over assemblies that have already been created. If all of the code gen happens at the same time, there will be ...Show All

  • .NET Development Problem with dataset.merge

    I have two tables in the same dataset which are identical in structure One table is the permanent table, where the other table is cleared each time the application is launched and is used to store imported records (at the users discretion) I have the following code Me .CustomerDataSet.Customers.Merge( Me .CustomerDataSet.TempCust, True) Me .CustomerDataSet.Customers.AcceptChanges() The tempcust table contains all the imported records ok The Customer table has all EXISTING records If i set up a datagridview linked to the customers table and refresh it after the merge, i can see all the existing records as well as the n ...Show All

  • Visual Studio Express Editions SQL Update

    I have been going through the free videos (very good) but have a problem regarding lesson09. The database does not update after closing down the program. I have tried a few times now and even run the downloaded copy but to no avail. Has anyone else come across this problem and been able to overcome it BindingSource1.EndEdit() Dim rowsAffected As Integer = 0 rowsAffected = CustomerTableAdapter1.Update(MyCompanyDataSet1.Customer) MessageBox.Show(rowsAffected.ToString())   Thanks I've try it and I get result is : Don't select "Copy to Output" option , Just select "Copy if newer",The probelm.will b ...Show All

  • Visual Studio 2008 (Pre-release) DataTemplate as an external file

    Hi, I would want to use a DataTemplate from an external file, not within the file that contains my XAML code. Is it possible to have external sources of DataTemplate If yes, how Thanks for your responses!! You can place templates in a separate resource dictionary file and then merge the contents of the dictionary into a resource dictionary in your window/page as in: <Window.ResourceDictionary> <ResourceDictionary> <ResourceDictionary.MergedDictionaries> <ResourceDictionary Source="..."/> </ResourceDictionary.MergedDictionaries> </ResourceDictionary> This is ...Show All

  • SQL Server Derived Column task and GETDATE()

    I am using a "Derived Column" task as below: Derived column name: update_timestamp Derived Column : <add as new column> Expression: GETDATE() Data Type : database timestamp[DT_DBTIMESTAMP] When I try to use an Ole DB Destination after this task, and map this derived column to columnX (datatype: timestamp) of tableA, I get this error: Validation error. Data Flow Task - mytaskname: OLE DB Destination - my_oledb_destination [711]: The OLE DB provider used by the OLE DB adapter cannot convert between types "DT_DBTIMESTAMP" and "DT_BYTES" for "update_timestamp". MyPackage.dtsx 0 0  In the advanced editor for th ...Show All

  • Windows Forms detecting OS events

    Hi guys, I want to write a program calculate the time that various exe programs are used in a computer. For example is a user opens MSWord then my program should be automatically started. And it should also get a notification when the user closes MSWord. Can this be done with win 32 API. Can you give me an idea on how to do this. Thanks a&nbs ...Show All

  • Windows Forms Tabs with a MDI App?

    Has anyone had any success wigh making a MDI application also support a TabControl (either System.Windows.Forms or Crownwood.Magic.Controls) I know that Syncfusion Essential .NET has support for this, but I was looking for an open-source solution. Is there any hope of this working with the Magic.NET tabcontrol I would love to see some code to this effect. ...Show All

  • Visual Studio Team System How to clean up a database after test recording and also after test has run and start with fresh database?

    How to clean up a database after test recording and also after test has run and start with fresh database I have a form in which there is a data grid on it.During recording i add some values in that field so as a result those values get added in the data grid and i got a string saying that record has been saved.When i ran this test those values were already in the data base so the test passed but in test results details in the browser window i was getting the string that duplicate record shall not be added whie during recording it has given the string that Record has been saved. I want to know how to clean the database after recording ...Show All

  • Visual Studio SubReport does not appear in the ViewList dropdown

    The SubReport does not appear in the ViewList dropdown in the toolbar until after the subreport link is clicked. Why And is there any way around this How can I get my subreport to appear in the (has)ViewList field when the report is first run After I click the subreport link everything is fine, but not really acceptable from the users standpoint. Using VS 2005 RTM Thanks, Carl The purpose of the viewlist is to provide a way to navigate back through your history of drilldowns.  Thus, you must actually drill into the subreport (or a group) to get it to appear in the Viewlist. ...Show All

©2008 Software Development Network