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

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

Krela

Member List

Terry Smith
Vamsee Krishna
JohanNL
IamHuM
EvilOneSD
grimdog
dteviot
Jan Meeusen
OClaudiu
3d_developer
ttfo
DOSST
AbelMorelos
Airmax
RizwanSharp
manick312938
lyqfqy
vanu
Rocky79
Keithyboy1
Only Title

Krela's Q&A profile

  • Software Development for Windows Vista installutil.exe installing windows service

    I'm tring to install a windows service and keep getting the following message, can anyone help with this TIA C:\Program Files\My Application>installUtil.exe MyApp.exe Microsoft (R) .NET Framework Installation utility Version 2.0.50727.42 Copyright (c) Microsoft Corporation.  All rights reserved. Running a transacted installation. Beginning the Install phase of the installation. See the contents of the log file for the C:\Program Files\My Application\MyApp.exe assembly's progress. The file is located at C:\Program Files\My Application\MyApp.InstallLog. Installing assembly 'C:\Program Files\My Application\MyApp.exe'. Affected parameters are:    logtoconsole =    assemblyMyApph = C:\Program Files\My Appli ...Show All

  • Smart Device Development ComboBox only showing two items

    The ComboBox control only shows two items when expanded. Is there anyway to set it to show more Under Visual Studio 2005: in the dialog resource editor click on the down-arrow button on the combobox (which one would open the list). A resizeable box will appear, this box represents the list area of the combobox, and now you can resize it. ...Show All

  • Visual Studio 2008 (Pre-release) Unable to install Visual Studio Extension "Orcas" to MS.NET Framework 3.0 July CTP

    Hi, I am trying to install the July CTP and here are the steps i followed... - Microsoft .NET Framework 3.0 July CTP - Microsft Windows SDK July CTP - Visual Studio Extension Windows Workflow RC4 - Visual Studio Extension "Orcas" and i am getting an error message saying the Microsoft .NET Framework 3.0 runtime and components are missing when i tried to install the Visual Studio Extension "Orcas". Anyone has met with this problem >> Reborne. There is no July CTP of the Visual Studio Extensions. You will need to install the June CTP version of the is extension, but you need to use a particular command line. Check this post to understand exactl ...Show All

  • Visual Studio Event for TextSelection in code editor

    Hello, I faced with a problem to determine when user changed text selection in code editor. My functionality should add SmartTag with a button to selected text. But I found the following post which reported that there is no such event! Anyway, I think that there is a solution to that! Any suggestions Please help. Actually, SelectionEvents should not cause an event to fire when text selection has changed. The SelectionEvents event is only for selection within a hierarchy (solution explorer, macro explorer, server explorer, etc.). Unfortunately, we do not have any events for text selection changing within the automation model. There is one at the VS SDK level that you can use, if you wish to go ...Show All

  • SQL Server Optimizing Query to Run

    I'm trying to get a query to run which looks at completed orders that have not had another paid order in 180 days. The database I'm running it against is very large so I can't get it to complete. Where's what I've got: select Date =cast(cl1.cl_rundate as datetime(102)),count(cl1.cl_recno) as 'Completed Initials', cl1.cl_status as Status from dbo.vw_Completedorders cl1 where cl1.lob_lineofbusiness = 'aaa' and cl1.cl_rundate > '20060801' and not exists ( select cl2.cl_company from dbo.vw_Paidorders cl2 where cl2.lob_lineofbusiness = 'aa'and cl2.cl_company = cl1.cl_order and cl2.cl_rundate > '20060101' and datediff(day,cl2.cl_rundate,cl1.cl_rundate) < 180) group by cl1.cl_status, cl1.cl_rundate ...Show All

  • Visual C++ Process crash while accessing the member function of the class through an object variable.

    Hi, I work on C++ in Visual environment. OS is windows 2000 server. I have been facing a process crash when an object variable declared for a class is accessing the member function of that class. for ex : class A { ------- public: int funcA() {} } int main() { A a; a.funcA() --> this is the place of the crash } Please let me know your inputs on how accessing the member function of class by the object of that class can lead to the process crash. Any kind of inputs would be valuable to me. Regards, Srikanth. P.S:Please contact me at srikanth428@gmail.com Hi. Thanks a lot for those 4 pointers which could lead to process crash...2,3 seem to ...Show All

  • Windows Forms .NET platform

    Hi everybody, what should i do to make the .exe a GUI that i have designed work on a pc where the .net platform is not installed thanks in advance for ur help danych wrote: i am new to this stuff and my internet connection is really slow thats y i am asking for the link instead of looking for it One can go to Microsoft (Windows) Update (IE Tools->Windows Update) and select to do a custom install. The .Net packages and updates are optional installs and have to be selected by the user. Once selected it will be downloaded and installed. ...Show All

  • .NET Development Exporting to excell and access

    Hi, I would like to export some information I am storing in some lists to an excell and access database.  I have included Microsoft.Oddice.Interop.Excell and .Access in my references and put the proper using statements, but to tell you the truth I have no idea how to use them.  Can anyone point me to where there is documentation on how to do this and an example would be very very helpful for me to learn a lot faster.  Also is it necessary to do this in COM   I was hoping not but if so then is there a place I could go to learn more about COM in c# Any help here would be great thanks. Matt That is exactly what I am looking for thanks. I have a few more questions though. I noticed that ...Show All

  • Visual Studio Express Editions Any other Controls like DataGrid?

    Are there any other Controls like DataGrid I know that textBoxes and lables,list boxes etc can be binded to show a value from the database,But are there any seperate Controls like DataGrid Alright ,let me clarify what I meant.. At first I didnt know that there existed two controls ,namely DataGrid and DataGridView,I thought both of them were the same. What I really meant was  'Are there any other Controls like DataGirdView/DataGrid ' which can be used to populate the data from a DataSet. The reason why I am asking this is cause when I populate data to a DataGridview/DataGrid  from a DataSet ,I am  getting junk values if two  consecutive   row values are more or less the same. Eg. ...Show All

  • SQL Server An unknown error occurred in the WMI provider. Error Code 8000000A

    Hi, I just installed SQL Server 2005 on Windows Vista. I am getting an error "An unknown error occurred in the WMI provider. Error Code 8000000A" when connecting to a web server. The reporting services is running. Is there any other installation that is missing. Please help. Reporting Services is not supported on Windows Vista until SP2 of SQL Server 2005 is available. It is due out early next year. If you are an SP2 preview customer, you can try it before then. You can find out about this program at: http://www.microsoft.com/sql/ctp.mspx ...Show All

  • Windows Forms Accessing data in code

    Hi   I have opened a data connection to an access db in my vb.net windows form app. I need to do the following but am not sure how to do it in code;   1. Open one of the tables 2. Read column values from first record. 3. Insert the record into a second table in the same db. 4. Delete record from first table. 5. Go to step 1 if any records are left in first table.   Would appreciate if someone can give any pointers on how to achieve the above in code.   Thanks   Regards   Yahya ...Show All

  • Visual Studio Team System Error TFS30170

    Has anyone encountered this error I've just installed TFS and when I try and create a project from Team Explorer, I'm presented with this error after a few seconds processing. It's complaining about a file in the user's local temp directory. I'm using Visual Studio 2005 SP1 Beta. Update: My scenario: The problem occurs on a computer running VS Team Suite that was upgraded from VS Pro. While running VS Pro, Team Explorer was installed and connected to Codeplex. The recent VS SP1 Beta was installed. TFS was installed on a new computer without SP1 Beta (production-capable computer). As it turns out, I had no problem creating the first project from another computer. The other computer (which happens to be the TFS Server) had T ...Show All

  • Visual Studio Express Editions concerning media player

    renee where do I post pause button code wow that sounds complicated.....but first....this is my pause button........ then I thought I would like a back button......dont know if it should keep repeating last song or not, at the moment it just rewinds the current track to start......mmmm what do ya think pause button Private Sub btpause_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btpause.Click If WMP.playState = WMPPlayState.wmppsPlaying Then WMP.Ctlcontrols.pause() tmr.Stop() ProgressBar.Value = ProgressBar.Value btpause.Text = "paused" btpause.ForeColor = Color.Aqua Else If WMP.playState = WMPPlayState.wmppsPaused Then ...Show All

  • Software Development for Windows Vista Resuming a workflow after an Exception is thrown

    Is there a way to re-enter a workflow if this workflow throws an exception. My understanding is that handling the exception in a “FaultHandler” does not prevent the workflow from being terminated. Can we persist the workflow in the fault handler so that we can restart it a few minutes later. My scenario is: The workflow tries to lookup a user attribute from a directory. The directory is temporarily down, therefore the workflow throws an exception. Instead of aborting this workflow on the exception I would like to retry it a few minutes later. How would you implement that Thank you Bahram Barham - You can have your WF somehing like - WF While Delay Sequence with Faul ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XNA Game Installer

    Has anyone made a installer which installs XNA games and if needed, installs the XNA framework I actually have started one my self but if there is one out there I will use it. Glenn Wilson wrote: To create a package for XNA you will have to use a third party installer system like install shield or Wise Or use WIX ...Show All

©2008 Software Development Network