Software Development Network Logo
  • Windows Forms
  • Smart Device
  • Visual J#
  • VS Express Editions
  • Game Technologies
  • Microsoft ISV
  • Visual C++
  • SQL Server
  • Windows Live
  • VS Team System
  • .NET Development
  • Visual FoxPro
  • Visual C#
  • Windows Vista
  • Visual Studio

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

ecca30

Member List

Mike Melzer
PredragB
wilsilvermite
Charles Smith
Sébastien Nunes
Trev
kingtaj
RennySchweiger
rfarmer768
Jan Alexander1
traci8891
Kerad
Jackson420
Henk Kin
Shavona48
MigiTheGuru
mathu
Bernie Hizon
JohnEwing
tri4pro
Only Title

ecca30's Q&A profile

  • Windows Forms Create an appbar in visualbasic.net

    hello can anybody help me with how to create an appbar in visualbasic .net i can't find information about how to create it in vb.net only 1 milion samples for C or C++ hope anybody can help me.   Jordy23 wrote: hello can anybody help me with how to create an appbar in visualbasic .net i can't find information about how to create it in vb.net only 1 milion samples for C or C++ hope anybody can help me.   I have to agree with Jordy. I have everything but the AppBar working. With that, I can finish this and move on to more bells and whistles. ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Texture map to 3d head model

    Hi I want to map the 2D human face image as a texture on   3d head model in managed DirectX. Can Anyone help me on this problem     I have already tried TextureLoader.FromFile(...) Method   but it didnt work. This method put some dark shade on 3d model   and nothing else. I want to map the image from file on 3d head model.   How this would be done   thnx  What you are looking for requires a very non-trivial application.  Best advice I can offer you is to find a development house that specializes in medical application development. ...Show All

  • .NET Development Configuration files

    I am used to working with the App.Config files. But there's one problem to them: They lack the ability to be encrypted and that's causing major security leaks. For example: Passwords for my database connection aren't encrypted. Is there anyone that has a configuration section class for me that supports encryption/decryption of settings in the configuration section Have a look at the following article: Encrypt Connection Strings in VS 2005 .Config files ...Show All

  • Windows Forms Best user interface control suite?

    The application I'm currently developing requires a very robust and user-friendly interface.  I know there are many third party control suites out there, but which one is the best for the money   I'm looking for a package that supports dockable toolbars and windows/containers, preferrably multiple color schemes, menus with icons, tab interfaces, etc. (pretty much the standards.)  I've looked at Infragistic's NetAdvantage, Actipro's UIStudio, QIOS DevSuite, DivElement's Sandbar and Sandock, etc. If anyone has personal experience with any number of these (or other) packages, please share your suggestions and preferences. Also, ...Show All

  • Visual C# How to determine if a generic parameter is null or default?

    The following code snippet gives me the compiler error: "Operator '==' cannot be applied to operands of type 'T' and 'T'" void Test<T>(T item) {    if (item == default (T)) // error here    ... }   What is the reason behind this compiler error I just want to see if the item is null for reference types, or default for value types. How can I do this You can compare the result of default to null, just not directly to a generic object. default will return zero if it is a value type, regardless of the actual value, and null if it is a reference type. Here is my understanding of how to use default: ...Show All

  • Visual Studio Express Editions Connecting to a remote registry in VB 2005 Express

    Hello everyone, I don't know if it is possible in the Express edition to do any sort of remote work. I seem to have seen something somewhere that sounded like it was not possible. Anyway, here is what I would like to do: Connect to the registry on a remote PC and read a key. My program works on my local machine. But, I am not sure how to change the code to run it against a remote machine. Presently I am using the: "My.Computer.Registry.GetValue" method. Any pointers would be much appreciated (my appologies if this question has already been answered somewhere. I tried looking ) Thank you much, Oozle_Finch ...Show All

  • Microsoft ISV Community Center Forums Windows known applications web service

    Windows known applications web service In Windows XP, when you try to open a file that is unknown to the operating system, you are given two options 1> Use a web service to look up the application 2> Select the application from a list How do I register my application with the Windows Web Service so that when a user opts to look up the application using the web service, they are able to do so Cheers. Started by hc_pbernard at 04-12-2005 5:10 PM. Topic has 0 replies. Here's some additional information from the support engineer: Our contact from t ...Show All

  • Windows Forms IndexOutOfRangeExceptionwhile deleting multiple rows from a bound DataGridView

    Hi, I have a DataGridView which is bound to a bindingsource. In my DataGridView, I have a nbound checkboxcolumn which i use to select multiple rows from the datagridview without using CTRL+LCLICK. When the user selects a row by checking that checkbox, the row is added to an ArrayList called selectedMembers. Then if user clicks a delete button, those rows in my datagridview are deleted but ofcourse with the exception window below appearing forever even if it is closed : --------------------------- DataGridView Default Error Dialog --------------------------- The following exception occurred in the DataGridView: System.IndexOutO ...Show All

  • Visual Studio Express Editions Can I Create an Access DataBase Without Access?

    I don't own Access and this is for Learning Purposes.... Can I create an Access DataBase with my own Schema(I guess that's the word) with VBE or any Other Way I downloaded Northwind.... Can I change Northwind schema without Access Thanks   Yes. I know you could do it with DAO. I'm not sure about ADO. Since ADO.NET is a little less faciliated in persisting, the USE of ADOX has been recommended to me for things like table creation and storage and I find that it works very well with VB.NET. I've installed systems based upon access databases on on target systems that did not have access. I ...Show All

  • Visual C# Bytes Read

    Ok, I have a media player and I would like to know how to read the size of a media file, and display it in a textbox. Ok. I have a little bit more complicated question. I now know how to read the bytes of a file. So now, let me make an example. I have progressbar and a timer. Ok, there is a part of my program that downloads files from a server. What I would like to know is, how to fill the progressbar while the file is being downloaded. Basically, to show the download progress in a progressbar. I know it has something to do with reading the bytes. Your help is greatly appreciated. ...Show All

  • Software Development for Windows Vista SQL Persistence, Loading Workflows and Workflow Properties

    I have a workflow that has a bunch of properties on it. One of those properties is the name of the user that initiated the workflow (it is passed into the workflow via the Dictionary<string, object> class. I have SQL persistence working just fine (well, I can't figure out how to 'auto persist', so I am manually calling 'Unload' when the workflow idles), and I run through the list of workflow IDs persisted when my application starts up. What I want to do is access the properties on that workflow (they're public) once I have the instance ID. I just can't seem to find a way to access those properties. Anyone Ok, I found out ho ...Show All

  • Visual Basic Bug: Accessing array of objects in a function

    When I try to use an array of objects through a function or certain types of subs, I get a NullReferenceException and a TypeInitialization exception. Any subs tied to a button do not cause this. This code explains better: This is in a module: Public checkBoxes() As CheckBox = {frmLaunch.uiCheckBoxDeveloper, frmLaunch.uiCheckBoxDebugFile, frmLaunch.uiCheckBoxAltDeath} This sub will use the checkbox array with no problem when called from a button: Private Sub Save_Settings( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles uiMenuItemSaveSlot1.Click, uiMenuItemSaveSlot2.Cl ...Show All

  • Visual Studio Tools for Office Excel ListObject Problems

    I have a couple VSTO questions about the ListObject. Is there any way to remove or at least reformat the blue line that appears around a list object I understand the reason for it, and I think it will be OK if I could at least re-color it. Is there any way to get rid of the header row I doubt these two wishes are possible, is there any alternative I would really like to use databinding, as the alternative is to write tons of mapping code and as always time is short. Dave You may want to try the BorderAround function on the Range of the ListObject to set the color of the border. You cannot get rid of th ...Show All

  • .NET Development IO.Compression.DeflateStream compression

    Compression.DeflateStream using compression. when i compress a file to an already open stream that needs to stay open for further writing, my deflatestream doesnt seems to end correctly. i need to close it to have the full compressed stream. so as a workaround I ended writing an intermediate file so that i can close the deflatestream and then copyback the compressed stream to my main filestream. is there a bug or something i did wrong             byte [] rBuffer = new byte [( int )fread.Length];             FileStream fout = n ...Show All

  • Windows Forms Launching Application from a webpage.

    I'm not sure if I am on the right forum or not, but here is my question.  I have a windows app and a webapp.  The webapp pulls data into a datagrid.  When the datagrid is populated, the customer can click on a record and it needs to launch my windows application, and send it a variable, such as the id to that record, so that the application can launch and then hit the database and open the appropriate record. I know the best way would be for the webapp to just handle all data, but that can't be helped.  I know how to launch an application from a webpage, as well as to launch it by opening up an associated file to the app, ...Show All

©2008 Software Development Network