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

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

Helen999888

Member List

Michael Hansen
Laurent67
aaks
Alessandro Moacyr Duarte
GSReddy
yln
Zzermont
xxxmpsxxx
piell
Nasir_khan_persistent
Jerod Moemeka
Mystagogue
ProdigySoft
JW0000
libyan
gavin_1724
Paventhan
nunodonato
MBM_Mimo
Mart Tapp
Only Title

Helen999888's Q&A profile

  • Smart Device Development Removing or Modfying Menu at runtime

    Hi All, Does anyone have already tried to modify the menu at runtime I’m trying to use RemoveMenu, DeleteMenu or ModifyMenu from CMenu class, the functions seems to work, if I get menu item count before and after calling DeleteMenu(), the item count decrease, but the menu isn’t "updated" in application, my application still shows the menu Item. I tried to modify menu in CMainFrm::OnCreate() and CMyApp::InitInstance() functions, in both it seems to work, but the menu showed isn’t modified. Could you help me thanks in advance, Thiago I don't know if this applies to CE/WM5, but on Win32 I did a lot of tracing in MFC's innards to find that the proper way to adjust menus is to ...Show All

  • Visual Basic Raster Image Formats

    does anyone know how to access an image in a " Raster Image Formats" and display it in a picture box in .net 2.0 What image format specifically are you having trouble with Most raster image types can be loaded directly using New Bitmap("filename") or Image.FromFile("filename"). ...Show All

  • Visual Basic copy & paste in visual basic 2005 datagrid

    Hi I am building a datagridview form in VisualStudio 2005 and I want the user to be able to copy or paste the content of a cell without needing to select its text first (as this can become tyresome after a while). In excell databased tables you're able to copy the cell's content just by selecting the cell and pressing ctrl + C (not actually selecting the text inside the cell). Can't seem to do it with my visual studio form. Thanx for any help Hi, i have a similar problem. I cannt seem to copy or paste into my datagrid view. I always have to right click on my mouse to copy or paste. Why ...Show All

  • Windows Forms why would dgvcolumns be generated as friend withevents.

    why does a dgv dragged and dropped has all its columns declared as friend withevents .. .and the only method so far is a disposed, isnt that useful not a private would do or what is the purpose Friend WithEvents DataGridViewTextBoxColumn5 As ControlsLibrary.DGVAutoFilterTextBoxColumn Friend WithEvents DataGridViewTextBoxColumn10 As ControlsLibrary.DGVAutoFilterComboBoxColumn Friend WithEvents DataGridViewTextBoxColumn2 As ControlsLibrary.DGVAutoFilterComboBoxColumn Friend WithEvents DataGridViewTextBoxColumn1 As ControlsLibrary.DGVAutoFilterTextBoxColumn Friend WithEvents DataGridViewTextBoxColumn4 As ControlsLibrary.DGVAutoFilterComboBoxColumn Friend WithEvents DataGridViewTextBox ...Show All

  • Windows Forms Stop Cut/Copy in Text Box

    In my application I have a text box to store & display password data. Now i want to stop cut or copy that data from that textbox. How can I stop cut/copy of data from that textbox You can use Label instead of TextBox and make it look like same as TextBox. To do this set AutoSize = false, BackColor = Window and TextAlign = MiddleCenter! You can neither copy nor cut! I hope this will solve your issue! Best Regards, ...Show All

  • Windows Forms Publishing in VS2005 is very slow

    Hi, I have simple Windows form project which I choose to publish. Usually it works fine but for my current project for whatever reason it'll sit for 3-5 minutes showing "publish building" while VS is doing nothing (no high CPU utilization, nothing) and then it'll finally publish. Manually building project is very quick. What can be possibly a reason for this behaviour Hi, I have the same problem. It is even slower when publish a net3.0 WPF application. I've re-install my Visual Studio, and it does not help. What went wrong Any specila requirement for a web server to host ClickOnce app Although it is slow, I can publish .NET 2.0 application, I read in the forum that there are some is ...Show All

  • .NET Development DS HELP

    I currently have this error when I delete a record and then save it. My code is at the bottom of this post, im a newb to this though wish to learn. Though i've tryed to google this many a times and still come up blank with out knowing how to fix this problem. Can anyone help much thanks and please keep the answer with simple instructions. --------------------------------------------------------------------- ERROR: Update requires a valid DeleteCommand when passed DataRow collection with deleted rows. {"Update requires a valid DeleteCommand when passed DataRow collection with deleted rows."} System.InvalidOperationException was unhandled Message="Update requires a valid DeleteCommand when passed DataRow col ...Show All

  • Software Development for Windows Vista How to use the DirectShow sample BitmapMixer over a live video stream instead of opening a video file?

      I would like to draw a rectangle over a video stream in order to show a region of interest. How can i make BitmapMixer work on a live video stream instead of opening a AVI file I would like to make it work on the video panel of SampleGrabberNET. How can i edit the code sample( A little help would be great, does someone know how to do it Thanks a lot   Lionel,  There are a variety of ways to do this. If you are using DirectShowNet, there is discussion going on in their forum about using VMR for this. You might also take a look at DxLogo or DxText samples. ...Show All

  • Windows Forms WebBrowser NewWindow event...Cancel IE and send URL to my...

    In my application I have a webBrowser control.  When the user clicks a link that calls for a NewWindow to be opened, I need to cancel the action, retrieve the link they clicked, and send it to MY new window.  So far all I have been able to do is cancel the new Window from being opened: private : System::Void OnNewWindow_CONSUME(System::Object^ sender, System::ComponentModel::CancelEventArgs^ e) { // Implement method to capture IE window and use this window instead // Cancel the IE window from being opened e->Cancel = true ; } Now what I need to do is get the url of the link that the user clicked so I can then send it to my webBrowser.  I have no idea how to get the url of the link the user clicked though, ...Show All

  • Visual Basic Selecting records between two dates

    Hello, I'me trying to select the records that are on the database with the field 'Data" between two dates that are inserted into two fields: "DeData" and "aData". I've the following code but I'm getting an error on my SQL statment: Private Sub DeData_ValueChanged(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles DeData.ValueChanged con.ConnectionString = "Provider=Microsoft.Jet.OLEDB.4.0;" & "Data Source=""C:\Programacao\Visual Basic\Inapal\ReportIt\ReportIt.mdb"";" con.Open() sSQL = "SELECT * FROM [RelatorioQuery] WHERE ((Data >'#" & DeData.Text & "#') AND (Data <'#" & aData.Text & "#')) A ...Show All

  • Windows Forms side by side assemblies/manifest

    Hi, I have a com client written in vb.net using createobject() and a com server also written in vb.net. I have created a manifest for both the .exe and .dll and I am still getting "cannot create activeX component" at runtime. I am pretty sure all the namings in the manifest are correct and I aslo embedded the manifest into the dll. What am I still missing Any help would be greatly appreciated Thanks Jason W. Why do you need to have a manifest if your client and server are written in Vb.Net.. can you please elaborate a bit more -thanks Sreekanth ...Show All

  • Windows Forms Arraylist of objects and combo box

    How to display an array list of objects in a combo box Here you can find a post on how to customize comboboxes: http://ms-dotnet.blogspot.com/2006/12/checkboxcombo-continued.html Hope this helps... Eric ...Show All

  • Windows Live Developer Forums Polygon Circle outside map boundries

    I am currently implementing the ve api in such a way that we are plotting points on a map and drawing a circle (polygon) around that point on a map based on a provided radius. The point in question is in the Fiji Islands which would be on the rightmost part of the map (approx. Lat: -16.694078, Lon: 179.835205). The radius of the circle is large and there are points which lie outside the map boundaries. The circle gets plotted correctly which would be on both sides of the map. However, there are lines between the top and the bottom of each circle part and the outside of the circle is shaded in. I can't include an image in the post, so i have included a link here (yahoo for lack of a better place to put them): http://new.photos.yahoo.com/dad ...Show All

  • .NET Development Events with COM Interop & VB6.0 for C++

    Greetings, I appologize if this is in the wrong forum but this looks like the most applicable for my issue. I've written in VS 2005 C++ COM visible classes and these work great from VB 6.0 applications. My only problem surrounds events/callbacks. I've replaced a native ActiveX component with a .NET/COM visible one and everything works, except a simple event it needs. Under no circumstances have I been able to get VB 6.0 to reference a .NET class with the "WithEvents" keyword nor be able to install an event handler/callback. I need a very simplistic event or callback, which is a simple single-argument "TimeOut" handler for asynchronously processing data in the .NET assembly. It simply needs to call a given VB6.0 function ...Show All

  • SQL Server I can't debug my SQL Server project

    I'm coding a TVF in C# and the debugger doesn't stop at all. It used to work when I was coding scalar functions, but it stop working since I removed my assembly from the DB and register it manually to test my SQL scripts. I removed the assembly again from my DB and re-deployed it with VS.2005 hoping that will fix it, but it didn't work. Right now I can't debug. Have anybody had a problem like this before Any help will be appreciated. Got it. There was a problem with a commented section in query. Thank you. ...Show All

©2008 Software Development Network