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

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

Obble

Member List

HugoBeach
mri
Paul A. Mestemaker II - MSFT
melinjo
marcelv
Lucian
Ashvinmax
Andrew Whitechapel - MSFT
Jerry Sparkman
DineshSharma
chris_sentman
jch_00
igibbwiz
Adrey
Ken LC
Reginald
LeGonzo
2ndrnd02
JimB001
DavidJames
Only Title

Obble's Q&A profile

  • Visual Studio Windows 2003 x64

    I have a test wesite that I am working on and have been able to run it successfully on a Windows 2003 X86 server with SQL 2005. All the normal asp.net stuff works including database access but I'm having trouble getting Crystal Reports to run properly. I do have the Crystal runtime installed...and maybe that's part of my problem, do I need a 64bit version of that to be able to use it Anyway, the error I'm getting is a ...InteropServices.COM ...Show All

  • Visual Studio Questions on Visual Studio 2003/2005

    Hello, I'd like to know which version is included of Crystal Reports in Visual Studio 2003 and 2005 I know in the 2002 (and 2003 ) it's version 9 (or equivalence) Also I would like to know which full Crystal Reports versions we can use with the .NET studios I've tested CR10 with 2003 and it fits but could XI work with 2003 for instance A list of compatibilities would be advantageous Crystal Reports for Vi ...Show All

  • Visual Basic StreamReader

    Hello, I’m trying to create a program will supply information for variables from a text file, so that as the possibilities change, a simple text file will need to be amended, rather than rewriting the original code. I am reading about FileStream and StreamReader, which seem like just the ticket. For instance, if I wanted to populate a TextBox with items I wrote in a text file, such as: Tom Mike Jim Jean I t ...Show All

  • Visual Studio Express Editions Getting desktop width/height

    Just a simple question as I can't find what I want in Google without wading through tons of pages that are irrelevent Making a windows forms application and would like to modify the size of the form dependent on the user's screen resolution. As an example, no matter what resolution the user is using, I'd like my form to always be 30 pixels from the top and 30 pixels from the bottom of the desktop. So the higher the resolution, the more the form ...Show All

  • Windows Forms ***FIX*** Error installing Winforms 2.0 application with ClickOnce deployment

    Hi. I have an Winforms 2.0 application that I want to deploy using ClickOnce deployment. I have tried it and the deployment seems to work. I get the webpage where I can install the application from, but when I try installing the application I get an Windows error dialog and a '.NET Runtime 2.0 Error Reporting' entry in my Windows eventlog. Detailed error message: EventType clr20r3, P1 app.exe, P2 1.0.2211.28810, P3 43d0fb04, P4 mscorlib, P5 ...Show All

  • SQL Server Change query issues

    I am trying to take this statement: Select Total = SUM(gt) FROM (Select Distinct CustomerName, CustomerNumber, FeeGoal_AZ AS FG, FeeSchedule, (cast(FeeGoal_AZ as numeric(30,10)) / FeeSchedule) * 100 AS gt from DCR WHERE branch='00002' group by CustomerName, CustomerNumber, FeeGoal_AZ, FeeSchedule ) as dTable and change up (cast(FeeGoal_AZ as numeric(30,10)) / FeeSchedule) * 100 AS ...Show All

  • .NET Development Loading Access DB in Memory, efficient way ?

    Hi, I want to load three ~150 Mb sized Access 2000 DB's in memory to perform a lot of operations. Loading ONE complete DB in DataTables will result in an out of memory exception. The memory of the DataTables blow up to 1,400 Mb. Is there an memory efficient way to hold tables in memory, the tables have around 8 million entries and work with them fast Has anyone sample code or a hint what mechanism to use Thx.... ...Show All

  • Visual Basic Converting Julian Time Values

    I am a VB6 newbie trying to convert a Julian (1970) value to a standard date and time format.  The value I am trying to convert is the number of seconds since Jan 1, 1970.  Any help would be greatly appriciated. Sorry, I misunderstood. In VB.Net use the following: The example uses two TextBoxes:  tbJulian and tbGregorian and two Buttons: btnConvert and btnExit I've combined the buttons in one c ...Show All

  • Visual Studio Problem with underline Text in Crystal Report in justify Alignement

    Hi All, I have a Windows program written in C# using VS2003 and used crystal report for reporting purpoe. I am facing problem in underline Text in Crystal Report in justify mode. Problem is that underline breaking between Two Word Like ( Crystal Report for Visual Studio ). I want continous underline ( Crystal Report for Visual Studio ). There is no problem in left and right align. Do I miss any thing How to I make the Continous und ...Show All

  • SQL Server Remote Debugging in SSIS ?

    Hello   I've just heard that Remote Debugging should be possible in SSIS, but how Some of the projects we run require a lot of memory and it's sometimes slow to debug on the local machine Yes i know i can reduce the input rows, but in some cases i need all the data for testing. Does anyone know how to remote debug cgpl, Just to clarify, by remote debugging I assume you mean that you wa ...Show All

  • Windows Forms Server Setup Package Taskvision 2.0

    On the WindowsForms.Net site there is a new release of TaskVision built on .Net 2.0. The description states the following: Task Vision - WinForms PM The TaskVision application demonstrates a full n-tier application for the management of personal and business related tasks. The sample comes with a ready to run demonstration client, full client source code, and a server setup package for running a priva ...Show All

  • Visual Basic Saving DataSets

    Hi there, I have a problem that my data does not get saved in the database. I can retrieve and see the data in my form that I have entered directly by edits made in the "show table data" view under the Database Explorer. However, when I make data entries in the form these values do not get saved back in the database. I am using the following code in the form: Private Sub bindingNavigatorSaveItem_Click( ByVal sender As System. Ob ...Show All

  • Windows Forms DataGridView Scroll

    Hi. When I scroll my DataGridView it is scrolled by steps of 3 (or any other number) of rows depending on what is set in Windows Mouse Properties. Is there a way to make it scroll row by row t.e. one notch = one scrolled row. Thanks! There isn't any built in property to change this. You would have to override the OnMouseWheel method and provide your own implementation (and not call base.OnMouseWheel) -mark DataGridV ...Show All

  • SQL Server Problem installing SQL Server 2005 Express with Advance Services CTP

    Hi, I was unable to install the CTP version of SS Express Edition SP1 with Advance Services. The installation failed with the following error message: TITLE: Microsoft SQL Server 2005 Setup ------------------------------ SQL Server Setup could not connect to the database service for server configuration. The error was: [Microsoft][SQL Native Client][SQL Server]Login failed for user 'sa'. Refer to server error logs and setup logs for mor ...Show All

  • Visual Studio Express Editions invalidcastexception derived treenode

    hi all! in my program i have a treeview formed by some classes derived from the treenode parent class...the scope of my program is to write an xml file by the structure of the treeview... i can save my project( and so write the xml file) and when i save a new project i can do a good cast...for example: org = (Organization) node; ->org is an instance of Organization(derived from treenode) node is an instance of TreeNode i can also ...Show All

©2008 Software Development Network

powered by phorum