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

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

odklizec

Member List

Pharaoh Atem
elenaar-ms
Mike Kear
bharath k
MightyMondie
THughes
Apall
omarsaid
Ted Paulakis
Vasu G
Merlinv
AdrianGodong
Bill CC
djdekker
franzu
James Martin-Young
Nedster657
foxjazz2
Bob DeY
Gary Cawley
Only Title

odklizec's Q&A profile

  • Visual Studio How do I stop the debugger from showing code that I haven’t written?

    My issue is that I don’t want the debugger to show me code provided in the standard library i.e. the <string> class or the <stack> class ect... It’s so easy to get lost while stepping through the program. I know that I could use the jump over but I'd rather the code never showed up in the first place. Any ideas For managed-debugging, you're in luck. VS2005 has a feature called "Just-My-Code". The fx, mscorlib, stuff you don't have pdbs for is all considered "not my code" / "non-user code". You can also mark stuff as non-user code by placing a custom attribute ...Show All

  • Visual Studio 2008 (Pre-release) FlowDocument rendering questions

    If I want to render a FlowDocument to an irregular area what are the best approaches I would like to be able to render a flow document to a series of rectangles that are not arranged in Y linear order. Basically, allow free-form page layout with content flowing from one place on the page to the next. Can this be done with any existing control While FlowDocument supports columns and floaters and such to do simple page layout, is that all there is in this version Is there a way to at least have different page orientations within the same document For example if I have a large table and want to use landscape in the middle of a document that ...Show All

  • Visual FoxPro MSCharts.ocx

    I downloaded from http://www.ml-consult.demon.co.uk/simplechart.zip  the class charts.vcx. This class is based on Microsoft's MSChart ActiveX control  (MSChrt20.Ocx) if you MODIFY CLASS simplechart of <charts.vcx> and Right click on it you will see MSCharts properties option. I want to open that Dialog (MSCharts Properties) in Run-time from an application. I wonder if that is possible and how can I do it I will really appreciate any help on this. I am confused.  Why don't you just write to the properties you want to change thru programming For example: I have ...Show All

  • Visual Studio 2008 (Pre-release) Editable Grid control and Calendar Control

    Hi, This is a requirement for us regarding creation of Editable grid control and calendar control in WPF. It been said from one of the thread regarding DatePicker.. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=297985&SiteID=1 , I feel my requirement needs a new thread. I have been working on various 'supported' controls and their databinding in WPF. Now, Iam using Feb CTP. I need a startup/any sample (if possible) of how can I create both of these controls. Thanks in advance..... We have a simple sample of Editing in ListView here http://blogs.msdn.com/atc_avalon_team/archive/2006/ ...Show All

  • Windows Forms How to search treeNode object in TreeView?

    Hi there, I have an issue with TreeView Form controler, I would like to know if there is a way (and i'm sure there is) to search and "get" a trrenode from the treeView by the node name - string. My need is to add changes in existing treeView nodes that already exists and i don' know the index of each node. I write in C# and have few knowledge in .NET forms. TIA //iterate thorugh the TreeView Nodes for (int i = 0; i < this.treeView1.Nodes.Count; i++) { // Get the Node Name -> this.treeView1.Nodes .Name } ...Show All

  • Visual Studio xml files as data sources

    We are using an Object-relational tool called N-Hibernate with the hope of having our developers program against objects and not SQL. Sounds like a good thing to do but we are having a problem with how to handle reporting. Reporting services will handle object input but only simple types and we have many subclasses within subclasses so this will not work. The fallback is to serialize the objects   and their associated instance data and feed that XML   into RS , however the XML handling in RS seems a little weak unless we are missing the obvious. If for example one has an XML file that looks like : < xml version = " 1.0 " e ...Show All

  • SQL Server Can not connect to SQL Server

    I installed SQL Server 2005 (server and client components) on Windows Server 2003 with SP1. I can connect to this sql server from any other machine. However, I can not connect from this machine to sql servers on other machines. I have tried named pipe and TCP/IP. Neither of them works. The error message is can not establish connection. Any suggestion Thanks, Hello Emanuel, thanks for your reply, and I checked sql server is not started on this server, and if I am trying to start it, i get this error message. "ERROR -2 SYSTEM CANNOT FIND THE FILE SPECIFIED" But as I told ...Show All

  • .NET Development can the beta release of vs express be used with final release of .net framework?

    can the beta release of vs express be used with final release of .net framework please answer the express release is not for free download and i live in nepal so there is no chance of getting hands on VS 2005 for about a year or more! ...Show All

  • Visual C# Can't run an application from a service.

    I don't know if i do something wrong or what. But i can't run an application from a service, tried to create a new process and then run it from there and that didn't work. If anyone knows what the problem seems to be, please contact me and tell me what i should do. Any help would be appreciated. //Mario Would you mind sharing the code that you use to attempt to run the application And possibly any error messages that occur Bruce Johnson [C# MVP] http://www.objectsharp.com/blogs/bruce ...Show All

  • SQL Server Sharing datasources

    I have 2 datasources in the home folder. But when I import a new report in a subfolder it doesn't find the datasource. How can I reference a datasource in other folder The data source in the report designer is always located in the same folder as the report (report designer does not support folders). As such, when you publish just your report, the data source settings will reference a data source that is in the same folder as the report.  Obviously this will fail as such a data source doesn't exist. You'll need to go to the report manager or the sql management studio and set the report data source afte ...Show All

  • Visual Basic Databinding to a Checkbox

    I have a simple form with 2 checkboxes which are Databound to an object, the properties of which are of type boolean. The problem I have is :- I am using the CheckChanged event. When I check the Box, the value of the UI control is correctly changed, but the value in the object does not reflect the change i.e. the Object seems to lag behind the form. If I subsequently click on another control, and then check the values of the control and the object, they are now in sync. Anyone got any suggestions Cheers, Paul Could you explain how the checkbox is bound to the object In a databound or propertybound sce ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. directx & gdi+ CAD program

    I was hoping to speed up my GDI+ line drawing program by using Direct3d 9 somehow in C#.  It uses double buffering, first drawing the existing bitmap (lines already drawn) on canvas, then drawing the active line or rectangle on the buffer, then blitting the whole canvas to the screen.  The problem is that it takes up like 100% CPU on 3.0 GHz when drawing a shape.  I then tried to use DirectX 9.  I made a texture based on the existing bitmap and then drew the texture.  I used device.getbackbuffer() and surface.getgraphics() so that I could use GDI+ to draw lines, but it also killed ...Show All

  • Visual Studio Express Editions Multi media programming in vb.net

    hi there, so can anyone help me in multimedia programming in vb.net plz do reply me thanks can you give us more info on what that app does so that some one can help you in the forum. Thank you, Bhanu. ...Show All

  • Visual C++ spawning a 3rd party application from my application

    Hi Ok - I know I can use various methods to start a 3rd party app such as system (yes I know it blocks), the spawn family, CreateProcess, winExec and ShellExecute. What I need to do is have a 3rd party application start either where I want it to on the screen and of a particular size or maximized in a window that I have created. I also know that you can specify dwx,dwy,dwxsize,dwysize in the STARTUPINFO struct passed to CreateProcess. I can see the app starting in taskmgr but if I try to size the window it doesnt appear ! Is it because the applications main window hasnt been defined as overlapped I may not have the option of requesting ...Show All

  • Visual C# ASP usercontrol with C#

    I have an ASP webpage with a usercontrol. In the usercontrol is a number (int) that I would like to send to a nother class outside the usercontrol. Well just wondering how in *beeb* dos one do that. Some code would be helpfull Well hoping for all the help in da world :D P.S. using visual studios 2005 You can use a delegate. A delegate is like an event, except that you can define t he function signature delegate void MyFunc(int i); public MyFunc Callback = null; Then in the code that finds the int if (Callback != null) Callback(myInt); Then you hook this up like any other delegate in your other class void myDelegat ...Show All

©2008 Software Development Network