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

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

james_cline_

Member List

Rathin Padia
Jeroen Vos
hashmi
DaveKStl
titote
-Antilles-
ron nash
PolatPinar
PabloWablo
SpaceDog
Ryn
foleyp
MaggieChan
saaniok
JavaBoy
Beuhla
Lorry Craig
nickwilliams
Hamez
code_junkie
Only Title

james_cline_'s Q&A profile

  • Visual Basic Can I set userscale of picbox, like possible in VB6?

    Dear all, it used to be possible in VB6 to define picboxes as carthusian axis crosses with user-defineable min and max for both X and Y direction. With the advantage that you can draw on them just as you would do in math. I am trying: Imports System.Drawing Public Class Form1 Dim g As Graphics Private Sub Form1_Load( ByVal sender As Object , ByVal e As System.EventArgs) Handles Me .Load g = PicBox.CreateGraphics() End Sub Private Sub Button1_Click( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim a(5000) As System.Drawing.Point 'points are paired numbers: a.X and a.Y Dim i As Integer For i = 0 To 5 ...Show All

  • SQL Server Stored procedure issues with reporting services

    Hi all, I have stored procedures that will run fine from query analyzer windows, from other programs, etc. When I try to run the sp from vs 2005 form with in a SSRS project, the sp just hangs. It will not return any records and the app says "Not Responding. This does not happen for all SP's only some of them. Any ideas Hi, Is it possible that the date being passed is (re)formatted by RS in such a way as to return a much larger resultset than expected (i.e., by swapping day and month) We work with multiple languages and regional settings and seen things like this occur when date is passed as a string. You didn't say if you have used profiler to see what is actually being passed to the datab ...Show All

  • .NET Development Namespace prefix " SOAP-ENV" not defined

    I am working on an application that is getting the above error (Namespace prefix " SOAP-ENV" not defined) on an intermittent and non-reproducible basis. The application is trying to obtain data from an external source through web service proxy code generated from WSDL obtained from the service provider. The code may run several (non-specific amount) times successfully and then fail. Or it may fail the first time after a rebuild and then if executed again right after the failure, will work fine. Any ideas what is cousing this Mike Thank you Nathan. This is a US Military application and although it is not classified I will have to check to find out how much information about th ...Show All

  • Audio and Video Development Correct Timer Code?

    I am having trouble getting the timer function to work. Everytime it is called on while in the player, it crashes the player. Is this formatted correctly var cbfnAudio = function() { //Animate Menu Code would be here myTitleTimer.enabled = false; }; var myTitleTimer = application.createTimer("00:00:01",1,cbfnAudio); myTitleTimer.enabled = true; Well, I can post what works for me. It's all done in the script side, not the markup side. Do you have the HD spec There is a fairly complicated formula in the Annexes somewhere that you will need to use in order to get the right values for setVolumes and setMixing. They can range from 0-255. Below is what I am currently using. Use this to initial ...Show All

  • Windows Forms drag the panel

    how can i drag the panel with form by mouse Try something like this: Private mMousePos As Point Private mPanelPos As Point Private mDragging As Boolean Private Sub Panel1_MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Panel1.MouseDown mDragging = True mMousePos = Me.Panel1.PointToScreen(e.Location) mPanelPos = Me.Panel1.Location End Sub Private Sub Panel1_MouseUp(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Panel1.MouseUp mDragging = False End Sub Private Sub Panel1_MouseMove(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Panel1.MouseMove I ...Show All

  • .NET Development !!!!!!!!!!!!!! .NET Runtime version 2.0.50727.42 - Fatal Execution Engine Error (7A05E2B3)

    Hi all I have got a very big problem !! I have a Windows Service Application (Multithreaded) which runs since about 6 month very fine. It is developed in C# VS 2005. Now, I guess after some Windows Updates, the service does not work at all !! After starting it, it stops after about 10 seconds. It does not stop always at the same time, sometimes 10 sec. sometimes 30 sec. In the EventViewer I got messages like: ".NET Runtime version 2.0.50727.42 - Fatal Execution Engine Error (7A05E2B3)" I have the same problem on Windows XP and Windows Server 2003. What is wrong What do I have to do to fix the problem I also already tried to uninstall Security Updates (Framework) and I installed VS SP1. Thanks very very much ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Files on Xbox360

    I'm in the process of writing my master thesis about hybrid shadow casting methods using the Xbox360. I have a few questions I would love to have clearified. - Say I wanted to use a .3DS file to represent my scene and models. Are there a way to get this file to the xbox360 without using the content pipeline since it doesn't support this format. I know this might be a simple problem, but I just can't seam to figure out how to do it. I know that Abi's RocketCommander uses some custom .level files which is just placed and copied directly. Would this work for .3DS files as well - In case it does, how would I access it Normal file IO This whole reason for using the .3DS file format is the fact that it incapsules geometry, cameras, ligh ...Show All

  • .NET Development XslCompiledTransform load large xsl file throw application exception

    Hi, Unhandle application exception (w3wp.exe) being throw when the xsl file contains over 2000 lines. The same xsl file is being used with 1.x's XSLTransform class without problem. Does anyone have similar problem Ray Hi, That is true when I removed 2/3 of code in the xsl, it works just fine. I just wonder why it has no problem in XslTransform class but problem in XslCompiledTransform class. In all my xsl files(around 130KB/file), it contains extensionobject which will be use in the XsltArgumentList class when transform. Thanks ...Show All

  • Visual Studio Team System Another suggestion for treediff

    It would be very useful to display the last modification date of the files in the tree and if comparing server items, display the changeset number. This would allow easier determination of which file has more recent changes. Also, possibly allow merges to occur between two server paths. ...Show All

  • Visual Studio Express Editions Controlling items with a loop.

    I am trying to accomplish something like this. Dim i As Integer = 1 Do GroupBox(i).Visible = True i = i + 1 Loop Until i = X Obviously this isn't working. After much searching I haven't been able to find an answer. It is probably because I am asking the wrong questions. But I need some help. Any assistance is greatly appreciated. Getting closer. I have 40 groupbox's on the form. they are named numerically GroupBox1, GroupBox2, GroupBox3, etc etc. I want to be able to only make X(for this example stay with 5) visible. The code you just provided controls all the GroupBox's. Sorry for the confusion, I am sure all this information would have been helpful in the ...Show All

  • Visual C++ compiling the "selected" project in dev studio 2005 - behavior change

    Hi, We are currently in the process of moving from VC6 to VC8. We have several projects with houndreds of cpp and h files. One of the biggest complaints we get from the developers is the issue of "build selection" button and F7: Our solution is built from several projects, most are static libraries for the main project (the main project having dependencies to these lib projects). When working on the code, developers generally changes a few cpp's without needing to know which one is related to which lib project and in the end they would always compile the main project by pressing F7 or pressing the build - these would automatically build the 'active' project which was always the main project. all relevant libs related cpp's that had changed ...Show All

  • .NET Development Connecting to Access Database

    Does anyone know how to connect to a access database using vb.net I created the database in access and added the Odbcdataadapter and was able to preview the contents of the database. I have a text box with a next button and a new button. Each time I click next i want to see the names that i have in the database appear. When i click new i want to be able to enter a new name in the textbox and it gets written to the database i already have with the names. Any thoughts Thanks!! ok, thats clearer well once you filled your dataset, be sure that the dataset is declared globally so other methods can access it in the class. When the user presses next, simply get the value from the dataset table. You may a ...Show All

  • Windows Forms Host a DateTimePicker in a DataGridView ?

    Hi, I'm trying to host a DateTimePicker in a DataGridView, and it seems that there's a bug somewhere (which I can't find). I took the MS example ( http://msdn2.microsoft.com/en-us/library/7tas5c80.aspx ) and created a new VB application (2005). The only change I made to that code was to add a second column. Now... I run that application and pick a row, and then try and edit the date in place (that is, without a popup). Say the date is "19/09/2006". I click on the cell (it highlights), I click on the "19" (that highlights) and I press some numeric key (like "4"), I then press "tab" to get to the same row, second column, my date stays as (or rather, changes back to) "19th". In my ...Show All

  • Visual Basic Is there any visual basic works with win98

    I was hurt at work I had visual basic .net but I don't know what I did registration key or all the cd's for it thanks You can send an email to km_whitman@msn.com if you have any anwsers!!!!! you need to explain more on the problem you are having What exactly is the problem usually there is no registration key or its built into the application, depending where you obtained it from. (MSDN for example) Visual Basic.NET is a development language used to develop programs on the .NET Framework. ...Show All

  • Visual Basic "pause code for x amount of time"

    Is there a way that I could easily pause the code for an x anount time and then continue on Here is what my code looks like. Pretty simple but I just learning:) Thanks for the help -------------------------------------------------------------------------------------- Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Dim generator1 As New Random Dim randomValue1 As Integer randomValue1 = generator1.Next(10, 100) Label2.Text = randomValue1 Do Until Label2.Text = 0 Dim generator As New Random Dim randomValue As Integer randomValue = generator.Next(1, 10) Label1.Text = randomValue Label2.Text -= 1 'I WOULD LIKE TO HAVE A PAUSE F ...Show All

©2008 Software Development Network