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

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

BoulderGent

Member List

Saamy
Zinkyu
Jakin
dexxter
Umamageswari
areia
Jon Langdon
Venkatesan.Loganadhan
Bruce
jmnc1234
Navision
Mark Conway
Doomgrinder
Dockboy
Marco Kotrotsos
Roxane Kouassi
Tober
Virtuss
Coding_Freak
wyl86
Only Title

BoulderGent's Q&A profile

  • Visual C++ ATL with VS 2003

    Hello i am trying ATL first time ,and using VS2003,i ran the project for ATL PROJECT,but it didn`t generate any .idl file,i added myself but i aint sure it will add the stuff itself when i write code in source files guide me thanks You choosed "Attributed" from the wizard. In this case no idl is needed and used. All classes contain the idl information inside the cpp file. Uncheck the option "Attributed", in thiscase the wizard will create a idl file. ...Show All

  • Visual Basic Visual Studio 2005 Express Edition

    Today I installed Visual Studio 2005 Express Edition on my work PC and when I went to launch it the program appeared briefly (I saw the shell of the program), and then it closed a split second later.  Is this because I have Visual Basic 2003 Standard installed   Am I wise to explore Visual Studio 2005 Express Edition   Will it have features that blow away Visual Basic 2003   Thanks! Hi, No, there should be no problem with the VS2005 even if you have VB2003. And yes it has some features that would make your development much more easier. You'll have to give it a try to find out...   ...Show All

  • .NET Development Unhandled exception in secondary app domain

       I am using app domains to host add-ins (.NET 2.0). If add-in does something bad, or if there is an unhandled exception in the add-in etc., I want to gracefully unload app domain without application going down. I tried AppDomain.UnhandledException, but at the time it is called application is already terminating. So how can it be done Alex Unfortunately you can't .  What you'll want to do is prevent code from creating a new thread.  Doing that involves using the unmanaged hosting APIs, which may or may not be an option in your case. -Shawn ...Show All

  • Visual Studio How to print access report through printdialog with VB.NET 2005

    I used the VS 2005 Professional to build a Khmer Unicode Application of Restaurant Management System and I have a problem with interval space as the print dialog control to execute the print dialog box.  And the next step, I built reports in Ms Access 2003, then using the VB.NET 2005 to execute the report, but I have some problem that I do not want the Access Application to open when I print.  Here is the followong code: with adding the reference of MS Object 11.0 Library, then Imports Access = Microsoft.Office.Interop.Access Public Class Form1 Dim oAccess As Access.Application Private Sub Button1_Click( ByVa ...Show All

  • SQL Server Connection String has to be reset every time when DTS package is started

    Hi All, I am trying to import data from flat file to sql server 2005 DB table using SSIS. There are 4 different text files in the input folder. I am using for loop to iterate reading and importing 4 times. In order to do this I have set "Connection String" property of a connection manager to a package level variable using expression. There is a script which supplies the source file name and assigns to this variable. The package works fine. The data gets imported successfully into the destination table. However, when I close the package, reopen it and then run, the Data Flow task fails with the error "Can not open the sou ...Show All

  • Visual Studio 2008 (Pre-release) DLinq - CreateDatabase failing .....

    Hi all, I’m new to this particular forum so please forgive me if I’m repeating or questioning something that has already been done. I have an existing C# project with the following architecture: Interfaces -> ABC’s -> BO’s Where the Interfaces define the contracts, the ABC’s implement the contract and the BO’s inherit from the ABC’s, pretty standard I would have thought.. anyway, I am trying to shoe-horn DLinq into the equation by attributing up my ABC’s with the necessary [Table] and [Column] attributes (for the Column attributes I am using nearly the full set of attribute parameters to have strong control o ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Managed DirectX, C# & and large textures

    I have a very simple 3D world which consists of a sphere which is meant to represent the Earth. While a single texture file, like the ones which come with the DirectX SDK are good for when the whole world is being viewed, it is no good viewing it up close. Is there any way to have multiple texture files relating to specific points on a sphere, so that if for example I have a more detailed image of New Zealand, I can overlay that portion of the sphere with that detailed image, and leave the rest of the sphere with the standard texture I am relatively new to graphical programming so I'm a little lost as to which way I should be looking... a ...Show All

  • Visual Studio Team System My computer is not in the same domain as Team System Server

    Hi guys, I'm having a problem here. My user is not in the same domain as the Team Foundaction Server (.NET 2.0 Beta 2) is! Does this mean I can't not log in on the TFS I could have the Admin create a user on the TFS with the same username and password then mine has, but that user is then in the domain of TFS. Is there a way to set a username and a password in the Team Foundation Client I did not see any textboxes in VS.NET 2005 (in the Options panel) where I could set a different username and password. How do I connect to a TFS with a different username and password then mine (the one of the user i'm currently logged in with in Windows) I g ...Show All

  • SQL Server How to do bulk Delete

    I have a table that has a primary key made of 3 fields (we don't want to use a surrogate key in this situation).  In a particular process there is a work table that contains these 3 PK fields and we want to bulk delete them from the base table.  Without looping thru the work table, how can I write a Delete statement to delete records in the base table using the work table rows as the criteria This syntax illustrates what I want to do, but is not allowed by SQL. DELETE bt.* FROM basetable bt INNER JOIN #work wk  On bt.fld1 = wk.fld1 And bt.fld2 = wk.fld2 And bt.fld3 = wk.fld3 Ahhh!!!  ...Show All

  • Visual Basic Creating Zip Files

    Is there access in VB2005 that allows creation of compressed (Zip) files, or at least has access to the windows-based utility that puts files into a compressed folder You can download one from here: http://www.icsharpcode.net/OpenSource/SharpZipLib/Default.aspx . ...Show All

  • Visual Basic CAN WE USE VB CODE TO CALL other APPLICATIONS' OBJECTS

    Please help! I would like to learn from you how to use VB code to call other applications objects, for example: can we call a Microsoft Access stored procedure (a query) by using VB codes Daniel, Thank you for the code. I tried with your code, but I guess I have to check the reference objects (Menu(project - references)) to be able to declare the object. Please tell me what objects to check. Thanks, Tom ...Show All

  • Visual Basic Socket Encoding and Decoding using Ascii Encoding

    Hi All fairly new to VB .Net and have been trying to port code from vb6. I have picked up the sample application for sockets and my problem is I have a string which come come in with binary data packed as bytes i.e 10101010101001 and the bytes would appear as .>D.... .. .B..." compressed bitmap. It would now appear that I cannot see the full string I have some characters missing and when I read through the data and build a response I cannot pack the binary data to its original state. Can Any one give me any pointers as to where I am going wrong. Sample Code for getting stream state.sb.Append(System.Text.Encoding.ASCII. ...Show All

  • SQL Server URGENT, sqlServermanagementStudio can't find sqlExpress.Though it has apparently been installed

    hiya, I'm trying to install. I was getting an error relating to "sqlncli.msi" So, I: 1) extract sqlncli.msi 2) repair it 3) reboot 4) re-install Apparently, it installs successfully. 1) the sqlExpress service is running ( but I don't see the wee green icon in the sys tray) 2) I try to use sqlServermanagementStudio...I look for sqlExpress in the login page, but it can't connect. I am in a big hurry for this, should I unistall then re-install sqlServermanagementStudio I simply want to run sqlExpress locally on a machine, nothing fancy..Can I use a command to attach the database ...Show All

  • Visual Studio Tools for Office publishing outlook add-in

    When I publish my application everything goes fine, I put it on my harddrive/website/desktop. But when I try to run it I get this error: This application is improperly formatted PLATFORM VERSION INFO Windows : 5.1.2600.131072 (Win32NT) Common Language Runtime : 2.0.50727.42 System.Deployment.dll : 2.0.50727.42 (RTM.050727-4200) mscorwks.dll : 2.0.50727.42 (RTM.050727-4200) dfdll.dll : 2.0.50727.42 (RTM.050727-4200) dfshim.dll : 2.0.50727.42 (RTM.050727-4200) SOURCES Deployment url : http://localhost/Publish/Appointment.application ERROR SUMMARY Below is a summary of the errors, details of these errors are listed later in ...Show All

  • Visual FoxPro cannot generate an exec file

    I just finished a large project and tried to generate an .exe file from it. I encountered the following problems. BUILD EXE FROM ..... issued from the Command Window gives me a series of errors. The first one is entirely unexpected. It claims that a file "inpARR" could not be found. When I click on "locate' it offers me a file dialog box to find it. I definitely do not have any reference to a file by this name anywhere in my project. There are a few places where an array "inpARR" is used. There is no line number or procedure to locate the source of this error and it is a pretty daunting task. I combed the whole pr ...Show All

©2008 Software Development Network