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

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

jminond

Member List

Badhris
ColinTo
gokhanmutlu
Luis Esteban Valencia MCP Web
montechristo
Ian Arhip
horaciojk
lagu2653
Jane2006
Computer Guy69146
Amit Paka - MSFT
mcmcom
Alexander N Mikhaylyukov
zot166249
rahsoftware
Gerson Rolim
WeiY
LarryETL
IrisFresco
KHodam
Only Title

jminond's Q&A profile

  • Visual Studio Team System schedulingfinishdate error + how to add calendar to date parameter?

    hi everyone i am trying to add date parameters for a start/end day (like most reports.. but how do those have calenders and mine dont ) anyways thats another question.. when i tryed to upload my report i got this error.. An error has occurred during report processing. (rsProcessingAborted) Query execution failed for data set 'MicrosoftVSTSSchedulingFinishDateDate'. (rsErrorExecutingCommand) For more information about this error navigate to the report server on the local server machine, or enable remote errors how do i fix this and how can i get the little calendar to show up for my date parameter Thanks Hi Kardi, A few questions: Is your parameter (from Layout tab, Menu item Report -> Repor ...Show All

  • .NET Development add parameters to oledb

    I'm trying to do something very simple... not for me :) I just want to select a MarketCode from a 1st combobox and fill a 2nd combobox with names I tried this Private Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load daMarketCode.Fill(DsMarketCode1) End Sub Private Sub ComboBox1_SelectedIndexChanged( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cboMarketCode.SelectedIndexChanged Dim cmdSelect As System.Data.OleDb.OleDbCommand cmdSelect = Me .daAgentName.SelectCommand cmdSelect.Parameters.Add( "Market" , OleDb.OleDbType.WChar) cmdSelect.Parameters(0).Value = Me .cboMarketCode.Text Me .cnOp ...Show All

  • Visual Studio Express Editions StreamReader & StreamWriter-Error!

    I've searched a round a little, and am having trouble with StreamReader in VB. When I debug the application, I go to open a test file. When I click Open from the dialog, the debugging process pauses and VB shows the form's code. A line: SR.ReadLine.ToString(textbox1) is highlighted. A box appears: I don't understand what it means, I am loading Hello World into a textbox from a file. Sorry if this question seems "stupid," just got this a week ago. Thanks in advance! Kevin [edit] can't see the image goto http://www.freewebs.com/hardwarecompugeek/error.jpg Public Class Form1 Private Sub Button1_Click( ByVal sender As System.Object, _ ByVal e As System.EventArgs) Handles B ...Show All

  • Visual FoxPro .

    oSheet("10:" + ltrim(str(m.mrow)) ).NumberFormatLocal = "#,##0.00_)" or: oSheet( textmerge("10:<<m.mrow>>") ).NumberFormatLocal = "#,##0.00_)" or one of other N ways... ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. How to load a model in a class not derived from Game

    I have this class that holds some objects. The content manager and service manager are initialized. But it will fail when trying to load the model. Error loading "content\models\p1_rocket". GraphicsDevice component not found. The graphics device is initialized and other stuff is loaded before (but they are not Models using the content pipeline). Can someone tell me what I am missing class Player : engine.RenderableObject { flight.engine.MGA_Scene myScene = new MGA_Scene(); Model myModel; ContentManager myManager; public Player() { GameServiceContainer g = new GameServiceContainer(); myManager = new ContentManager(g); } public void createPlayer() { myModel = myManager.Load<Mo ...Show All

  • Smart Device Development drop down loses value

    I have ported an app from vb.net03 to vb.net 05 for windows mobile 5. 1 issue that I haven't figured out is when you choose a value in a drop down the Text stays highlighted. The problem is if you go to the next form after choosing the value, that value is lost. I have tried changing the focus on the page to another control in the selectindexchanged function but the value goes back to null in the drop down control. Anybody else have this problem I am not saving any of the information on the page yet (the controls and the form stay in existence while the user is on the 2nd page), not until the user saves or cancels the actions of the 2nd page which brings the user back to the first page with the informatio ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. XNA Wiki Project

    Me and a few friends have started a XNA Wiki project for the community...please stop by and contribute any expertise you can lend to make this a good source for the community for quick reference to everything from theories, to simple and easy to understand documentation on XNA. We're hard at work this week expanding the XNA section. If you have a XNA tutorial or community website, please be sure to drop a link off on the page too! CodeGeeks XNA Wiki Project I haven't been working too much with the xna game studio, but I believe this would make a great resource if more people joined in! I will try and post articles when I get some more knowledge about the framework. ...Show All

  • Microsoft ISV Community Center Forums How to stop a never ending loop

    Hi, Is there a command to stop a executed function. It happends that I sometimes created loops that countious for ever. I have so far had to quit excel to make it stop. But I guess there some command to stop this process. Anyone that knows this Thanks in advance. \Jonas Thanks for your replay. But it wasn't the problem. I meant if I execute a macro and it's, off course by mistake a never ending loop in that macro how can a stop that macro At the moment I'm using Ctrl+Alt+Delete to end Excel but I'm sure that it has to be a way to just stop the macro. In matlab for instance I think it's Ctrl+c. \Jonas ...Show All

  • SQL Server Pivot Multiple Values

    Is there a way to pivot multiplie values in one 'run'.... In the order of ... PIVOT ( SUM ( DSH_TICKETS ) FOR CPRF_NBR IN ( [1] , [2] , [3] , [4] , [5] ) SUM ( HALL_CAPACITY ) FOR CPRF_NBR IN ( [1] , [2] , [3] , [4] , [5] ) ) PVT I know that there would be a problem with the headers, but that i could solve by using a second dummy for cprf_nbr and increase it with 10 (ex.) Until knwo i did the jobg with a case statement, but it would be much nicer with a PIVOT. I am not 100% sure that this matches, but I wrote a blog about taking a set that looked like: GroupBy PropertyName value1 value2 ------- ------------ ----------- -------------- First Property1 1.00 ...Show All

  • SQL Server sp_spaceused

    Hi everyone, I'd like to retrieve the results for SP_SPACEUSED. I've created a table with 7 columns, something like that: CREATE TABLE [dbo] . [ESPACIOUSADO] ( [DATABASE_NAME] VARCHAR ( 255 ) NULL, [DATABASE_SIZE] VARCHAR ( 120 ) NULL, [UNALLOCATED SPACE] VARCHAR ( 120 ) NULL, [RESERVED] VARCHAR ( 120 ) NULL, [DATA] VARCHAR ( 120 ) NULL, [INDEX_SIZE] VARCHAR ( 120 ) NULL, [UNUSED] VARCHAR ( 120 ) NULL, ) ON [PRIMARY] INSERT INTO ESPACIOUSADO ( [DATABASE_NAME] , [DATABASE_SIZE] , [UNALLOCATED SPACE] , [RESERVED] , [DATA] , [INDEX_SIZE] , [UNUSED] ) EXEC sp_spaceused But it doesn't works ...Show All

  • Internet Explorer Development Making news tabs active by default

    How can I make the new tab the active tab If I right mouse click and say 'Open in new tab", it does but I have to click on the tab to see it. Can I make this happen by default thanks Ralph In Internet Options, there is a section for "Tabs" in General Section. Open this and enable "Always switch to new tabs when they are created". HTH Sharath ...Show All

  • Visual Basic how to parse a resume document

    in my windows application i need to parse a resume and fill the details in some text boxes and listboxes can any one help me how to solve this problem AFAIK, you would probably need to use some MS Word Interop to read word documents. If its an RTF document then you can load this and do all your parsing etc... using the RichTextBox control, however the control will not read Doc files. I thought I would give you some head start on where to start looking from :-) ...Show All

  • Windows Forms detecting changes to data on form

    I have a process that I use to detect changes to data on a form.  Previously my app was a single form, which I have transformed into a wizard style app.  When it was on one form, I trapped changes on the form closing event.  now that it is a wizard style, i want to trap it in the "next" button click event.  the only problem is validation does not seem to be occurring when an edited control has lost the focus, when that focus goes directly to a toolstrip control.  It works fine if i click on another control then click the next button in the toolstrip control, but if i go directly to the next button it doesn't work.  Is this due to the toolstrip behavior  I should add that the data entry controls ar ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Suggestion for the forums

    I was thinking that this forum could serve as a "quck and dirty" content pipleline :). Any chance there will be an "upload your stuff here" forum Thanks for the suggestion. We're investigating the best way to enable sharing code, snippets, projects, etc. If there's enough demand for an additional forum, we can look into that too. :) ...Show All

  • Windows Forms Access to the path 'e:\System Volume Information' is denied.

    whenrever i am trying from root path of drive i am getting following error other wise its working fine Access to the path 'e:\System Volume Information' is denied. how to solve this problem foreach ( FileInfo fInfo in directory.GetFiles("e:\", SearchOption .AllDirectories)) { // do some work } thanks As you've found, GetFiles() is pretty unforgiving because it assumes that you’ve got nearly unrestricted read access to all of the files and directories you are trying to access and doesn’t offer an option to override that. In order to not break down in this manor, you might be better served by writing your own code at a slightly lower level that can handle a single directory failin ...Show All

©2008 Software Development Network