Software Development Network Logo
  • Architecture
  • Visual FoxPro
  • SQL Server
  • Visual Basic
  • .NET Development
  • Microsoft ISV
  • Visual C++
  • Windows Forms
  • Windows Vista
  • VS Team System
  • Windows Live
  • Game Technologies
  • VS Express Editions
  • Visual C#
  • Visual Studio

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

CherylForrest

Member List

hberenguel
rodan_be
qrli
GijsVos
SarahH
Dracoman
Youri Pikulin
Amir Steta
Manitra
ariu
vaibhavsaxena17
ChrisEck
John Penberthy
Ken Sykora
kehoe
jitendra badkas
markeboyle
SabariRajan
St1ck
abhi_10dulkr
Only Title

CherylForrest's Q&A profile

  • Visual C++ Error missing runtime function in MSVCR80D.dll

    Just installed VS 2005 Pro.  Rebuilt a project that had been working with the beta and I'm getting a runtime error when trying to run an executable.  It says: The procedure entry point _encode_pointer could not be located in the dynamic link library MSVCR80D.dll. I searched the forums and didn't find anything about this problem.  Hard to believe I'm the first to encounter it though.  Anyone else have this problem   Anyone know if this is going to be fixed in the service pack that's already promised I had Visual Studio .NET and Visual Studio 2005 both loaded and things worked fine. ...Show All

  • Visual C++ Controlling settings for all the vc8 projects from a common place.

    Hi, Issue: Controlling settings for all the vc8 projects from a common place.    I have heard about property sheet for vc. Can anyone explore about property sheet for VC In VS2005 MS has provided MSBuild but it is not supporting VC projects. Thanks in advance. Regards, Madhur To inherit from a property sheet, switch to the Property Manager window and select all projects / configurations you want to have the same properties, right-click, and choose to inherit from a property sheet. In answer to your second question, you can automate the upgrade process using vcbuild.exe. Type "vcbuild / " at the command-line for mo ...Show All

  • Visual Studio How to insert BoxObject from WindowForm into a section of CrystalReport ???

    Hello Krishna, - Can I insert a BoxObject from windowForm in C# into CrystalReport - Please take a look my code below: private void CreatCircle() { CrystalDecisions.CrystalReports.Engine. BoxObject boxObject= (CrystalDecisions.CrystalReports.Engine. BoxObject )_crystalReportDraw.Section3.ReportObjects[ "BoxObjectCircle" ]; //CrystalDecisions.CrystalReports.Engine.ObjectFormat objectFormat = (CrystalDecisions.CrystalReports.Engine.ObjectFormat)_crystalReportDraw.Section3 ; boxObject.Top += 400; boxObject.Left += 100; boxObject.Right += 100; boxObject.Bottom += 400; boxObject.LineStyle = CrystalDecisions.Shared. LineStyle .Si ...Show All

  • Visual Studio 2008 (Pre-release) Pixel width "Thickness" for shapes

    Is it possible to draw shapes with a single pixel width I am working on an engineering program in WPF and need to scale drawings. The current thickness of 1 is more than one pixel (presumably anti-aliased) and is very "fuzzy" - that's an engineering term! The same drawing drawn with GDI looks much crisper - another engineering term. Ideally there would be a special thickness, say 0, which would always draw at one pixel width no matter what scale transform was applied. excerpt: As I was saying earlier, to accommodate the high-resolution displays, we need to get developers to stop specifyin ...Show All

  • Visual FoxPro like command

    hi again,i have the below simple line of sql code local temp temp=thisform.TextBox1.Value SELECT costomer from customertable; WHERE costomer_description LIKE temp the command works perfectly and i get the results in a new vfp window. is there a way to change the command in such a way so that i get the recno of the result.the reason is because there is already a grid on the form and i guess that if i had the recno from the select command i could focus that particular record.seek command works on indexes so that cant help me.after all i can use the % with my text in like which saves me a lot of trouble. Just on ...Show All

  • Windows Forms How to hide a tab?

    I would like to show or hide tabs in a tabcontrol but the .visible property (which shows up in a TabPage objects intellisense) doesn't work. I can <i>enable</i> or <i>disable</i> a tab, but this actually disables the contents of the tab, not the "tab button area" itself.     Public Sub EnableTab(ByVal ctrl As TabControl, ByVal Param ...Show All

  • Visual Studio 2008 (Pre-release) Multiple Service (class) Hosts - How to configure?

    I would really appreciate if someone can educate/enlight me on following issues: 1. We have a business component with more than 20 different interfaces and corresponding classes which implements these interfaces. We would like to expose all of these classes in an NT service with tcp/ip for LAN clients and may be as an http endpoint in the future for intranet clients. How do I configure my service to expose these interfaces Do I have to create 20 ServiceHost<x> objects 2. Is there a ASP like Session(key) feature in Indigo We have a requirement where we would like to store an unmanaged COM object reference on the service side that need ...Show All

  • Visual Studio 2008 (Pre-release) How to get the value of the color in some position of a LinearGradientBrush?

    Hi everybody,I have a problem about LinearGradientBrush. Here's the code: <Canvas Name="MainCanvas" Height="20" Width="200" Margin="0,0,0,0"> <Rectangle Name="rectLegend" Width="200" Height="10"><Rectangle.Fill> <LinearGradientBrush StartPoint="0,0" EndPoint="1,0"> <LinearGradientBrush.GradientStops> <GradientStop Color="white" Offset="0" /> <GradientStop Color="red" Offset="1" /> </LinearGradientBrush.GradientS ...Show All

  • .NET Development XPATH CONTAINS

    I filter/search an xml-file, and this works: XmlDataSource1.XPath = "NewDataSet/tbl_arenden_kw[contains(@rubrik_kw,'" + TextBox1.Text + "')]" I try to filter/search in all nodes, but it does not work (no records): XmlDataSource1.XPath = "NewDataSet/tbl_arenden_kw/@*[contains(.,'" + TextBox1.Text + "')]" Do you have any ideas Thanks in advance Clas Yes, it works, but I must use @ XmlDataSource1.XPath = "//tbl_arenden_kw[contains(@arendetext, '" + TextBox1.Text + "') or contains(@rubrik_egen, '" + TextBox1.Text + "')]" Thanks, The XML Man and Joost Ploegmaster for your help ! ...Show All

  • Visual Basic Calling a sub while reading an array?

    I'm not the most sophisticated programmer, so you'll have to forgive me as I may be approaching this totally incorrectly. One of the programs I'm working on now deals with Morse Code and different methods to output data to the user in Morse Code...example, PC beeps or with wav files. The concept is this: User selects output method, user selects demonstration and clicks play. The demonstration directly corresponds to a specific file. Read in the file when the user clicks play and then sound the file one character at a time (including spaces) via the output method chosen by the user. I've got almost everything working but I'm ha ...Show All

  • Windows Forms How to replace carraige returns in DataGridView

    I am trying to replace carriage returns/line feeds with spaces in a DataGridView column.  I am importing this data from a parse engine that I am using in the application.  In the DataGridView, they Cr/Lf comes across as a square (hard code).  My question is what code do I need to replace this with and where do I place this code in my application  So far, I have done the following with no results: 1) try to replace the characters in the DataGridView by calling: [what class/object to use..].text = text.Replace("\r\n", "").Replace('\r',' ').Replace('\n', ' ') 2) Instead of using the "\n" and "\r" I used Chr( ...Show All

  • Visual C++ how to load pass and get info from (System::Object^ sender, System::EventArgs^ e) C++/CLI

    Hi! all I'm back again!! The internet is full of information but there are some things when you type them in you get 5 million pages of irrelevant information What I'm after is how do load these up with info and then how do you unpack them on the other end....... (System::Object^ sender, System::EventArgs^ e) Thanks! P.S. Do you know were I can get a rainman (like in the 1988 movie) for C++/CLI I'm playing with VS2005 Pro C++/CLI managed Hi, normally those are the arguments of event handlers. In the first argument goes the object that raised the event and in the second go ...Show All

  • .NET Development i need help bad!!!!!!!!!

    my c drive keeps saying its corrupted and it said i had spyware i removed what was noticed but my c drive still says the same thing and it told me to do a chkdsk utility and so i did but it never stoped i dont know what to do i was thinking about reinstalling xp pro to see if it would help would it i dont know so pleas someone help HI, This is a Programming Related forum. On windows specific questions please redirect your post to Microsoft Newsgroups . cheers, Paul June A. Domag ...Show All

  • Visual Studio Team System connect from sharepoint to query created in Vs2005

    hello, I created a custom query in vs2005 and want to connect to this query and show the result as a excel-table in the sharepoint portal. is it possible. In the vs I got the following url for the query: vstfs:///WorkItemTracking/Query/b900abbd-ffe9-4a34-a398-53e76e0a1a3d what does it mean how can I connect to this query kind regards --remo On a machine where you have both Excel and the Team Foundation client installed, you can select New List on the Team toolbar. That will take you through connecting to the server, selecting your project, and then selecting your stored query. You'll be ...Show All

  • Visual Basic connecting to access database

    I need some HELP!  I am trying to connect to an access database.  The only thing in the mdb file is the table.  I am using vb 2005 express and I have tried everything and cannot get anything except an error " format of the initialization string does not conform to specification starting at index 0 ".  What the 'ell does that mean I need help connecting to the mdb file in vb 2005.  Any help would be greatly appreciated. Your connection string should look something like this: "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=\somepath\mydb.mdb;User Id=admin;Password=;" ...Show All

©2008 Software Development Network