Topics
-
-
- Leaders
- 2 replies
- 737 views
I've just discovered the Object Test Bench. Is it useful? If so, how would you use it? All my objects are so interconnected that I think it would be more work to set them up on the test bench than to simply run the application and set them up as intended.
Last reply by rbulph, -
-
- 0 replies
- 2.2k views
I've just gone through every single DirectX thread on this forum (took a few hours). The thread that came closest to the code I was looking to find out something about was this "Skinned Mesh Animation" thread: http://www.xtremedotnettalk.com/showthread.php?t=91054 Although its pretty old there doesn't seem to be any newer thread along the same lines.. The thing is the thread ends with post that hints that there is some working code off site but no direct link was given: http://www.xtremedotnettalk.com/showpost.php?p=445978 After over half an hour of doing Italian translating I think I found the page being referenced: http://translate.google.com/translate?hl=en&…
Last reply by dotnetguy37, -
-
- Administrators
- Leaders
- 10 replies
- 3k views
Hi. I am making an app that runs a program just after a form loads. I want it to wait for the process to exit but when i use 'Process.WaitForExit' it does not let the form load properly. :mad: Any other ways to wait without suspending the form loading? I have attached screen shot. I am very appreciative of any help. :(:(:(:( problem.bmp
Last reply by BrettW, -
-
-
- Leaders
- 3 replies
- 3.1k views
Hi all guys. I just registred here. Maybe you guys know the answer on my very stupid error! Btw. I'm just a beginner in visual basic. I'm an advanced c++ programmer. \RegSys.vb(27) : error BC30007: Reference required to assembly 'System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' containing the base class 'System.Data.Common.DbConnection'. Add one to your project. \RegSys.vb(28) : error BC30007: Reference required to assembly 'System.Data, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089' containing the base class 'System.Data.Common.DbDataAdapter'. Add one to your project. \RegSys.vb(30) : error BC30007: Reference r…
Last reply by snarfblam, -
-
-
- Administrators
- Leaders
- 4 replies
- 2.3k views
Hi All, Firstly, I am new to inheritance, but understand the concept (probably at quite a simply level though). I am having a problem with closing a form which I have inherited. I have a form called frmAddForm_Simple, which contains 4 main controls (A Data Grid, A Save Button, A Close Button and a Text Box). The idea around the form is to create a form which could be used for inputting of many different types of data which are all entered in the same way (i.e. to add a new row to a database for [status] table or [Location] table, all of which contain 2 columns in the database (an [id] and a [value]). On the form I have a property called _FormChanged, which wh…
Last reply by BrettW, -
-
- 0 replies
- 2.7k views
On all accounts my httpwebrequest code is working... I think. The page I used to post to is gone so I can't test my code. It is a long story about why the page is gone. So I am look for the simplest way to test that my application is in fact posting. Is there a site anyone has used to test httpwebrequest posting? Thanks Paul
Last reply by ZeroEffect, -
-
- Leaders
- 2 replies
- 1.4k views
Hey, Any suggestions on how I should go about loading levels into my game? I have a very good piece of code working for my player... collision detection works 100%, doors work (including the ID property for teleporting to rooms).. I'm probably going about all of this the wrong way, and I don't want to make a 2D game using tiles. I guess all I'm asking is... how should I go about this? I've tried making an MDIParent and MDIChild to get pre-made forms to load, I don't really like the idea of doing that... I've also tried getting each control off of 1 form onto another and that isn't working right.. I am probably going to make an editor to export each control name a…
Last reply by Fabian_Russ, -
-
- 0 replies
- 2.4k views
Hi, I am relatively new to C# so please help me in this problem I am facing. I created an access database having 50 tables with each table having the first coulmn in the date format. Now for each table, in that 1st column I need to input dates from 1st Jan 2003 to say today's date. Can someone please suggest a code for the same in C#. Regards, boyinmood
Last reply by boyinmood, -
- 0 replies
- 2.4k views
I'm making a list of game-ready model shops, if you know another ones please tell me ^^ here's what I've found so far: (alphabetically sorted) 3dbud.com http://img118.imageshack.us/img118/8018/83767809.jpg (fantasy characters - animals - monters) - <they have just updated new monsters and characters> http://3dbud.com 3drt.com http://3drt.com/3dm/characters/real-zombies/characters-real-zombies-3d_01.jpg (fantasy - scifi characters - animals - monters) <new zombie pack> http://3drt.com adenfall.com http://www.adenfall.com/modelalbum1/bedroom_render.jpg (game objects) http://adenfall.com arteria-gaming.com http://www.arteria-gaming.com/fant…
Last reply by luzdelsol, -
-
- Administrators
- 4 replies
- 2.4k views
I am creating dynamic ImageButtons (ie. a print icon for each row of a dynamic table). I can format the buttons and get them to PostBack, but I cannot work out how to handle the button click event. imgPrint = New ImageButton With imgPrint .CausesValidation = True .CommandName = "imgButton" .CommandArgument = drRuns("SchoolRunID") .ToolTip = "Print" .ImageUrl = "~/images/print.gif" End With I can't create an imgButton_onClick sub in the code behind file as imgButton is created dynamically at runtime, so it doesn't recognise this control/event in the code behind. I have got the following code in the Page_Load sub; If Not IsPostBack Then ' d…
Last reply by bairdmw, -
-
-
- *Gurus*
- *Experts*
- Leaders
- 13 replies
- 7.1k views
if i mod 5 = 0 then output & = vbCrlf end if next 'what the hell is vbCrlf ?
Last reply by snarfblam, -
-
- 0 replies
- 1.5k views
I need a way to embed MS Word into my form that's stable. I've tried the DSOFramer and it would work okay on one machine, but not at all on another, even though both had the same DLL files and had the same .NET Framework update. Does anyone know of a better way to embed Word into a form, or even if there's another type of control with the functionality of MS Word? I've using Visual Studio 2008 and writing in VB. Thanks for any and all help, Emery
Last reply by EmeryLee, -
- 5 replies
- 3.9k views
I have some code in a command button which I would like to call from a sub, is this possible? If so what do I put in the arguments? Private Sub cmdNext_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles cmdNext.Click Thnx
Last reply by sanjayadx8, -
-
- Administrators
- 2 replies
- 1k views
Is it possible to get properties off of objects in an external app? I need to click a button on an external program and I also need to get the name of that button, I've tried and tried and I don't see a good way of accomplishing this. I've played with SendKeys and I fail pretty badly with that. I'm trying to make a program that will automatically install programs for me by doing things like checking the Agree checkbox and pressing the Ok button. All help/comments would be appreciated! Thanks!
Last reply by Fabian_Russ, -
-
-
- Leaders
- 3 replies
- 1.5k views
I've searched everywhere online and can't find anything on this. Is there was any way to migrate all controls from form to form? I've tried For Each Ctrl as Control in Form2.Controls Form1.Controls.Add(Ctrl) Next I get skipped controls and ect... but... If I try to get the name of each control For Each Ctrl as Control in Form2.Controls Debug.Print(Ctrl.Name) Next It does not skip any and the debugger prints every control's name just fine. Any Ideas? This is really bothering me.
Last reply by Fabian_Russ, -
-
-
- Administrators
- 4 replies
- 6.6k views
Hi All I've bing'd this to death and have reached a dead end, so any help would be appreciated, I'm not an excel expert at all. The situation I have created an application in VSTS that exports an XML file with a single root node, and a number of child nodes. Most are themselves arrays (serialised IEnumerables<T>) but one is not. I have created a template in Excel 2007 that properly formats the XML. If I open the template (as in, create a workbook from the template) I can right click somewhere that is mapped and select XML | Import XML. This lets me select the file output from my application, and imports it and formats it a treat. The import takes place acr…
Last reply by wrigracap, -
-
- 0 replies
- 2.5k views
Good morning all, We have a procedure that requires us to validate all input for text fields; if the input contains certain characters or key words, we must force the user to re-enter alternative data. Some of the characters that we look for at the start of sentances are: ' ; / > -- < admin @ declare = Some of the characters that we look for at the end of sentances are: one > The keywords that we look for are: @@ xss __ (double underscore) NULL varchar ‘’ (double single quote) ascii '; cursor exec (followed by space) -- char( src I have added the regular expression validator to my web page and have entered the following custom v…
Last reply by mike55, -
- 0 replies
- 2.7k views
I posted this question a couple of days ago on http://social.msdn.microsoft.com, but I didn't get any responses. Maybe someone here has an idea. Here is the situation: In our company's internally controlled application, we check at startup to see if a newer version is available. We do NOT use and we do not want to use ClickOnce (it is problematic with terminal servers and our IT department does not like the way it installs Windows Forms, etc. - basically, we just avoid it). Anyway, once an update is found, how can I install it under a limited user account (aside from turning to ClickOnce)? The basic command currently does this: public void InstallUpdate() …
Last reply by joe_pool_is, -
-
- Administrators
- 5 replies
- 5.5k views
I have a windows Application.Now I have made a installer to install my application in the other systems.Its working fine,but when I am seeing the Control Panel>Add/Remove Program there I can see more than one Application installed with the same name.I think ,I am not able to remove the older version of my previously installed application and its also residing in the Programs Files with my newly installed application , and it can create more problems in future.So how can I remove the older version of my previously installed application automatically when trying to install a newer version of the application ???? Help me.Thanks in advance.
Last reply by joe_pool_is, -
-
- 0 replies
- 2k views
The following sql query works fine if I leave the four commented SET statements commented out. However, if I uncomment them, or just say I uncomment the first one SET @StoreID = tt_StoreID then I get the following message Invalid column name 'tt_StoreID' Why doesn't it recognize it, and how do I fix it ? *--------------------------------- DECLARE @txnTable table ( tt_StoreID int, tt_StoreName nvarchar (50), tt_BatchNumber int, tt_OpeningTime datetime, tt_ClosingTime datetime, tt_TransactionNumber int, tt_Price money, tt_Quantity float, tt_TenderID int, tt_TenderDesc nvarchar (25), tt_TEID int, tt_ItemID int, tt_ItemLookupCode…
Last reply by lauriemc,
-
Who's Online 0 Members, 0 Anonymous, 15 Guests (See full list)
- There are no registered users currently online