HeathM's Q&A profile
Visual C++ unresolved external error
I am having an unresolved external problem. This is my error output: Linking... tryagain.obj : error LNK2019: unresolved external symbol _furnsh_c referenced in function _main C:\Documents and Settings\sharyl\Desktop\cspice\exe\tryagain\Debug\tryagain.exe : fatal error LNK1120: 1 unresolved externals I have the enviroment variables set so that the library that contains furnsh_c is in the lib path, and the include folders, etc are also in the system's enviroment variables. I have also added the lib that has furnsh_c to the additional dependencies. What am I missing Is it possible that I changed another setting that is causing this Thanks! The first one is expected. It lists a reference to symbol named _furnsh_c (whi ...Show All
Visual Studio Express Editions I want to call MatLab application from C# application
I want to call MatLab from C# application and convert data from C# into matlab to process, then return its result in C#. please help me.Thank you! Try " MATLAB Builder for .NET "... ...Show All
SQL Server mdx expression
I have a cube with 1 fact (historic sales data) and 3 dimensions (Time, Product and Customer) and i have created two calculated measures 'Bud_Qty' and 'Bud_Price' that I then multiply to create 'Bud_Sale'. I can browse the 'Bud_Qty' and 'Bud_Price' dimensions by both the Product and Customer hierarchies, but the aggregation of the 'Bud-Sale' is incorrect. I have tried a number of alternatives using various Scope, Leaves and Descendants scripts, but I have not been able to make 'Bud_Sale' calculated measure aggregate properly. Any Help is appreciated. Thanks in advance...Burnswell OK, I understand. Have you tried to do this calculation in the datasource view instead, with a named query ...Show All
SQL Server XML Binary Problems
I have a stored procedure which returns some xml data using the FOR XML AUTO, TYPE, BINARY BASE64 syntax. One of the fields is an image field, and gets sent back correctly. I have another procedure that is trying to insert that data back into a table, but when I perform the insert, it doesn't appear that the data is decoded properly. When I look at the original data in the IMAGE field compared to the data I just inserted, it is different. My insert looks something like this: INSERT INTO TABLE SELECT * FROM OPENXML (@DocHandle, 'Cases/Case/Illust_Illustration') WITH( IllustrationID UNIQUEIDENTIFIER '@IllustrationID', InputData IMAGE '@InputData', ResultData IMAGE '@ResultData') I saw this post ...Show All
.NET Development help
I am a new student at web design. Can someone help me understand how to use xml notepad 2007 You can create/add XML using notepad 2007. In another tab it allows you to specify a XSLT file. Based on that style, xml notepad 2007 can generate the output. You need to click on Transform button to apply the XSLT. You can add/modify nodes/attributes/values of XML file using xml notepad 2007. ...Show All
Visual Studio Tools for Office Handling mail item
hi all I am new to outlook programming, and i hope you bare with me. My goal is to get a copy of currently selected Email and pass it to my database When the user will opens the mail window . a dropdown should be there in the Standard toolbar . this dropdown will be populated with a list of categories from the database when user select any category. press enter. the a copy of the current mail should get transfered to my database. please let me know if it is possible , and provide ur suggestions and any code snippet of how to create a drop down in the toolbar of the mail window and handle its click event i am using c# or Vb.net in VS2005 with VSTO SE i shall be highly grateful Thanks Zubair What you are trying to do is ce ...Show All
SQL Server How to enable the option of " Create New SQL Server database " from Database Explorer
Hi there I am working on Visual Web Developer Express Edition 2005. When I right click on database explorer to create an SQL server database then I always find the option " Create New SQL Server database " Disabled. Can any one tell me how to enable that option please Why not download SQL Server Managment Studio Express If you click the Add Connection option, you can create a database in the dialog that comes up. Just type a filename in the textbox that doesn't exist and you'll be prompted to create it. ...Show All
Windows Forms Using VB Express to connect non Sql or Access Database....
Follow the Learning VB.net books....I can easily connect the Sql Express database with just draging the Data Source after add connection and add new data source....It's automatic build a DataGridView Control, a tableadapter, a bindingsource, and a bindingnavigator. We can add, edit, delete, and update data in datagrid with the bindingnavigator icon. It's so easy......But how it can doing the same way if I use to connect a Oracle database ... When right click the database Explorer, then click Add connection, the databases that can be connected or created are just MS Acces and Sql Express.......Can help me pls..... thanks......... I tried to connect VB Express to an existing database. Whatever I do I seem to come across the ...Show All
SQL Server SQL Server Edition ??
Hi, I was wondering, what kind of SQL Server 2005 edition is allowed to be used on the development server. We have the developer's edition, would we have to buy an Enterprise edition for the development server Thanks, Tanvi. Here is a good explanation of the different SQL 2005 editions: http://www.microsoft.com/sql/editions/default.mspx For your situation, you might want to read about the Developer edition to see if it would work for you. From the Developer edition page... " Developer Edition includes all of the functionality of Enterprise Edition, but is licensed only for development, test, and demo use." Thanks, Sam Lester (MSFT) ...Show All
Visual C++ ATL COM MTA And STA Models
In STA COM Environment do the events go to the subscribed client in a queue In MTA COM Environment do the events go to the subscribed client in a queue If the answer is no do we have to use Mutex in the subcsribed client event function to prevent Accesing the same object in the same time. Please answer all the questions and note that I am not asking COM interface functions but interface events like Fire_Start(unsigned short objectID); Thanks in advance Since you haven't gotten any replies yet, you should direct this question to http://msdn.microsoft.com/newsgroups/default.aspx dg=microsoft.public.win32.programmer.ole&lang=en&cr=US . Also, see http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=789657&Sit ...Show All
.NET Development mscorlib not reconized after install of VS2005
I have been all through the net with this issue and hope I can find someone here who can help. I have a PC that I developed VS2003 applications on. No problem. I installed VS2005 on this PC. No problem. I converted my VS2003 project/solution to VS2005 on this PC, no problem. This PC works fine. I have a new box I am setting up to be my development box. It has Windows 2003 Server on it. IIS .Net Framework 2.0. All seems to be in order. I installed VS2005 on it. When I take the project I had converted to VS2005 and move it to this box, all the objects that are in mscorlib (.Net Framework) show as "Not Defined". I uninstalled everything and reinstalled everything to make sure they were done in the proper order. All seemed fine. ...Show All
.NET Development Help running SQL Transaction in 2005 vb expess
I may have this in the wrong forum but, here goes... I need to run a SQL transaction against an SQL database in my vb2005 express application to remove duplicate records. I am really in need of some direction. Now here are the problems: I saved the transaction as a procedure in the database. (A sproc I believe). If I open SQL Server Manager Studio and execute it, it runs like a clock. There is a warning message about it not supporting the OVER command, but it works ok. So Here is the Btn_click to run the procedure; Private Sub Btn_sql_deletedups_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Btn_sql_deletedups.Click Dim MyCmd As New OleDb.OleDbCommand Dim Cnxn As New OleDb.OleDbConnection("Data S ...Show All
Visual C++ Getting pointer to edit box in MFC
Hi, I'm learning to use MFC and I have encountered a problem... I have a main dialog window, with an edit box (which is used for displaying information), and when a button on the main dialog is pressed, function from another c++ file is called to load data from some txt files and processes it, and I wish to display any errors from processing the txt file to the edit box in my main dialog... say my main dialog's class is called StepDlg, I tried to do this in my other c++ file: StepDlg dialog; dialog.send_data(data); Where "data" is the data I want to display in the edit box... I got an assertion error for this and after a bit of digging and searching I found that the problem is because I have created another dialog by doing " ...Show All
Visual Basic Listbox
hello, How can I retrieve the values the user selected from a listbox with a selection mode set to = SelectionMode.MultiExtended What data are you trying to get at From your post it looks like you've populated the ListBox with DataRowView instances. If there is a specific member or property in the DataRowView you need, just cast the object back to the DataRowView instance and access it directly. ...Show All
Game Technologies: DirectX, XNA, XACT, etc. Octree - Handling static geometry, primitive splitting
Hi, I am using XNA to develop my game. I finally have a working octree where I can insert renderable objects based on their AABB, in my book it mentions that static geometry is best inserted into the octree and polygons should be split if they straddle. The thing I cant get my head around is, How do I best manage static geometry that makes it suitable for polygon splitting If I am using directX (.x) models, in XNA I end up with a Model object, I can get access to the vertex and index buffer, but I am confused at how I should manipulate the vertex data in order to split them when I build my octree. Any help on this would be greatly appreciated. Ok thinking about my second question a bit more, and ...Show All
