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

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

Helan

Member List

ChrisMoje
cwlaualex
DroopyPawn
MikeRt
jimoctezuma
Travis Ingram
Christie Myburgh
DRoden
Rattlerr
Freeky
B_W
Thomas Andersson
Davids Learning
Javfarary
zensunni
Radim Hampel
JoeSmith
pierreg
danadanny
ToddOs
Only Title

Helan's Q&A profile

  • Visual Studio Tools for Office Installing VSTO

    Where can I find information for installing and setting up VSTO I already have Visual Studio and Office 2003 installed and I need to figure out how I can setup Visual Studio so that I use VSTO functionality. At the top of this forum, there is a fixed post that says "Please Read this Next" ... That's what you want to read; all those links and posts and whatnot. Lots of good information in there. FYI - the VSTO 2005 SE works for both Office 2003 and 2007, and allows you to implement an application-level solution, and is FREE, verse the previous VSTO that only worked on 2003, implemented a document-level solution and wasn't free. ...Show All

  • Visual Studio Analyze is not repairing the problem

    I run the analyze utility it says project log 'wedaaaaa' has a delete record for item 'Online_help.gif' , but that item wasn't found in the project. The project contents as rebuilt from the log 'wedaaaaa' does not match the project's actual contents. How can I remove this problem so analyse does not report it again I have tried all sorts of switch combinations and removing the backup folder but to no avail I still keep getting this error. Anyone have a solution on this Thanks Could you please explain what is involved by the following : "you have to call Microsoft PSS (Product Support Service) to get it". Do I have to ring anyone Is there webpage I could look up to ...Show All

  • Windows Forms [SOLVED]Forms and Menory usage

    hi, im running MS Visual Studio .NET 2005 and i created a simple Form by clicking on File >>> New >>> Project >>> CLR >>> Windows Form Application. I added nothing to the forum and then built it and then Started Debugging... When i started Task Manager it shows a simple Form (with nothing on it)as using a hoofing 16.296k of memory i don't get it, i have software on my computer that is basically a Form and many controls on it and it also performs many tasks as an application does and may only use 4.50k Why would a simple Form use so much memory if it isnt doing anything thanks ah ok, i didnt like the look of those MFC because of the toolbar at the top and i couldnt get rid of it . thanks for your ...Show All

  • Visual Studio Express Editions Microsoft file transfer manager doesn't work.

    When I use it,it would always say "validation failed,transfer enabled." I don't know why.Who can tell me THx. from yesterday I was getting the same problem, thanks for helping establish that it "wasn't just me". ...Show All

  • Visual Studio Express Editions vb excel align

    Hi. I was looking for an answer to that question for quite awhile. How can I center text in excel using vb. I was trying Dim xlws As Microsoft.Office.Interop.Excel.Worksheet = oWorkbook.Worksheets.Item(1) xlws.cells.HorizontalAlignment = xlcenter but it doesn't work DMan1 that is the code that I have: Dim oExcel As New Microsoft.Office.Interop.Excel.Application Dim oWorkbook As Microsoft.Office.Interop.Excel.Workbook = oExcel.Workbooks.Add oExcel.Visible = True oWorkbook.Worksheets.Add() Dim xlws As Microsoft.Office.Interop.Excel.Worksheet = oWorkbook.Worksheets.Item(1) xlws.Cells(1, 1).Select() xlws.Cells(1, 1).HorizontalAlignment = ..... What should I ...Show All

  • Smart Device Development System.Console.ReadLine() always return lowered case string -_-!

    Hi, I have a console application that takes user input: seq = System.Console.ReadLine() System.Console.Write("TTT {0}", seq) Readline() somehow always converted the string into lower case so "ABCabc" would become "abcabc" which is not what I really want Is there any way to take user input as it is Thanks, Unless you are doing something in between the following will output the strings in the same case as there  were entered.  This is a console application - so perhaps you may be doing something different - perhaps you can enlighten us with a bit more info. Module Module1     Sub Main()         Dim seq = System.Cons ...Show All

  • SQL Server Transaction Question

    I'm fairly new with Service Broker and have been working on my first Service Broker application. I am using it in a .NET based application we've created. All transactions in our application are started, rolled back or committed from within our C# code tier. From what I've read, any time a message is put on a queue or read from a queue, it should be done from within the context of a transaction. Here are my questions. 1) Since our .NET app begins all transactions, I cannot begin and end a transaction in any stored procedure our app calls, that puts a message on the queue, because that would conflict with the transaction we already have in place, created in our .NET app. Is this correct 2) If #1 above is correct, any message put on ...Show All

  • Visual Basic Passing a Structure

    I am attempting to pass a structure from one DLL to another. The Structures are identically define in each DLL (Cut-and-Paste), but compiler complains it cannot convert types. I've tried the usual 'fixes' -- moving code around, changing ByVal to ByRef, etc., etc., etc. No Help. Any ideas ERROR: Value of type 'LPM.Menu.User_Data' cannot be converted to 'SS.clsUpdates.User_Data' <CODE> ' ' In One DLL ' Public Class Menu #Region "Structures" Public Structure User_Data Dim ID As Integer Dim Role As String Dim Preferences As String End Structure #End Region #Region "Variables" Public UserData As User_Data #End Region #Region "Update" Priv ...Show All

  • SQL Server SQL Express on Load Balanced Servers

    Hi, I have two 2003 servers which are load balanced - not for high demand but for resiliance. The application that is being run on both servers shares data on a NAS raid 5 device. Can I install SQL Express on each of these servers and have them share the databases on the NAS device Help please anybody Paul Hi Andrea, Thank you for your help. Paul ...Show All

  • SQL Server Web service will not completely run SSIS package

    Hi, After many days of searching i have eventually been able to set up a web service to call and execute my SSIS package. The SSIS package is set up completely with windows authentication,the web service is run from an application using the same credentials with all necessary access for the SSIS package. I can run the package from the SQL management studio and it works fine, however when i attempt to run it from the web service it appears to work once round the for each loop and then fails for every other time. The error i am getting is as follows: Executing the query &quot;Set = (select max(URC_ID) AS URC_ID FROM VIEW_A1021_URC WHERE SerialNumber = ) &quot; failed with the following error: &quot;Syntax err ...Show All

  • Visual Studio Express Editions WINSOCK

    hi. i am using this code in an application (on a form) which includes a winsock control. Do DoEvents() Loop Until wsChat.OcxState = sckConnected Or wsChat.OcxState = sckError If wsChat.OcxState = sckConnected Then when i type this it says that the blue underlined statements in my example are "not declared". It is winsock version 6.0 (If that means anything.) Ok, but how would that fit into my application. This is the code for it (It is a chat application). There is a lot of cde, i know. Option Explicit On Public Class frmMain Private Sub AddText( ByVal text As String , ByRef Box As TextBox) 'Take the text box passed as a reference and ...Show All

  • Visual C# How to add data to a datagridcombocolumn when another datagridcombocolumn is selected ?

    Hi all, I have a datagridview which has 4 columns as below. DataGridViewTextBoxColumn dgvTxtMaterialID = new DataGridViewTextBoxColumn (); DataGridViewComboBoxColumn dgvCmbMaterialType = new DataGridViewComboBoxColumn (); DataGridViewComboBoxColumn dgvCmbMaterialName = new DataGridViewComboBoxColumn (); DataGridViewTextBoxColumn dgvTxtQuantity = new DataGridViewTextBoxColumn (); ------------------------------------------------------------------------------------------------------------------------ | dgvTxtMaterialID | dgvCmbMaterialType | dgvCmbMaterialName | dgvTxtQuantity | ------------------------------------------------------------------------------------------------------------------------ ...Show All

  • Internet Explorer Development Please a very simple sample for BHO using Visual studio 2005 in C#

    Hi, please help a newbie here. I have searched the internet for samples for BHO in C#, I find it's hard to compile those code. If I start a new project under VS 2005, what kind of project should I start with a console, or control library If it is possible, please post a very simple sample here. I don't complain all the documentation at MSDN, but I will really appreciate anyone give me a hand here. thanks Misa Hey Misa (Misha ) Check out this link: http://www.codeproject.com/csharp/dotnetbandobjects.asp This is pretty much the only article on Internet about IE add-ons in .NET. Start from there. Lots of people were able to successfuly build IE ad-ons with BandObject.dll from Pavel. Question to IE development team: ...Show All

  • Visual C# How to use c # to write shrinking algorithm?

    Algorithm use c # language is described shrinking Can write the code example thanks 1: 0,1,9   2: 4,8,4   3: 7,3,3   4: 3,1,3   5: 7,3,6   6: 2,5,5   7: 4,5,9   8: 5,5,8   9: 5,0,4   10: 7,3,5   11: 1,9,3   12: 0,3,5 13: 5,5,0   14: 8,1,4 15: 9,1,6 ------------------------------------------------------------------------- Has appeared the data through above, calculates the next group of numerals ---------------------------------------------------------------------- 16:(0-9,0-9,0-9)//Each digit is 0-9 random number ...Show All

  • Visual Studio Team System Performance Problem #2

    We've got a project with 3200 objects. The project contains about 10 errors. When we attempt to double-click on one of the errors to bring up the file, Visual Studio will hang for anywhere between 3 and 10 minutes. The Task Manager shows 'devenv.exe' consuming about 90% of CPU resources for this entire time. We're using the RTM version of DBPro. Amos. Me too, we also have performance problems which stall Visual Studio (or at least one thread in VS). So we are killing VS 3 to 4 times a day. Afterwards deleting the .dat file helps to get it up and running again. ...Show All

©2008 Software Development Network