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

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

AlanKohl

Member List

zd84
Ravencraft
Alexander Albornoz
slein
naicul
Malleswar
24sharon
pjdeets2
ricochett
Bret Grinslade
Ryan_H
Flavia Lemes
Pimoz
JIM.H.
satab
scruzer
ElMagico
JulietSVQ
newbiedogg
Jasper22
Only Title

AlanKohl's Q&A profile

  • Visual Studio Refreshing Server report in Win Form control

    I have a Report Viewer control that I am displaying two diffirent reports in depending on a users selection on a seperate screen. My problem is that the user can select to view all records from a query or select a collection of records. Either way the records that are selected are inserted into a table and the report pulls it's data from this table. My problem is that if I choose to have reports for all the records the RV shows up correctly, but if I go back and select only a few records the RV still shows the previous collection of all the records. The RV is in a seperate form and on the first form I change a app variable to the specific report path, generate the data in the table and open the report form. When the report form is opene ...Show All

  • Smart Device Development Command ShellExecute in CF 1.0 or 2.0 vs. Process.Start

    Hello, I'm trying to run a remote program (.exe) from a .NET CompactFramework 1.0 and a .NET CompactFramework 2.0 application - such as the calculator. What is available in CF 1.0 and CF 2.0 to run a process Is Process available in CF 1.0 Is ShellExecute available in CF 1.0 How about CF 2.0 Thanks, Dave In 1.0 - nothing is available. P/Invoke CreateProcess() or ShellExecuteEx() or use OpenNetcf.org's wrapper. In 2.0 – Pretty much complete Process class is available including ShellExecute support. ...Show All

  • Visual Studio 2008 (Pre-release) How to intercept ReceiveTimeout with netMSMQBinding?

    I'm using netMSMQ and would like to know when a ReceiveTimeout has occurred. Do I do this through the EventLogTraceListener ...Show All

  • SQL Server SupScript Price Field

    Does anyone have any ideas on how I can superscript a price field in a RS 2000 Report I need the cents to be superscripted and underlined. I didn't want to use two text fields if possible. Is it possible do do something like this <sup>$</sup>99<u><sup>99</u></sup> hey we got the solution of super script , superscript like if u want to write ab2 where 2 wud b superscript write it ="ab"&CHR(178) mean chr(178) ll return super script version of 2 http://www.alanwood.net/demos/wgl4.html you can find the whole list from this web site regards Umer Khan umer.khan@systemsltd.com ...Show All

  • SQL Server Installing Sql25k client without using CD/DVD?

    Hi everyone, We've found some problems when trying such thing. It seems that is compulsory to do via own CD/DVD. Any comment would be very appreciated. Thanks in advance, enric Yes, be sure to follow the instructions in this KB, and you should be able to install from a network path or from a hard drive. http://support.microsoft.com/kb/916760/en-us ...Show All

  • Visual Studio Express Editions Installing Visual Studio Express Components

    Hiya people, I got a little problem with some downloads. I've installed VBasic and WebDev from a CD, and wanted to try out the rest of the express pack,so I've visited the downloads website and downloaded the approx. 2MB IEsetup files for each part. After running them, the setup installation was to download the actual installation files of J#, C# and C++, but then exited with the comment: Setup has stopped because the item listed above could not be downloaded . Are the packages no longer available or what I'm running WinXP SP2 en. Would be glad for any advice, since I don't have the -ehm- $99 for a support email. Several of these threads describe the same symptom as you are experiencing, one of the suggest ...Show All

  • .NET Development How to catch "Common langauge runtime exceptions" --> "Thrown"

    Hello, I'm programming with c# vs2005 I would like to monitor ALL the exceptions thrown in my application (not only the unhandled ones). This should be done like when debugging from visual studio and marking the : Debug --> Exceptions --> "Common langauge runtime exceptions" --> "Thrown" How can i do so My intention is only to monitor those exceptions. notice, I cannot change the code exists, this is way i want to monitor from outside like the vs2005. Hi, If you just want to monitor the number of exceptions occuring in your application, you can user Performance Monitoring Tool prsent in the administrative tools. Thier you need to select "Add a counte ...Show All

  • Visual Basic Changing ConnectionString at runtime

    In my application, i am not sure where will be the database. So i thought to put the connection string in app.conf file. So that i may read it runtime and create connection. Working good. But what if i have to change the connectionString define in app.conf at runtime It may not be necessary that i must use app.conf, you people can suggest me one better approach so that i may not be dependent on databasestring. It could be created/change at runtime. Hi MSDN covers FileSystemWatcher adequately, but there is a VB article here http://www.codeproject.com/dotnet/folderwatcher.asp that you might find useful for getting started. The fsw can be used to notify your code at runtime of a change to a file, so you can accommodate the change. ...Show All

  • Visual Studio Express Editions Maximize preview...

    HELP... i dont know how to maximized the size of the printpreviewdialog ... Hi. Try this. PrintPreviewDialog1.Width = 800 PrintPreviewDialog1.Height = 600 PrintPreviewDialog1.Show() Best regards. dp ...Show All

  • SQL Server Data mining formation for SQL Server 2005

    Hi, I already have data mining experience with different software, but my company is now migrating to SQL Server 2005 and since it include a data mining module, I would like to learn how to use it properly (Analysis Services, DMX language DMX, …). Is there companies that offers formation in data mining for SQL Server 2005 Thanks! Tony ...Show All

  • SQL Server Toggle Item Functionality Lost in Excel Export

    I have a report with 3 tables (all of which use toggle items), and their visiblity is based on a user-entered parameter. This works perfectly for what I'm trying to accomplish and looks good in the report manager. However, when it is exported to Excel, I lose all of my toggle items and everything in the particular table is displayed. If I remove the visiblity expression and show all 3 tables all the time, the toggle items work as expected in Excel. Any ideas Here is the Hidden expression I am using on the tables: =iif(Parameters!ReportView.Value = "TEST" , false , true ) I have still not been able to find a way around this issue. And the only other opinion I can think of is to creat ...Show All

  • Windows Forms Retrieve Object from ListBox

    I've got a OleDBDataReader object whose values I want to store in a ListBox for user interaction. The values I'm storing in the ListBox are the users first and last name (this is the displayed values). And I'm storing in the ListBox the users Social Security Number. I have done this by way of creating an object: class ListBoxStorage { public object data; public string display_string; public ListBoxStorage(object data_stored, string display_val) { data = data_stored; display_string = display_val; } public ListBoxStorage() { display_string = "Empty String"; } public override string ToString() { //MessageBox.Show("User " + display_string.ToString() + ", has the SSN of: &qu ...Show All

  • Visual Studio 2008 (Pre-release) Windows.FlowDocument Class

    Can I insert custom tags in the FlowDcument which are not interpreted by the Avalon RichTextBox control when the FlowDocument is assigned to its Document property. Something like <FlowDocument> <Paragraph> <Mycustomattribute> The text will be displayed but the Mycustomattribute will be ignored! </Mycustomattribute> </Paragraph> </FlowDocument> Thanks in advance Thanks Prakjakta. I implemented the hyperlinks using the same approach as you suggested and it runs fine. ...Show All

  • Visual Studio 2008 (Pre-release) May CTP Installation problems ...

    Hey guys, I've run the May CTP installer on my machine ( Win XP Pro SP2) with VS 2005 Pro - both US English. The installer succeeds, everything seems to be working ok, however the project templates for LINQ are nowhere to be found in my C# New Project options. If I open the sample solutions off the hard drive, they compile and run file, therefore I assume that there's something wrong with the project templates Anybody have a clue Cheers, Angel For what its worth... I had the same environment except; I installed Visual Studio SP1 - Beta prior to installing the May LINQ CTP. LINQ seemed to work fine with no significant problems. Shawnk ...Show All

  • Visual Studio Crystal reports XI R2 and Visual Studio 2005 issues

    Has anyone got this error after updating (fresh install) to Crystal Reports XI R2 with reports in Visual Studio 2005 I am posting here because I am not sure if it is a Crystal reports XI R2 bug or a Visual Studios 2005 problem. I thought it might be that my programming was wrong so I tried the samples that come with R2. If anything these should work since the people who developed the software wrote the examples. Even the examples gave me these same errors. Custom Tool is CrystalDecisions.VSDesigner.CodeGen.ReportCodeGenerator I have these refernces: CrystalDecisions.CrystalReports.Engine - v2.0.50526 CrystalDecisions.Enterprise.Framework - v1.1.4322 CrystalDecisions.Enterprise.InfoStore - v1.1.4322 CrystalDecisions.ReportSou ...Show All

©2008 Software Development Network