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

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

akin_l

Member List

Gravy
Michael1956
Syed Mazhar Hasan
chare
Jordan Carroll
James Chambers
Can-Ann
vic07
akira32
Prabagarane
mamo
ayya
sydes141
gmaenrile
Kirti Mistry
Thomas Andersson
Charles Tam
DKB
Nitin Sharma22
cbpd86
Only Title

akin_l's Q&A profile

  • SQL Server Can not create a connection to Oracle data source when report is processing

    hello, I am getting following error message when I try to view a report from reporting services. The report runs fine but after while i get the following error message. The error message will go away if i open the report manage from the server and run the report once. The report will run fine for a while from anywhere but afterwhile i get following error message. An error has occurred during report processing. (rsProcessingAborted) Get Online Help Cannot create a connection to data source 'OracleConnProc'. (rsErrorOpeningConnection) Error while trying to retrieve text for error ORA-12154 can someone please help me. Hello Robert, I followed steps from your suggested a ...Show All

  • Visual Studio Express Editions Size of executable

    Hi, I have an application which in VC 6.0 compiles to an executable of 458kb, using the "Optimize for size" option. The same application, using all the size optimization options I could find, now results in an executable of 532kb in VC express edition.. Is this normal or is there something I should be doing Its important that I keep the size to a minimum.. Thanks Dimitris Thanks for the very informative reply. I did all the things you mention and the resulting exe is now 515kb. That's better, but its still over 60kb more than the vc6 version.. I suppose its extra safety features or something, but the program seems to behave just the same. Dimitris ...Show All

  • Visual Studio Express Editions Real Time Math Calculations

    How's it going everyone I am working on a piece of software that will allow a user to do some complex math very easily. To make a long story short, I need the software to make the calculations in real time instead of displaying the results after a button is clicked. Does anyone know where I can find a tutorial on how to do this Thanks, Brian Tall Dude wrote: Use 3 textboxes, textbox1&2 as input textbox3 as output. Use the textbox1 and textbox2 'text changed' event to do the calculations and update textbox3. Search this forum for 'numbers only' to find out how to control user input to your input textboxs. Search this forum for ' TextBox1.TextChanged' to see examples of t ...Show All

  • Windows Forms Cannot install WSUS (Microsoft SQL Server 2000 Desktop Engine fails to install)

    Hi there, It seems that I cannot install WSUS, for some wierd reason the Microsoft SQL Server 2000 Desktop Engine fails to install: The log: === Verbose logging started: 08-02-2007 18:16:58 Build type: SHIP UNICODE 3.01.4000.2435 Calling process: e:\fdb2914e58e02b2aac2130eb2466\WusSetup.exe === MSI (c) (C0:54) [18:16:58:265]: Resetting cached policy values MSI (c) (C0:54) [18:16:58:265]: Machine policy value 'Debug' is 0 MSI (c) (C0:54) [18:16:58:265]: ******* RunEngine: ******* Product: e:\fdb2914e58e02b2aac2130eb2466\WMSDE\SqlRun03.msi ******* Action: ******* CommandLine: ********** MSI (c) (C0:54) [18:16:58:265]: Client-side and UI is none or basic: Running entire install on the server. MSI (c) (C0:54) [18:16:58:265]: Gr ...Show All

  • Visual Studio Editing an existing connectionstring with the DataConnectionDialog at runtime

    Can anyone tell me if it is possible to edit an existing connectionstring with the DataConnectionDialog at runtime in my own winform application I can create a new one at runtime in my own winform application using the following code: Microsoft.Data.ConnectionUI. DataConnectionDialog dcd = new Microsoft.Data.ConnectionUI. DataConnectionDialog (); Microsoft.Data.ConnectionUI. DataSource .AddStandardDataSources(dcd); Microsoft.Data.ConnectionUI. DataConnectionDialog .Show(dcd); Once I have created one, I would like to be able to use the same dialog to edit it by feeding it the existing connectionstring information (the equivalent of the PromptEdit method of the MSDASC.DataLinks object). Any help would be much appreciate ...Show All

  • Visual Studio 2008 (Pre-release) WCF Extensions for VS2005 on WinXP

    Group, is the WCF Extensions for VS2005 on Windows XP a production-quality download Or is it still in beta fx Could you provide a link on the particular extension you are referring to Please be specific on what you want to know so we don't have to guess around... Thanks. ...Show All

  • Smart Device Development Can't install .NET CF 2.0

    Hi! When I tried to install .NET CF 2.0 redistributable on my I-mate (with Windows Mobile 2003) smartphone I got an error message, what said that file is not intended for my device. What can I do Please help :( There's nothing you can do as NETCF V2 is not supported on SP 2003. ...Show All

  • Visual Studio Express Editions Cast a string as an object name...

    I have a combobox whose collection is a set of strings naming other objects onscreen, such as: 0 = "Label1" 1 = "Picturebox1" 2 = "Textbox1" I'm looking for a way to use the retrieved combobox.items(x) string as the object name in object methods, such as: me.label1.visible = true I have discovered no way to convert a string to an object name, or cast a string as a known object name, but I would have thought it would be possible. Dave299 wrote: Private Sub Form1_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load ComboBox1.Items.Add("Label1") ComboBox1.Items.Add("Button1") ComboBox1.Ite ...Show All

  • SQL Server INDEXING A VIEW in MSSQL2K5x64.de Standard w.SP1 ... ERROR 1939

    I'm experiencing a problem while trying to index a view ... I'm using a single field and everything else are default entry's. I'm getting the Error Message 1939 . The code is a follows: USE [CS_WGO] GO SET ARITHABORT ON GO SET CONCAT_NULL_YIELDS_NULL ON GO SET QUOTED_IDENTIFIER ON GO SET ANSI_NULLS ON GO SET ANSI_PADDING ON GO SET ANSI_WARNINGS ON GO SET NUMERIC_ROUNDABORT OFF GO CREATE UNIQUE CLUSTERED INDEX [IDX_ALG_ORG_BEZ_V_1] ON [dbo] . [ALG_ORG_BEZ_V] ( [NDL] ASC ) WITH ( STATISTICS_NORECOMPUTE = OFF , SORT_IN_TEMPDB = OFF , DROP_EXISTING = OFF , IGNORE_DUP_KEY = OFF , ONLINE = OFF , ALLOW_ROW_ ...Show All

  • Visual C++ console application entry point for al option main

    I have another post concerning how to embed an xml file in the assembly. But this question is deeper within. Thought a new post is warranted. I can not determine the proper /main option setting for my console test application. (I have tried a variety and looked at ILDasm to no avail: main, assembly.main, console.main among others) Can someone supply the correct option setting. E:\VS8\TestStuff>al debug\TestStuff.exe /embed:productlist.xml /out:jkj.exe /target:exe /main:main Microsoft (R) Assembly Linker version 8.00.50727.42 for Microsoft (R) Windows (R) .NET Framework version 2.0.50727 Copyright (C) Microsoft Corporation 2001-2003. All rights reserved. ALINK: warning AL1020: Ignoring included assembly 'e:\VS8\TestStuff ...Show All

  • SQL Server Having two issues with SQL Server 2005

    I'm having two problems and one of those problems is making me feel like something of an idiot. 1) How the heck do I access the Query Analyzer I have a stored procedure that I'd like to watch variables in during debugging and I've been told the Query Analyzer is the way to go. In 2005 you are supposed to be able to access it directly from Management Studio but I can't figure out where it is. 2) I am trying to run the Database Tuning Advisor, but when I choose a database and workload then click "Start Analysis" I get a Microsoft Visual C++ Runtime Library error. A message box appears and says: Runtime Error! Program c:Progr... R6031 -Attempt to initialize the CRT more than once. This indicates a bug in your ...Show All

  • Visual Studio VB 2005 compatability

    hey are Visual Basic 2005 applications compatible with windows Vista ...Show All

  • .NET Development remote debugging problem

    I'm having some difficulties debugging a web service from a local winform app to a remote development server. I have the remote debugging monitor program running on the remote machine, and it is picking up the attempts to connect in the log. So I know that the code is calling the remote machine and connecting to the web service, it just won't allow me to debug the service. I read up on some of this, and I've seen that they suggest putting the App_code directory in the same directory with the web service. Whenever I copy the App_code folder over to the web service directory, I get an error stating that it is expecting "text/html" instead of "text/xml". The service is a database service that adds an error record int ...Show All

  • .NET Development error

    when i debug the .aspx i'm getting an error like this 'Error 1 Could not load file or assembly 'System.Design, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b03f5f7f11d50a3a' or one of its dependencies. The module was expected to contain an assembly manifest. ' i feel that there is no error in the .aspx page could u please help me................ Dear RizwanSharp, thanks for answering my question. but i'm sorry to say that its not working. i added the reference 'system.design' as you told. when i debug the page after that i'm getting the same error in the web.config file please help me.................... i'm not able to debug any of the website because of the same error. ...Show All

  • .NET Development Get Datagrid...

    Hi, I currently have a populated datagrid within my c# .net application. Once the user selects a record within the datagrid, I would like to get the value within the columnX of the record they have selected. I have done multiple searches and am unable to find a solution. All help is appreciated. Well, lets say I have a database that consists of two fields, ID and Name. There are several records within the database. When the user selects a certain record within the datagrid, I want to store the ID of the record they selected within a variable. ...Show All

©2008 Software Development Network