chris | Wed, 21 May 2008 01:26:00 GMT |
flare | Wed, 21 May 2008 01:27:00 GMT |
paul | Wed, 21 May 2008 01:28:00 GMT |
paul | Wed, 21 May 2008 01:29:00 GMT |
chris | Wed, 21 May 2008 01:30:00 GMT |
paul | Wed, 21 May 2008 01:31:00 GMT |
chris | Wed, 21 May 2008 01:32:00 GMT |
Hi,I have a VC++ .Net 2003 MDI application.I am declaring a __gc Array in the frmChild_load method of the child form. The declaration is as followsDouble zData __gc[,] = new Double __gc[10,10];It compiles and links properly but I get the following run-time error!!!!!Error: Method not found: ...
I'm using the TableAdapters to insert rows into the master and detail tables. I would like to know what's the best practise to handle the identity column which is a auto-generate number. As I'm required to insert all rows in a single transaction, I don't have the id no in the master table ...
Hello, Im trying to identify textboxes with API on a form, but there are multiple textboxes and they each have the same caption and class name, how can I send a message to a specific textbox? ...
hi folks, hope this isn't a previously answered question.I have a webform where an image is displayed, this image however can be replaced by uploading another. this works fine but when the FileUpload.SaveAs command is executed and refresh the imageUrl (or even do a redirect) the image is no...
Hi All,I have a page with two buttons (one isbtnAddand the other isbtnSubmit)When I click btnAdd, the page postsback, and in the Page_Load Sub, I add a new WebUserControl to my form.! > There's nothing in btnAdd_Click Sub, and in btnSubmit Sub i call the procedure that gets all the data...
I have a really large project around a toolstrip. It already has several thousand lines of code to support all the dynamism I want.I run toolstrips through many conceivable configurations. I put them through flow mode and change their stacking etc.Now, I'm seeing something new that I have not ...
hi there fellowsits a been great help from you people and i hope you people will do it again this tim thnxx alot guruswell i have another problem{ am trying to map the "Enter" key on Tab key so that the focus of the controls on the form shifted with enter key as it normally changes ...
something like that maybe: string data_directory = "";if (AppDomain.CurrentDomain.DomainManager != null &&AppDomain.CurrentDomain.DomainManager.ToString().Contains("VSHost")){data_directory = Application.StartupPath;}else{data_directory = ...
hi i have 2 relational tables in the dataset when i save sometimes it gives me this exception sometimes not !!!!!! although the parent record is not deleted or modified !!!!!! the exception is "you can't add or change arecord because a related record required in parent table " how ...
You cannot drop an item onto a button on the taskbar.However, if you drag the item over a button without releasing the mouse button, the window will open after a moment, allowing you to drop the item inside the window.I get this messege when i try and drag and drop some of my controls with my ...
HiI have been quite happily creating ASP.NET applications for months until today LOL!I have applications that run perfectly ok, however any new applications I create I am greeted with the following message: -Error while trying to run project: Unable to start debugging on the server. You do not h...
This is admin abuse and you will be dealt with. -- Eric Miller...
This is a somewhat vague and general question.. but here's the situation...I need to render this graphic: http://www.geocities.com/ethanton1/ (sorry about the geocities site)Those are bins on the trailers. I made that graphic in photoshop. That graphic needs to change colors (the cab) but more ...
I have a webform that I am setting up as a timesheet. In my shop I have many developers that are responsible for several line items and within those line items several components and several activities. Before accessing the timesheet a user must fillout a type of registration form that ask them...
Look into the SynchronizationContext class. It allows you to send or post invocations to another thread like so: context.Post( new SendOrPostCallback( new delegate( object target ){ //call your notification } ), null ); ... that is just from memory it's probably not quite right. It might he...