| DotNetNuke 2.0 - Procedure or function GetPortalSettings has too many arguments specified (VIP replies) |
| microsoft.public.dotnet.general |
| After a clean install of the final release of DNN 2.0, I created a child portal, added a bunch of content, users, groups, tabs, etc. Also added two IFrames under a seperate tab respectively to point to a subfolder of seperate ASP 3.0 pages and another for a seperate ASP.NET project ASPX file. All seemed to be working. Then after a day, I reloaded the pages, and after clicking a tab with an IFrame ... |
|
| Double "Open/Save/Cancel/More Info" dialog when downloading text file from ASP.NET (VIP replies) |
| microsoft.public.dotnet.framework.aspnet |
| How can I get my code to NOT display two "Open/Save/Cancel/More Info" dialog boxes when using the "Response.WriteFile" method to download a file to IE. I've asked about this before and didn't get a satisfactory answer (check your browser) so now that I've had the time to set up a reasonable little test that I can post somewhere, I'll try again. The app I've written has three ASPX pages. One is a c... |
|
| Double Click DataGrid Cell (VIP replies) |
| microsoft.public.dotnet.framework.windowsforms |
| Hey. I've searched far and wide and not found anything that I could get to work for handling the double click event of a particular cell. I can get it for an entire row, but not a particular cell. I tried drilling down to the TextBox itself and putting an event handler on that for the double click event, but for some reason it did not work (possibly not getting propagated down that far?). I have a... |
|
| Double Click Event not fire (VIP replies) |
| microsoft.public.dotnet.framework.windowsforms |
| I have a vb .net program Public Class Testing Inherits System.Windows.Forms.Form STAThread() Shared Sub Main() System.Windows.Forms.Application.Run(New HelloWorld()) End Sub Public Sub New() MyBase.New() Me.Text "Testing" Me.AutoScale False Me.StartPosition FormStartPosition.Manual Me.MaximizeBox False Me.FormBorderStyle FormBorderStyle.FixedToolWindow End Sub Private Sub Form1 DoubleClick(sender ... |
|
| double click on combobox (VIP replies) |
| microsoft.public.dotnet.languages.csharp |
| I am developing a C# app. I want to do something when someone double clicks on a combo box. But this event never fires. Any suggestions? Thanx! |
|
| Double or float - make your mind up! (VIP replies) |
| microsoft.public.dotnet.framework.adonet |
| I use floats in SQL server as they are its standard datatype for dealing with non integral numbers. I thus thought it would be logical to use the SqlDbType.Float for accessing parameters of this type in ADO.NET, from C#. However, when I declare an SqlParameter with SqlDbType.Float as its datatype, its Value property after the command has executed can't be cast to a float, only a double. I'm OK wit... |
|
| Double post back (VIP replies) |
| microsoft.public.dotnet.framework.aspnet |
| I have a standard web form which works normally usually. However if a go to another aspx page on the website I am building either by a link, a server.transfer or by a Response.Redirect, push the back key on the browser and then submit the page, the Page Load method gets executed twice in a row. This doesn't seem proper behaviour. Thanks James |
|
| Double-click event in datagrid? (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| Hi all, Can anyone tell me how I can detect the double click event in a datagrid CELL. I have a read only bound grid that appears to only receive the event if you double click the header or in between a row... I'm basically trying to retrieve the value of the underlying row to retrieve a record selection. Any help would be appreciated. Thanks, Graham |
|
| Double-click event in datagrid? (VIP replies) |
| microsoft.public.dotnet.general |
| Hi all, Can anyone tell me how I can detect the double click event in a datagrid CELL. I have a read only bound grid that appears to only receive the event if you double click the header or in between a row... I'm basically trying to retrieve the value of the underlying row to retrieve a record selection. Any help would be appreciated. Thanks, Graham |
|
| Doubleclick event for a group box? (VIP replies) |
| microsoft.public.dotnet.languages.vb.controls |
| I need to capture a double click event for a group box; however, the group box doesn't expose an event for double click or even click. Anyone know how I can do this? Or do I have to make up a panel and label and try to 'make' my own group box? I can't believe that MS didn't provide this capability (especially when the panel box has it). Thanks for any advice. Tom |
|
| DoubleClick on Button (VIP replies) |
| microsoft.public.dotnet.languages.vb.controls |
| I would like to distinguis between a click and a doubleclick on a button. But always the event "click" is raised, no matter wether i do a click or a doubleclick. Can anyone help me? Thank you Hannes |
|
| doubt about namespace google (VIP replies) |
| microsoft.public.dotnet.faqs |
| Respected Sir , while compiling c sharp code, getting an error as google namespace is not found. please send me the solution for this as soon as possible. Code : using System.IO; using System; using System.Collections; using System.ComponentModel; using System.Data; using System.Drawing; using System.Web; using System.Web.SessionState; using System.Web.UI; using System.Web.UI.WebControls; using Sy... |
|
| downloaded file is missing (VIP replies) |
| microsoft.public.dotnet.framework.aspnet |
| I am using the following ASPC.VB code to download a text file: Response.Clear() Response.ContentType "ignore/this" ' arbitrary Response.AddHeader("Content Disposition", "attachment;filename file.txt") Response.WriteFile(tempFileName) Response.Flush() Response.End() I get the open/save/cancel dialog box on the Browser side. If I select save, I see a brief download window and the the Save As dialog ... |
|
| downLoadFile Issue (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| I have a loop that loops through this sub. However, I recieve an WebException error in my try statement. "An exception occurred during a WebClient request." This message doesnt happen when I am only looping throught the sub once, however when I process multiple records, I recieve this error for every record after the first one. And the images that is downloaded does show up for all records process... |
|
| DPAPI Enterprise Services Example (VIP replies) |
| microsoft.public.dotnet.framework.aspnet.security |
| I am trying to work through the sample from msdn, "How To Use DPAPI (User Store) from ASP.NET with Enterprise Services". I thought I had everything configured correctly. I tried to test the service and get the following error.(Sorry for encluding every line). I am confused as to what setting is incorrectly set. Additionally, the paragraph on giving asp.net access doesn't help me at all. Thanks for... |
|
| Drag & Drop can't work with Click? (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| If I use the "Drag & Drop" function in the application, then the "Click" function no more work!!!! For example: Private Sub Button1 Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click MessageBox.Show("C") End Sub Private Sub Button1 MouseDown(ByVal sender As Object, ByVal e As System.Windows.Forms.MouseEventArgs) Handles Button1.MouseDown Button1.DoDragDrop(Butt... |
|
| drag and drop from a DataGrid (VIP replies) |
| microsoft.public.dotnet.languages.csharp |
| I have a slight problem implementing 'drag and drop' from a datagrid to a tree view. I have pasted my code below. Someone please advice me on what to do...pretty blur right now. code using System; using System.Drawing; using System.Collections; using System.ComponentModel; using System.Windows.Forms; using System.Data; using System.IO; namespace DragDropTry { /// summary /// Summary description fo... |
|
| Drag and Drop to Windows Explorer (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| Hello, How do I perform a drag and drop from a list view control to windows explorer? I am looking to perform a file copy from files in my list view to the destination in the windows explorer program. Thanks in advance Regards Simon Jefferies Tools Programmer, Headfirst Productions mailto:simonj@headfirst.co.uk www.callofcthulhu.com www.deadlandsgame.com |
|
| Drag-Drop (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| I'm working for the first time with the DoDragDrop method. I've got almost everything worked out, but I need some help with the last bit. There are two listboxes on my form, lstGroups and lstStudents. I want to be able to drag a name from lstStudents and drop it on one of the names in lstGroups to move it to that group. I've got the dragging part working; it's just the dropping that isn't there ye... |
|
| draw circles (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| my points are: 10,10 20,20 30,30 40,40 and so on .... With these points I can draw many lines continuosly. Then I would like to place the small circle in the connecting points like 20,20 30,30 40,40 and so on..... How to do? |
|
| draw controls on ComboBox_DrawItem (VIP replies) |
| microsoft.public.dotnet.framework.windowsforms.controls |
| I'd like to create a combobox that shows some complex controls when user opens it. I need to show a user defined control containing some controls (a filter) and a list with available options. I've tried to work with ComboBox DrawItem event, but I cannot make what I need. In this event I can only draw simple object with graphics, but it is too complex re write my control from scratch instead of des... |
|
| Drawing during MouseMove. Can I use this.CreateGraphics? (VIP replies) |
| microsoft.public.dotnet.framework.drawing |
| Hi, I read on several forums and blogs that the use of this.CreateGraphics is bad for drawing actual shapes. It is said that only the Graphics object taken from the OnPaint EventArgs is the right one to use. So my question is, can I store a reference to this Graphics object in my control for use during MouseMove events? Or how should I get the right Graphics object during MouseMove events? Does an... |
|
| Drawing filled lines (VIP replies) |
| microsoft.public.dotnet.framework.drawing |
| Hi All, I'm having trouble with the creategraphics on a form or picturebox. I made an application which draws lines if you click the mouse, untill you relaese the mousebutton, on this relaese I also fill the Curve. When I call a messagebox or a ColorDialog, the graphics dissappear under the box, I tried to paint it again in the paint of the picturebox, but that would mean that I have to create a n... |
|
| drawing image without saving to file (VIP replies) |
| microsoft.public.dotnet.framework.aspnet |
| Hello all, I have a class which includes a method to create a chart. I want to be able to call this method from asp.net code as well as windows application code, so I have sketched it out as returning a bitmap instance. In my asp.net code I think I should call this method to return a bitmap and then somehow stream it using the response object to the Webcontrols.image. Is that right? The image obje... |
|
| Drawing lines in Form (VIP replies) |
| microsoft.public.dotnet.languages.vb |
| Here's my coding again: Private Sub Form1 Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load cn.Open("Provider Microsoft.Jet.OLEDB.4.0;Data Source D:\Documents and Settings\rvish\Desktop\trverse.mdb;Persist Security Info False") rs.Open("select Easting,Northing,UserID from trverse order by cint(UserID)", cn, ADODB.CursorTypeEnum.adOpenKeyset, ADODB.LockTypeEnum.ad... |
|