Software Development Network Logo
  • Visual C#
  • Visual Basic
  • Audio and Video
  • Smart Devicet
  • Windows Forms
  • IE Development
  • .NET Development
  • Windows Vista
  • Visual FoxPro
  • Visual C++
  • SQL Server
  • VS Team System
  • Game Technologies
  • SharePoint Products
  • Visual Studio

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

biffpixel

Member List

Angus Leeming
Guenter
Saroj K. Nanda
Jim Altrichter
jods
here
DriverEntry
SCADirector
Kobingo
Natural_orange
abuja
BortNE24
Oligarchy
a.d.m
rod_r
PJ Arends
Stephen J.Vanterpool
R. Joseph Newton
satsrinivasan
mreitano
Only Title

biffpixel's Q&A profile

  • Visual Studio Express Editions Problem with _lseek - Debug Assertion Failed!

    I have recently downloaded/installed VC++ 2005 Express on a computer with no previous VC++ software on it. I followed all the instructions listed at http://msdn.microsoft.com/vstudio/express/visualc/usingpsdk/ and can get my solution to build. However, when I run it (F5) I get a "Debug Assertion Failed" Error. Debug Assertion Failed! Program:... File: lseek.c Line: 66 Expression: (fh>=0 &&(unsigned)fh<(unsigned)_nhandle) If I hit Abort it gives the output: ... 'lseek_example.exe': Loaded 'C:\Program Files\McAfee\SpamKiller\MSKOEPlg.dll', Binary was not built with debug information. 'lseek_example.exe': Loaded 'C:\WINDOWS\SYSTEM32\VERSION.DLL', No symbols loaded. 'lseek_example.exe': Load ...Show All

  • Visual Basic can't find references

    I inherited this vb application. I can't even edit some forms because I get a class not registered exception so therefore I can't delete the offending class. So I look in the reference list and there are several with yellow exclamation points. A search of the microsoft web site brings up nothing. Where can I find these AxComCtl2 AxMSMask ComCtl2 MSMask I have similar problem too. It's windows application, which references that AxInterop.ComCtl2 assemblys. Reference path for that files is /obj folder in my solutions and when i look at that folder files are there. I can build my application and run it, and it will work fine untill EndInit() method of some of the AxInterop.ComCtl2's controls is called (mo ...Show All

  • Visual C++ How to out put the value of a variable, during debugging?

    During debugging, How can I make the debugger to out put the value of a variable and the return value of a function OutputDebugString works too. Even if you're not debugging and use SysInternal's DbgMon utility... ...Show All

  • Windows Forms [c#]unboubd datagridview: howto write into database

    Hi all. I've a run-time generated datagridview on a form, not bound to a database. The number of rows is variable (it depends from some events) but the number of columns is prefixed. Now, im looking for a way to store (after user complete input in datagridview) this data on a database. Plz, any suggest really appreciated. Thank you all in advance. Im trying something like this: (on database my table is: Day, In, Out, Total) for(int i = 0; i < datagridview1.Rows.Count; i++) { //code for connection... //connection.Open(); string s = "insert into myTable(Day, In, Out, Total) " + "VALUES('" + datagridview1.Rows .Cells .Value + & ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Camera Frustum Clipping Problem

    Not sure this is the right place for this ... its not an issue with the framework, but I do need help because I dont understand why this isnt working. If I do the following before the draw of each mesh to see if it should be rendered - note : pmat is the matrix rot/trans for the object to be drawn. ------------------------------------------------------------------------------------------------------------------------------------ BoundingSphere d = cItem.Meshes[0].BoundingSphere; d.Center = Vector3 .Transform(d.Center, pMat); if ( ! Game1 .camera.SphereInFrustum(d)) return ; ------------------------------------------------------------------------------------------------------------------------------------ And my frustum i ...Show All

  • Visual C# Passing arguments to a function started by a thread

    I need to setup a thread to start a function that takes an int argument.. Any solution on how I can pass that argument There are a number of ways to do this, if it is as simple as just passing a parameter and not expecting a return value, then I would probably use the parametizedThreadStart method see http://www.yoda.arachsys.com/csharp/threads/parameters.shtml for how to do this. ...Show All

  • Smart Device Development Big dialog on small PPC screen

    I make dialog, what not fin on the screen. I try to use flag SHIDIF_WANTSCROLLBAR in function SHInitDialog( ), but vertical scrollbar not displaying or if I set dialog window style WS_VSCROLL scrollbar is displaying, but does not influence upon dialog scrolling. What I do wrong ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. C# Marble Blast Ultra Source?

    I noticed in one of the XNA blog posts, that GarageGames had ported their Torque shader engine and Marble Blast Ultra to managed code/C#. Is this source likely to ship with XNA Studio Express (or possibly people with the "creators club" membership), or did they just do it to show off It'd make a pretty cool starting app for people to look at and see how it should be done!(and they have done it with MechCommander2).   Kevin Jacobson wrote: How do you get Torque X, is it available for purchase now I can't find a price on it... They haven't released anything on prices yet. Keep your eyes on this page for more information regarding release dates and pricing information. ...Show All

  • SQL Server problem with custom assembly

    Hi, I have problem with my my custom assembly: when i display the result localy in my report it's work very well but in web access with my Url http://localhost/Reports/Pages/Report.aspx ItemPath=%2fmydemo%2fReport2 i got a error message:#ERROR. As you can see my function return just string readed in text file. using System.Collections.Generic; using System.Text; using System.Security.Permissions; using System.IO; namespace SimpleDLL { public class SimpleClass { public SimpleClass() { } public static string returnString(){ FileIOPermission fileReadPerm = new FileIOPermission ( FileIOPermissionAccess .Read, @"C:\TempFold\Sample.txt" ); fileReadPerm ...Show All

  • SQL Server Bar chart report

    hello, I am creating a bar chart report which contains a datetime information on the x -axis. The unit of the x-axis value depends on the parameters value(StartDate and EndDate). For example, if the difference between StartDate and EndDate is > 2 years, say 4 years for instance, then the value of the x-axis should be presented on a yearly basis, like this: Hi guys, Is this question not clear or difficult to answer Does any body came across this kind of scenario Please let me know Sincerely, Amde ...Show All

  • Windows Forms Advice needed: Hosting Winforms application in Winform application

    Let me explain what we need. We have an application that behaves like the Microsoft Management Console, let's call that application Management Console. In our Management Console we have a treeview on the left-hand side and a Window on the right-hand side. In the treeview we have nodes like Application1, Application2 ... clicking on each of these nodes should open the corresponding Winforms applications within our Management Console. It is like a plug-in system but the applications Application1, Application2 should be able to be run as stand-alone applications as well. With other words the devs of Application1 and Application2 should not change their code just because of our Management Console. Any leads concerning architecture and ...Show All

  • SQL Server SQL temporary tables and the datasource wizard

    Hi, I am designing locally processed reports using teh Visual Studio IDE. It seems the data source wizard cannot retrieve column names from a stored procedure that is returning data from a temporary table. Is their a quick fix on the IDE side to resolve this I know I can deal with it on the back end with permanent temp tables and SPIDs but would prefer not to. Thanks for any help. ...Show All

  • Windows Forms Obtaining url/components url from setup.exe

    Is there a way to obtain the url and components url from setup.exe using command line using vbscript With my attempts I am always getting the messagebox popup (which i would like not to) and not able to grab the url values themselves. No, there's no easy way to do that. You could do it in a roundabout way by using another program that extracts resources from an file... :-) of course, that's not supported. ...Show All

  • Smart Device Development Problem displaying multiple forms in PocketPC 2003

    I am having a problem showing two different forms in Pocket PC 2003, and was wondering if anyone could help. I am using VS 2005. I have a main form that is showing. My app goes and loads a bunch of datasets from XML files. While this is happening, I want a dialog to appear with a progress bar showing that it is loading files (simple ui interface to make it obvious that something is happening). I have this coded, but I find that the program locks up when debugging. When I pause the running app (in VS 2005), to see where the program is hanging, it is always hanging trying to set form variables on the dialog form. For example, it may hang setting the label text property to show that it is loading file 2. Or it may hang when it tries to set th ...Show All

  • Visual C++ 'DisplayMat' : cannot convert parameter 1 from 'int [6][6]' to 'int *[]'

    Hi. this is a sample of my problem. what should I do thanks. #include "stdio.h" #include "stdlib.h" #define _Row 6 #define _Col 6 void DisplayMat(int *Mat[]); void main() {  int Matrix[_Row][_Col] =  {   { 11,0 ,13,0 ,0 ,0 },   { 21,22,0 ,24,0 ,0 },   { 0 ,32,33,0 ,35,0 },   { 0 ,0 ,43,44,0 ,46},   { 51,0 ,0 ,54,55,0 },   { 61,62,0 ,0 ,65,66}  };  DisplayMat(Matrix); } void DisplayMat(int *Mat[]) {  int k,j;  for ( k = 0; k < _Row;k++)  {   for( j = 0;j < _Col;j++)    printf("%d\t",Mat[k][j]);   printf("\n");  } } You need to change the signature of DisplayMat function to this: void ...Show All

©2008 Software Development Network