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

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

tkroll

Member List

venup
K Webber
Robert.Altland
Fahd
Alastair Q
testqh
tenchyz
Evgeny Popov
coolcars
Konstantinos Polychronis
JaredJ
USJOHN
RickHan
csLearner
RandomLick
Gravy
Chandra4332
Alain de la Kethulle
ChandraP
Carl Peto
Only Title

tkroll's Q&A profile

  • Visual Studio Express Editions Problem installing VB.NET 2005 express.

    Whenever I try to install VB.NET 2005 Express Edition on my machine, setup displays following error: Error 1304: Error writing to file: Microsoft.VSDsesigner.dll. Verify that you have access to that directory. I am using Windows XP with SP2 and it is installed on NTFS partition. K.Rohit, 1. I am using Windows XP with SP2 and install my VB Express Edition on NTFS partition, too. I've got no problem during the process of installing. So I am sure there is no mistake or bug in Visual Basic Express Edition setup file. 2. Please make sure you have installed the .NET Framework 2.0 before the VB Express installation. Then please make sure there are no program related applications using the Microsoft.VSDesigner.dll are open during your ...Show All

  • Visual Studio Express Editions Table only updates once during runtime...

    I have a dataset that i am updating during runtime of my program.  To do this, I first delete all of the data in a datatable using "DELETE * FROM Table1" command, and then updating the dataset.  To initiate the update, i double click on a datagrid.  The first time i double-click on the data grid, the program works exactly as planned--i step through the code and verify that first all the records in the datatable delete, and then is updated with all the new records.  The problem i'm having is that the next time i double-click on the datagrid, the table doesn't delete!   Why would this happen   Here's my code: Sub UpdateTeamTable() Dim dt As New DataTable Dim strSQL As String Dim int1 ...Show All

  • .NET Development Reducing memory usage with XslCompiledTransform

    I've currently been using and XslCompiledTransform in my software to apply an XSL stylesheet to a user-provided XML file and then bulkloading the resulting file into a SQL table. This worked great until an XML file larger than 100 MB is thrown into the mix. The RAM usage jumps off the charts and for most users, my program exits will an OutOfMemory Exception. I've looked for ways to get around this and cannot seem to find any solutions. What can I do differently or what other alternatives do I have other than physically parsing through the XML file line by line (or node by node) and performing the operations the XSL file does myself... which is my LAST option considering I am sometimes dealing with 2GB and 3GB XML files. Oh.. and here's ...Show All

  • Visual Basic Create a class that disables specific controls

    Hi guys, I am considering creating a class that disables certain controls on my form when it loads. Opposed to setting each 'enabled' property to false, i think a class that executes when the form does, is the most efficient. Am i right, is this efficient If so, how exactly would i go about coding it Many thanks in anticipation for your help. Kyle Well it depends upon what your overall objective is...If it is to just disable controls on load of a form then you can do that in the designer or you can do it in the load event of the form. kitsch wrote: Opposed to setting each 'enabled' property to false What method would your class use to disable the controls ...Show All

  • Visual Studio How to integrate custom DSL with Class Designer?

    Hello, at PDC 05, Jochen Seemann demonstrated that a custom DSL can be integrated with the Class Designer that is part of Visual Studio 2005. I'm doing a quick research on this topic but found no good resources. Can somebody please point me to the appropriate documentation or samples I would be very graceful. Thank you, Borek Hi, my concrete situation is that I want to build a DSL that is more abstract than Class Diagram. In my top-level DSL, I want to be able to click on some diagram element, select "Drill down into Class Diagram" and to show appropriate objects in CD. But your response was informative, thank you. Borek ...Show All

  • Visual C++ Debug is hanging

    I am running into problem while I am debugging in myAppSVR project The problem is “Debuging is hanging and throwing “First-Chance Exception” “ I am doing the following steps. 1) Registered myAppSVR as server with /RegServer option 2) Kept Break point at Where I need. 3) Then started debugging. But it is throwing “First-chance exception in EdcSvr.exe (KERNEL32.DLL): 0x000006EF: (no name).” Please let me know your inputs ASAP. Thanks SRINIVAS ENDA Hi All,  I just found the solution. I read complete project code. It is a DCOM application and it is also Server for other application. I can say like this 1) It is a server 2) Based on this server one other applicatio ...Show All

  • Visual Studio Tools for Office :: OnKeyPress Event Handler in INFOPATH 2003 ::

    Hi Does any one know how to use onKey Up Event handler for a TextBox in INFOPATH 2003 Form. I am trying to Implement the autocompletion feature on my Infopath Form. But by default there is only three event handlers are supporting for a textbox. I am calling a webservice for this but the problem is its happening only when i press the tab ie onchange... I would like to know is there any alternatives are available for this when every time key press that webservice should call ... Please help... Regards Deepu M.I This is really not a VSTO-specific question at all. Rather, it is a question for the InfoPath forum, and you would most likely get a sensible answer if you repost your question he ...Show All

  • Visual Studio Express Editions how to save file?

    hi there... my problem is.. how to save a file (text, excel or doc) based on datagrid output Dim sw As System.IO.StreamWriter = New System.IO.StreamWriter("C:\abc.txt") sw.WriteLine("This is my text") sw.Close() Dim swExcel As System.IO.StreamWriter = New System.IO.StreamWriter("C:\abc.csv") swExcel.WriteLine("Akbar khan,akbar@akbar.com,www.akbarbuneri.googlepages.com") swExcel.WriteLine("Akbar khan,akbar@akbar.com,www.akbarbuneri.googlepages.com") swExcel.WriteLine("Akbar khan,akbar@akbar.com,www.akbarbuneri.googlepages.com") swExcel.Close() ...Show All

  • SQL Server how if esle statement works??

    hi, everybody! I have some problems with understanding how if esle statment in sql works. I'm trying to write my own count() -function and its not working with if else :(( I've already implemented it with case : select sum(case (hiredate) when (null) then 0 else 1 end) as 'Count' from emp It's working perfect. Now I want to have the same but using if else : select sum( if( hiredate is null) begin 0 end else 1) as 'Count' from emp the error message is: Msg 156, Level 15, State 1, Line 2 Incorrect syntax near the keyword 'if'. Msg 102, Level 15, State 1, Line 3 Incorrect syntax near '0'. What is wrong here In SQL Server, IF - Else is a control flow statement that allows you to conditiona ...Show All

  • SQL Server SSIS package

    What do I need to run C# app that's loading and executing SSIS package My understanding is I need Integrated Services running on the workstation. This gives two questions. How to install Integration Services on the workstation which is running SQL Server Express and the second is what is licensing to run Integrated Services ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Reset or not reset a IDirect3DDevice9?

    Hi @ all, i'd want know if calling IDirect3DDevice9::reset() is the correct way after switching from windowed mode to fullscreen. In PresentParameters there are some attributes that have sense only in fullscreen mode, as well as FullScreen_RefreshRateInHz or MultiSampleType. Have I to call reset() function Is it the correct way What do I have still to check Thx ;) Yes Reset() is the right way to switch to full screen, it's also the way to change any present parameter. Take care that windows style often need to be modified when moving to fullscreen : see Dx tutorial Step 1-"Creating a Window" for more details about that. You could also have a look to DXUT code which does that well. ...Show All

  • SQL Server Add a column in the matrix

    Considering the matrix below: Tipo0 Tipo1 Tipo2 Tipo3 TipoN Parcial 1/5/2006 09:30 12:32 13:15 18:00 07:47 2/5/2006 09:00 12:00 13:00 19:05 09:05 3/5/2006 00:00 4/5/2006 13:00 21:00 08:00 In the truth, one is about a timesheet for employees. The rows are the days of the month, which is passed as parameter, and the columns the Type, that can Be enter or Exit. I need to create the column in blue for, through a created function, to calculate the partial time of work of the employees. The problem is that I can’t add the column in this matrix and also I’m not under ...Show All

  • Windows Forms Copy data from datagridview To textbox

    how can copy data from cell of dataGridView to textBox (char by char) thanks u very Much I'm write this Code in the event CellBeginEdit of the dataGridView TextBox9.Text = DataGridView.Rows(e.RowIndex).Cells(e.ColumnIndex).Value he not Transfeer char By char to textBox in edit mode he transfeer all text in the cell to textbox i need transfeer data char by char from cell of dataGridView to textBox ...Show All

  • Visual C# Versatility/Practicality of C#?

    Hey all, new to posting but ive been reading here for a few weeks. Anyway, on with my question (which probably has been asked in some way already)- How versatile is VC# compared to VC++ All I generally see are simple (*duck/cover* ) desktop applications. I've read that its possible to do game dev (including DX and OpenGL), but I have yet to find any engines done in C#. I have just looked at API's/engines/SDK's for games, but I have not gotten actually into manipulating/programming in them yet. I've done some basic reading on C# and I sort of want to get into it, but I plan on in a few years down the line working for Lockheed (or a defense contractor of some sort) or EA-Tiburon. I've been programming since I was probably around 10, ...Show All

  • SQL Server How to format prediction Expression

    hi, when i make use of predicton functions, the output is formatted in its own.But I want to format that.How to do that Thanks, Karthik. hi Shuvro, Thanks For your reply.Is it possible to format the resultset returned from a prediction function. For Example,In this query, select PredictTimeSeries(Performance,5) FROM [Stud_Model] I am getting the resultset as Expression.$Time Expression.Performance 200611 90 200612 95 like that. I want to give my own columnnames as Year and performance.how to do that Thanks, Karthik. ...Show All

©2008 Software Development Network