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

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

FredMunro

Member List

mracuraintegra
sathyank
Kraichgau
Itzik Paz
BRS0903
MAyotte
Kinlan
jk67
JStemper2
Chuck S.
Chips_in
Juan Dent
wakawaka54
koldFUSiON
kawano1h
hbilan
Vinci
tattoo
Dany V
tcarff
Only Title

FredMunro's Q&A profile

  • Visual Studio Express Editions install cl compiler

    Hi, i dowloaded and installed vc++ 2005 express edition. Now I need to install only the cl compiler on client machines. Please let me know what files should i copy and what env. variables need to be set on that machines. Thank you The C compiler is not a redistributable. You should install VC++ 2005 Express Edition on every machine where you want to run the compiler. Why do you need the C compiler by itself - Dennis ...Show All

  • Smart Device Development Serial Comm in VB2005

    Hello, I have to do a serial communication with a pocket PC and a weather station. I don’t know how to use the serial comm in the Visual Basic compact framework. I know how to use it for PC but not for Pocket. I will appreciate any help,thanks. ...Show All

  • SQL Server Group age by a parameter and find out the value corresponding to that.

    Hi guys... My goal is to change the given stored procedure so that I can find out the different age gorup according to users parameter and find out sumof these values for that group: s.TVmins, s.Notional$, COUNT(*) AS Qty, SUM(s.TVmins) AS TVMinsAmt, SUM(s.Notional$) AS NotionalAmt For that I am planning to put another parameter @count for the group interval and I need to group accordingly. So my answer should look like: if the user give the @count value as 10: the result should: age group TVMins Notional 1-9 1560 125632( the sum of that particluar group) 10-19 -- -- --- 91-100 -- --- I have a field DOB( Date of birth) , I have to extract age from that field first and then g ...Show All

  • Visual Studio Tools for Office Deployment seems to be broken in VSTO... IEcache is never used while in offline mode.

    Hello, The VSTO dll is sitting on a secured site (https). The publication site and path is inserted into ClickOnce, and the VSTO solution is published. While publishing, the document (xls) is stamped with the following information: -ApplicationManifestName: blah.dll -ApplicationManifestVersion: latest.version.number -DeploymentManifestName: full.web.path/file.application -AssemblyName: the name of the .dll file without extension -AssemblyPath: relative path to the newest .dll (latest.version.directory/file.dll) -AssemblyVersion: some other version number ... ok. Here's how I understand this works: -user opens the xls file -path from the dep. manifest name is combined with the assembly path and fetched via I ...Show All

  • Visual Studio 2008 (Pre-release) How to assign database/source of ListView programmatically in WPF?

    I tried some sample coding from the net. It uses the XMLDataProvider <XmlDataProvider x:Key="MyData" XPath="/Info"> <x:XData> <Info xmlns=""> <Song Name="Love at first sight" Time="4:04" Artist="kylie" Level="3" Disk="Disk-1" /> <Song Name="At Night" Time="4:31" Artist="Shake Down" Level="4" Disk="Disk-1" /> <Song Name="Believe" Time="3:54" Artist="Cher" Level="5" Disk="Disk-2" /> <Song Name="Don't cal ...Show All

  • Visual Studio Express Editions VB 2005 applications to work on Vista?

    Hello, will apps made with VB 2005 run on Vista And, will the VB 2005 Compiler (or whatever you call it) work on Vista Thanks yes it will :-) http://msdn.microsoft.com/vstudio/express/support/readme/ I believe the .NET 3.0 framework will be used to run your .NET 2.0 application, since Vista will ship with .NET 3.0 ...Show All

  • SQL Server Keep package alive forever

    Hi there, Does anyone know how i can keep an ssis package used for real time reporting alive no matter the amount of errors it gets So for instance the server im streaming to is shutdown for maintenance, and the connection dies, its needs to just keep re-trying. In other words the maximum error count is infinite. i dont just want to set max err count high, i want it out of the picture all together. Thanks replication should be able to catch up with that change. anyway. just stay for more suggestions. how about scheduling the package to run regularly using a Sql jobs or windows task scheduler ...Show All

  • Visual Basic problem with listbox and do while

    I am attempting to do a do while to remove a specific selected item from a listbox using a do while loop,so far I have tried altering the code and have ended up with this which does not work either,I have concluded that I do not know what I am doing Dim intSelectedIndex As Integer intSelectedIndex = Me .lstLeft.SelectedIndex Do While intSelectedIndex >= 0 intSelectedIndex = Me .lstLeft.SelectedIndex Me .lstLeft.Items.RemoveAt(intSelectedIndex) Loop the problem is that if I tell it to intSelectedIndex = Me .lstLeft.SelectedIndex -1 it removes items all right except that it removes all the items up to the selected item and not the item it was supposed to thanks ...Show All

  • .NET Development Convert string to int

    Is there anyway to convert a String to Int say if I have String width ="640"; I want it to assign to int dimension=width I don't want some conversion like String char="A" to integer which become 10. Just a straight conversion Is it possible Int.Parse is your friend, other types have similar parse methods for getting them out of strings. ...Show All

  • Visual Studio Passing parameters to Crystal not working. Help.

    Hi All I am simply trying to pass the company name string to my crystal reports. It looks really simple but I must be missing something because it does not work on any report I have tried it on. Below is the code I have tried. The commented out parts are trying to get it to work various ways I have seen on the forum. None of them work. The parameter seems to be setup corrently because if I try to use "CompanyBlah" instead of "CompanyName" I get a runtime error. I don't get any errors with the code below but the parameter is not passed as the box asking me to provide input pops up. Any and all help is greatly appreciated. Private Function btnDriverStatements_Print() DriverStatementsReport = New Dr ...Show All

  • Visual J# Class Libraries

    I created a class library in J#, but upon examining the dll, there are no exports. Is it possible to create exports for the functionality i wrote so that they could be implemented in another language Please give us more information. Could you please show us the J# code and tell us what programming language (and possibly framework) you want to use it from. ...Show All

  • Windows Forms C# .NET 2005 - How do I Load data from a database into comboboxes inside a datagrid?

    Hello everyone, I need to load the data from tables tabTipoSemente and tabSementes directly from the database, instead of doing it in code, as shown below: public frmBA() { //HOW CAN I LOAD THE DATA FROM THE DATABASE INSTEAD OF DOING IT IN CODE tipoDT = new DataTable(" tabTipoSemente "); tipoDT.Columns.Add("CodTipo", typeof(int)); tipoDT.Columns.Add("Tipo", typeof(string)); tipoDT.Rows.Add(new object[] { 0, "Nocivas Probidas" }); tipoDT.Rows.Add(new object[] { 1, "Nocivas Toleradas" }); tipoDT.Rows.Add(new object[] { 2, "Sementes Silvestres" }); . . ...Show All

  • Visual C++ Vector Based Game

    I was looking to write a vector based game. Mainly its to learn not to entertain. i want to code it in c++ and was wondering if someone could point me to a few resources; i have had some trouble finding any code examples. Thanks for the post, but i looked through the links but was not able to find any specfic topics dealing with rasterizing vector graphics for games. was i looking at the wrong sections... thanks again though. ...Show All

  • Visual C++ VS 2003 VC++ Debugger Problem

    Hi Every time i go to debug my project, it tells me "These project configuration(s) are out of date." and "Would you like to build them" It will do this for both the configurations I have, then if i select yes, to build, it compiles two files (always the same files) links and runs. I have not modified the two files in weeks I have looked through the files and cant see anything out of the ordinary. Does anyone know how to stop this it is driving me crazy! thanks Will It happens sometimes if one of your headers has wrong timestamp. Also possible if your source is on a Linux box and you access it through shared drive. What source control do you use ...Show All

  • Visual Studio Team System How to SuppressMessage with scope = module?

    I have an assembly that has lots of little classes that are going to be serialized over SOAP, some of whom have properties that return arrays. Because of this, I want to ignore the rule PropertiesShouldNotReturnArrays because the classes in question are simple DTOs (data transfer objects) used as parameters of web service methods, and don't have any behavior themselves, so I can't apply the rule of replacing the property with a method. These classes are segregated into a separate assembly. Rather than adding fifty separate exclusions in my source code, I want to have a single module-level exclusion rule in my AssemblyInfo.cs file. I tried the following, but it doesn't work. [module: SuppressMessage ( "Microsoft.Performance" , ...Show All

©2008 Software Development Network