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

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

TI66

Member List

Wicket
Manuk
jrc_11
Neil Fraser
John Wesley Harding
Michael Vanhoutte
DBLearner
Santosh Ransubhe
lushdog
Ecrofirt
Juan Carlos Trimiño
ajedi2k
Raj Deep
Tryin2Bgood
NetMage
Danalynn
Digamber
NytewolfAU2k7
SN Ngaihte
Vengs
Only Title

TI66's Q&A profile

  • Visual Studio Express Editions standalone version?

    HI all I have built a small c# app in visual studio express edition and it works from the debugger now i run each exe file (release and debug) from outside the debugger and they wont run. Their size is 24k, so i figure they need to be statically linked etc but i cant see how and where in Visual Studio to do this I dont want a whole installer, just to be able to run the app by itself on another pc :) does anyone have any suggestions many thanks and regards Buzz thank you for your amazignly fast reply I do have .net framework 2.0 on the pc's in question the app wont run as a standalone on the development box either. i shall attempt to make a clickonce installer and report back as to my success many thanks! Bu ...Show All

  • Visual Basic Programming Languages

    Hi, I'm relatively new to programming, and Visual Basic doesn't seem to be that good of a language, and not that much used in real applications. I want to move onto a different language, one that is very popular, can do almost anything, and can be and IS used in professional applications. Another important factor is platform compatibility. Java provides that, but Java isn't that popular for Windows, and Windows is my primary target. C++ works, but I have a couple of questions: 1) Can C++ be used on any OS Is it a good language to use as my primary language 2) Is C# going to replace C++ Does that work on other OS's C# is newer, and so I'm thinking maybe its the new version of C++ that's going to replace it, as xhtml is probably going to do ...Show All

  • Software Development for Windows Vista Video conferencing app that can act as a DS video source?

    This is perhaps an unusual request, but I wondered if anyone knows of a piece of videoconferencing software (commercial or otherwise) that is capable of acting as a DirectShow video source in a capture graph E.g. the software manages the video conf. connection etc and is able to send its received visual data into a DS capture graph (where it would subsequently be passed through a DS transform filter I've already written) It may be that such a software does not exist but if you know otherwise please spare a moment to post the name here! Thanks, John Just use the regular WDM drivers and build a capture graph that renders to the network, through your transform. You will have to code the User interface that ma ...Show All

  • Windows Forms SQL with VB 2005

    hi all i linked my VB 2005 project to a small database which i created. I have a listbox and 2 textboxes. In the list box i see the surname of the customer and in the two textboxes the name and surname. When you click on the listbox (any customer name) the 1st and surname appear in the 2 textboxes as they are linked. My question is when i try to change the name of any customer then stop my application and run it again, the name of the customer does not change. I followed the steps shown in the video for that on this website but no luck. Stopping my application doesnt save the changes :(..any suggestion will be appreciated. thnx How do you read your data from the database DataSets and TableAdapters To p ...Show All

  • Windows Forms Running number for data grid.

    Dear All, I have a datagrid. First I design and set the column for my datagridview. Then I have few textbox and a sumbit button. Upon submitting I will add a new line into my datagridview. My problem is simple as I add I want a running number to appear as a column. As example the first data enter the column should show 1 then 2 etc. But when I delete I want the number to be resetted to as the row number. Thanks. Hi Sukbir, Lets say you have 5 records in the grid, so their nos will be like 1,2,3,4,5. Now if you delete the third row, do you want the output as 1,2,4,5 or do you want 4 to become 3 and 5 to become 4 Lets say you want it to be 1,2,4,5 then when a new record is added do you wan ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. levels

    how would i make my own level in XNA ...Show All

  • .NET Development Sporadic AccessViolationException in Marshal.PtrToStructure

    I have a C# class library that provides a wrapper around a set of legacy C-style structures used for interop with another application. When a class is constructed, it uses Marshal.AllocHGlobal to allocate a block of memory of the appropriate size, and frees it using Marshal.FreeHGlobal in the finalizer. Access to bits of the allocated memory is provided through properties that properly convert the data back and forth using Marshal.StructureToPtr and Marshal.PtrToStructure. Periodically, Marshal.PtrToStructure will throw an uncatchable AccessViolationException. This occurs when the garbage collector does a collection, but not for every collection -- I've tried to reproduce it using GC.Collect(), but it resulted paradoxically in it working p ...Show All

  • Visual Studio Express Editions how can i save modifications. vb2005

    hi for example: If user has changed the form opacity of my program, in the next time when he execute the application, the opacity is the same that was configured by user. anybody know how to do this Create a setting called 'opac' (Double click on the solution explorer window, 'My project') Find the 'settings' tab. Name = opac, Type = double, Scope = user, Value = 1 On a form with 2 buttons: Public Class Form1 Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click ' More transparent Me .Opacity -= 0.01 End Sub Private Sub Button2_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button2 ...Show All

  • Visual Studio Express Editions Creating a tab through Code

    Hi there, I've got this tabcontrol and a button . When i click the button I want it to create a new tabpage on the tabcontrol and then it creates the relevant objects like a menu on the tabpage. And then it creates code for that tab. I've been trying some code, but I couldn't find the right way... Maybe you already know how to create a new tab, but here it is for the ones who don't: TabControl1.TabPages.Add( "Test" , "My new tab" ) ...Show All

  • SQL Server I need SQL Query Help

    Sir, We are try to insert query like this Insert into Table_1 (smDate,Description) Values ('Thu, Feb 15, 2007 03:00 PM', ' Hai, It's Just for Testing') This is Exact Query about this... We know about MS ACCESS it has Built in function like Format('Thu, Feb 15, 2007 03:00 PM','mm/dd/yyyy HH:MM') But I am new to SQL. I dont know the The Date Format built in function in SQL Server. How can i Insert this Quesry to SQL Table and also How can insert "it's " this type of words into SQL.. Can you help me this is very helpful for my project Thanks With Regards S.Senthil Nathan Senthil: look up CAST AND CONVERT under CONVERT in books online to get a look at date and time formats. The ISO format is f ...Show All

  • Visual C++ MSBuild running from Local System

    Hi I've been executing msbuild.exe from the NT_AUTHORITY\SYSTEM account to build VS 2005 C# projects and the builds have been working as expected. Recently, I attempted the same for a VS 2004 C++ project and the build failed with the following error. fatal error C1902: Program database manager mismatch; please check your installation Is this a bug with msbuild or am I doing something wrong Thanks A colleague of mine was able to get the hotfix after a second call to MS support, mentioning that the KB article hadn't been published yet, and that the hotfix seems to be difficult to get ahold of. Thank you, Jaganathan, for your reply - do have any tips for the rest of the class on how best to get the hotfi ...Show All

  • .NET Development Object Oriented

    Hi, I'm having a problem with OO and CompoBoxes I wrote this code to get drives and then create an object contain some information. My problem is how to add this object to a combobox and then display only a proberty as a default property or something. This is a class for example: Public Class DCompoI Dim text_ As String Dim drivetype_ As IO.DriveType Public Property Text() As String Get Return text_ End Get Set ( ByVal value As String ) text_ = value End Set End Property Public Property DriveType() As IO.DriveType Get Return drivetype_ End Get Set ( ByVal value As IO.DriveType) drivetype_ = value End Set ...Show All

  • Internet Explorer Development IE7 Toolbar Icons

    Is it possible to extract the IE7 toolbar icons for use in applications with web browser control or are these protected or inaccessible I've looked for them and can't find them. Indeed, they are in ieframe. Thanks. - I'm just making a slightly modified version of IE in VS2005 with the webbrowser control, and it's just for personal use, I don't plan to even distribute it. I am curious about whether it's legal though. MS makes a lot of their icons available for use but I haven't seen the IE toolbar icons anywhere so I don't know about that. ...Show All

  • Visual C# Help with Strong Name signing in VS2005

    Hello, When I have finished a session of writing and debugging my Class within Visual Studio, does the Strong Name key have to be updated for that particular version of my source code If I have set up Signing Tab in the Properties page of the Class module, does Visual Studio manage any updating needed Would it be quite wrong to get a snk file created elsewhere, and attach it in the Signing Tab Thanks John jrad wrote: When I have finished a session of writing and debugging my Class within Visual Studio, does the Strong Name key have to be updated for that particular version of my source code No, you shouldn't change the strong name just because the assembly version chan ...Show All

  • .NET Development No symbols are loaded for any call stack frame. The source code cannot be displayed.

    Hello. I installed VisualStudio.NET 2005 a few days ago.  ( not beta ) While I'm debugging, I'm faced with strange message box. -- MessageBox -- No symbols are loaded for any call stack frame. The source code cannot be displayed. -- Debug Detail Window -- FatalExecutionEngineError was detected Message: The runtime has encountered a fatal error. The address of the error was at 0x7a2b5aec, on thread 0x358. The error code is 0xc0000005. This error may be a bug in the CLR or in the unsafe or non-verifiable portions of user code. Common sources of this bug include user marshaling errors for COM-interop or PInvoke, which may corrupt the stack. How should I solve this problem Please answer me.. Thanks. Gwisun. ...Show All

©2008 Software Development Network