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

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

Myke1

Member List

ImGivingUp
Gunnar Adler
curtKauf
Martin Bayly
Don3335
Nick Cardullo
wilhil
Diffused Mind
Travis Ingram
MagedSalah
ChrisMentioned
hazz
Praveen_wm
dbcuser
bernb
EADM
fornol
BlackPepper
tylerdn
Prasant Swain
Only Title

Myke1's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. .. I did it Part2 Loading FBX file Vb.net TRIDEX .....

    Hi, They said it could not be none, well here it is for vb.net load and compiling a xnb file and displaying a model!!!!!! Loading Xfile and Fbx file, they have really got some speed in XNA!!! VB.NET code on my website: http://www.tridexconsultants.co.uk/pages/downloads/XNA%20VB.NET.zip Notes: Microsoft please get this on dot net, if it is this easy to hack then please, please, please !!! .NET for ever..... ... Tridex ... I'm really curious why using XNA with VB.NET is such a high concern. I use VB.NET every day at my job. I love it and highly recommend it. But I've had no issues coming home at night and working with XNA in C#. The languages are so similar at this point tha ...Show All

  • Software Development for Windows Vista FileWatcher sample - Compilation error with .NET 3.0

    I am trying to build the FileWatcher sample from http://blogs.msdn.com/tomlake/archive/2006/05/02/588575.aspx. I get an error in file DefaultEventSubscription.cs at line public class DefaultEventSubscription : System.Workflow.Runtime.Hosting.EventSubscription Error: The type or namespace name 'EventSubscription' does not exist in the namespace 'System.Workflow.Runtime.Hosting' (are you missing an assembly reference ) As I understand, EventSubscription is obsoleted (may be from .NET 2.0!!). Is there any alternative that anyone can suggest to get this working!! Thanks in advance. I'd recommend looking at this FileWatcher sample activity http://wf.netfx3.com/files/folders/misc/entry831.aspx ...Show All

  • Visual Studio Visual Studio help example font

    I have a problem with the font used for code examples in VS help. The font being used is about 5 times larger than the font used in the rest of the help page. I have an example below. This is the size of the normal text font used on the help pages. The code font size is shown below. public class TestClass { public TestClass() { } } The font then goes back to normal for non-example text... Hi Tilderss - do you have a URL for a topic that is behaving the way you describe This will help us determine whether the problem is with the topic or something that got messed up in your installation. Thanks! ...Show All

  • .NET Development Remote Systems Network Information

    Hi: I'm looking to obtain networking information from remote computers. In WMI vbscripting, it allows you to specify a computer name and it will tell you all about that system. I've been looking in the IPInterfaceProperties namespace but it appears to only provide information about the local system. If there is nothing in the namespace to do this, is there any other way to use C# to get this information from computers on the network Not sure if WMI could be used in C# Thanks Much, Chuck! You are correct, the System.Net.NetworkInformation namespace has classes only for local machine. This post has links regarding using WMI from c# :http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=167764&SiteID=1 ...Show All

  • Visual Basic Accessing column in ASP.NET

    I've the following code in ASP.NET < asp : GridView ID ="GridView2" runat ="server" OnSelectedIndexChanged ="GridView1_SelectedIndexChanged" AutoGenerateSelectButton =true > < Columns > < asp : BoundField DataField ="ProductCode" HeaderText ="Product Code" /> < asp : BoundField DataField ="ProductDesc" HeaderText ="Product Description" /> < asp : BoundField DataField ="ProductRate" HeaderText ="Product Rate" /> < asp : BoundField DataField ="ProductQty" HeaderText ="Product Quantity" /> < asp : TemplateField HeaderText ="Total Value"> < ItemTemplate > <% # Eval( "ProductRate" ) * Eval( "ProductQty" )%> ...Show All

  • Windows Forms Balloon Tooltip for Toolstrip items

    Hi there can anyone give me some sample vb code that will enable me to display the tooltips as balloons for toolstrip items please. i use the following for buttons which works gr8: Dim Tip As New ToolTip Tip.IsBalloon = True Tip.SetToolTip(MyButton, "This Is The ToolTip" ) but just cant figure out how to do it for toolstrip items. i think i have to do something with VisualStyleElements but just cant figure it out and its driving me mad. is there a simple way Thanks ToolStripItems are 'light weight', they are not controls and don't have a window handle. Instead, their 'container', the ToolStrip instance, is responsible for displaying tool tips. Assign the Too ...Show All

  • SQL Server How to slipstream sql server 2005 express SP1 into Visual Studio 2005 setup?

    Hello, I would like to know if anyone here has any information on how to change the default version of SQL Server 2005 Express which ships with Visual Studio 2005 to the new SQL 2005 Express SERVICE PACK 1 I see a file under disc:\vs\wcu\SSE\SQLEXPR.exe I am wondering if changing that file with the new one from Microsoft Download Center will do it... There's another file under that folder named sqlexpr32.exe I am wondering what it's for Thanks in advance. No slipstream for that - see this article: http://www.dbazine.com/sql/sql-articles/cook19 Buck Woody ...Show All

  • .NET Development Debug interfaces in real time

    I am thinking of using debugging interfaces to provide flexible diagnostic extensibility to an application running in production. This involves having application to instantiate the debugging interfaces internally and define some breakpoints that will be hit as the application executes (I read about separate debugger thread in 2.0). The code inside the breakpoint will then do some diagnostic activity and let the application go until the next breakpoint is hit. So this is kind of applicaiton debugging itself in its own process at certain points of its execution. Do you think using the debugging interfaces will even be feasible to produce something like this And that it will be stable and have little performance degradation compared to un ...Show All

  • Visual FoxPro File is in use by another.

    When getting an error "File is in use by another" - Is there a way to trap what file is this I am using the sys(2018) but I don't get any info in there. Thx. here is my code for pos program when do close sales day. latables is an array i declare at main.prg... && check any files locked FOR i = 1 TO ALEN(laTables,1)  mFileUsed = .F.  ON ERROR mFileUsed = .T.  USE &mDatapath\&laTables(i,1) EXCLUSIVE  ON ERROR    IF mFileUsed   MESSAGEBOX("Please check whether others computers has been shut down, and retry again. If confirmed others computers has been shut down, please restart this computer!")   RETURN  ENDIF &nbs ...Show All

  • Visual Studio Team System How to end loadtest when test completes

    I have a coded webtest which loops through and pull back information on 500 files. Playback of the single user test runs, on average, in under 15 minutes. Now I want to create loadtests of varying # of users to see how end time of the test run is affected. If I set the duration to 1 hour, the loadtest run for the full hour. Is there any way to end the loadtest after all of the virtual users are finished looping through the 500 files Thanks. ~ Lew 1. From the load test editor, set the Percentage of New Users under the scenario to 100. This property is used to control caching in a load test. For details on this, please read http://msdn.microsoft.com/vstudio/teamsystem/reference/techn ...Show All

  • Visual C# compobj.dll is too old for the ole2.dll initialized

    When I try to call using TAPI 3, i get this error; --------------------------- TAPI3 --------------------------- Failed to create call! compobj.dll is too old for the ole2.dll initialized (Exception from HRESULT: 0x8004000E (OLE_E_WRONGCOMPOBJ)) --------------------------- OK --------------------------- any idea please Thank for this solution, I can run the application. I have a voice modem , the model is Motorola SM56 Voice Modem. It is a Unimodem Half-Duplex Audio Device. I have speaker and mic. 100% sure it is work. Now the problem I face is I can make call, I can hear the dial tone from my speaker. The other party cannot hear what I say, I only can hear people talking. What is the problem In another case, I try ...Show All

  • SQL Server Flat file CSV problem

    Hi all, I hope someone can help with a problem i'm having. I want to process a large number of CSV files into various tables in an SQL database. The CSV file contains entries on a row by row basis relating to specific events (indicated by an eventID in column 0). Eventually i think i want to be using a conditional split to process each row seperately depending on the eventID but before i get this far i am having a problem with the source data. Each event can have varying amounts of columns filled in in the CSV file. And each CSV file can have multiple event types in it. The flat file manager seems to merge a number of different rows into one within the preview pane. It seems to ignore the end of row delimiter of CrLf. Can anyone please hel ...Show All

  • Visual Studio Team System Sampling method of Performance Tool does not generate any report!?

    After successfully tried using Sampling method of Performance tool on a small console application, I applied the same skill on a larger WinForm application. But this time the tool does not generate any report under the Reports folder. Is there any limitation on the tool Or any special configuration needs to be set Hey John, I was just scrubbing the forums when I noticed that your question had not been answered. After collecting data with the profiler it should always generate a report or give you a warning that no data was collected in the profiling run. I've never seen an example of it not doing one or the other. One thing to check is that in the session property page for the performance session yo ...Show All

  • Visual FoxPro VFP6: Retrieving of data from VPF table (.dbf) through website

    Do I have to write asp scripts to achieve this Is there any tutorials for the beginner Thank you. No, you can definitely stick with fox coding for this. Activevfp ( www.codeplex.com/activevfp ) is a free and open source vfp tool that lets you easily create multi-threaded vfp web apps to do just about anything. Multi-threaded is key for any web app since multiple web browsers could be hitting the application at any one time. If it is not multi-threaded (or simulated multi-threaded as many of the commercial vfp web products are) then clients will have to wait one after the other. ...Show All

  • .NET Development Enum & argument to routine -- how to spot the Enum

    In the Interop for ADO the sink ConnectionEventsVt has the following definition (from ildasm): .method public hidebysig newslot abstract virtual instance void InfoMessage([in] class ADODB.Error marshal( interface ) pError, [in][out] valuetype ADODB.EventStatusEnum& adStatus, [in] class ADODB.Connection marshal( interface ) pConnection) runtime managed internalcall adStatus is a ref to a ADODB.EventStatusEnum. So what happens here -- is adStatus boxed into a class (I am guessing so). The parameter is marked as a class which I suppose tells me its boxed -- but how do I know what the unboxed type is -- do I have to do a lookup on the type without a '&' In th ...Show All

©2008 Software Development Network