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

Software Development Network >> wendling lionel's Q&A profile

wendling lionel

Member List

Stephen Cantoria
search and deploy
GrandpaB
Naveeeen
mike1942f
Pablo Orte
Roger Jennings
enric vives
AlucardHellSing
David Mc Quillan
Keith Hill
Sparx
Sniper167
Allen Razdow
seco
Greg Thomas - UK
me*
TruePsion
DocMARs
prg
Only Title

wendling lionel's Q&A profile

  • Visual Studio Express Editions BindingSource.Filter Not Working Correctly

    Could someone show me a way to make this code actually work correctly; Private Sub ComboBox2_TextChanged( ByVal sender As Object , ByVal e As System.EventArgs) Handles ComboBox2.TextChanged Me .InventoryTableAdapter.Fill( Me .InventoryDataSet.Inventory) Dim ProductLine As String = Me .ComboBox2.Text.ToString Me .InventoryBindingSource.Filter = "NormalStock='Yes'" Me .InventoryBindingSource.Filter = "PartProductLine='" & ProductLine & "'" Me .DataGridView1.DataSource = Me .InventoryBindingSource End Sub I know the two bold lines need to be joined as one, but I have tried several simple version with no effect. All I can find is using multiple text ...Show All

  • Visual Basic Security

    Hi all I am a relative newbie to .Net and know little about security issues. I have written a VB2005 application that I have installed on one workstation. This works fine. I now need to be able to run this application from another workstation. If I open the shared folder that contains the application from the second workstation and try to run the app I get a security message telling me that I cannot run the app. What do I need to do to allow this to happen I need to keep the application in an identifiable shared folder so that a second app running on the second workstation can call it. Thanks in advance Roy Thompson Hi, I think you would have to enable threading or is it called multi-threading for your applicatio ...Show All

  • .NET Development How to use folder path to find pathnames of certain files

    Hello, For a windows application I have created I have used the FolderBrowserDialog to retreive the pathname of a desired folder. Now that I have that pathname I wish to look in this folder for all files with a certain extensions (.html and .htm to be specific), after I find each file I would like to store the file's path name in an array of strings. Also I wish not to look into subfolders, but just at the root of the folder. Is this possible I have looked all over the web and just cannot find anything that will help. I have looked at filestreams and have not gotten anywhere either. Can someone please help me with this matter Thanks, Tareq Ismail Hello, Thanks ahmedilyas fo ...Show All

  • Visual Studio Express Editions Movie (Game) Collection XNA Questions

    I wasn't sure if I should spam this into the SQL forums, or here since this sample kit did come with the XNA installation. Either way, hopefully I can find some help here. The Movie Collection looked like a fun little project to tinker with, and I was going to attempt to transform it into a Game Collection program. Sounded entertaining enough, but I've spent the past two hours cursing the gods for the mess that is SQL. Ok, so I'm probably the mess, not SQL, but I can't curse the gods out for the mess that I am :) Here's my issue, I've read everything I can find on trying to fix this problem I'm having. There was some blog entry, a couple articles I found on Google, all of the saming the same ***.. Here's the problem, when I first open up t ...Show All

  • SQL Server Dynamic RDLC generation layout problems. Overlapping.

    I am dynamically creating an rdlc file at runtime. I use multiple Matrixes (Matrices ) throughout the report. The problem is, upon viewing, the report isnt rendered the same way as if it was created as design time. The matrices overlap, where as if I create a similar scenerio at design time, they are moved to accomodate the size of the previous element. I have tried many different things as far as the Top and Left attributes go, as well as setting the ZIndex on all of the items to be 1 or 0. Nothing seems to work, they all just overlap. If anyone has any input on this, it would be greatly appreciated. nomer This is an rdlc file that I am having the issue with. Can you notice anything that may cause ...Show All

  • Visual Studio Express Editions Transforming Excel Spreadsheet to a website that uses VB

    I have developed an Excel spreadsheet that uses a complex VB program to make alterations to the spreadsheet data. I wish to be able to run the program on a website, where website visitors can access/run the progam. Where do I begin to transform my Excel spreadsheet to a website that can utilize the VB code to run the spreasheet on the web I only want the cells that actually are used in the program to show up on the webpage. I do not need the entire worksheet to show up. Any ideas as to how to start or what programming I need to learn A would suggest asking this question in the forums.asp.net web site. As your asking about a web development issue and vb express doesnt allow creation of web sites. You can use Visual Web Developer E ...Show All

  • Visual C++ Enabling Low Fragmentation Heap fails with GetLastError()=31

    Sorry, another novel here. I'm writing a templated collection class that stores objects by string index as a potentially very wide and deep tree representing all the characters used in all the indices. The class is a rework of one I already have in my project that has been a candidate for optimisation for a while now, and now it's essential because of a significant increase in load through my app. The main problem will be that one of these trees is going to be grown and pruned across a wide range of indices on a very fast basis - probably up to 100-200 times a second at the normal rate of activity, whilst in highly volatile conditions it could go up to 500 or 600 times a second. I ran tests of my original code against std::hash_map ...Show All

  • Smart Device Development how to call a control's event?

    In my form_load function; I want to call private void comboBox1_SelectedIndexChanged(object sender, EventArgs e) { } how to do that Thank you So you want to call that function from your form’s constructor without explicitly raising the event that causes that function Does it use either the sender or e values being passed in If not it is as simple as: comboBox1_SelectedIndexChanged(null, null); Otherwise you may want to pass in a reference to the calling object and an empty EventArgs object ala: comboBox1_SelectedIndexChanged(this, new EventArgs()); Does this work for you ...Show All

  • Visual Studio 2008 (Pre-release) Hide inactive buttons

    By default, buttons with an inactive command are gray. Is it possible to hide them instead Can also set visibility to 'Hidden' which will hide the button but hold its place in the UI (so stuff won't shift). A note on usability however, it is preferable in most situations to 'grey out' a disabled button, especially if it is part of your main user controls, because users get confused when things are there sometimes and not others.  My approach generally is to set opacity to .3 and disable the functionality in the code behind. Have a nice day ...Show All

  • SQL Server Replicating Schema Changes

    Hi there, I'm using Sql 2005 merge replication and I have noticed something, I'm not sure if this is true or not:... My publication is set to replicate schema changes (replicate_ddl = 1). Now, I have noticed that schema changes are only replicated if the current snapshot is valid. Is this right If so why My next question carries on from the first. If I'm about to run a TSQL script on my publisher that will add a column or two to a published table, how do I ensure my snapshot is valid inorder for the ddl changes to be replcated Should I be using: EXEC sp_mergearticlecolumn @publication = <publicationname> , @article = <article name> , @force_invalidate_snapshot = 1 , @force_reinit_subscriptio ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Calculating normals for large mesh with no vertex to triangle info

    I have a mesh of 100.000 triangles where I need to calculate the normals for the vertices. The datastructure, I am using, does not point from vertices to triangles, but only the other way arround. I therefore defined my vertex normals as the sum of the triangles using them, weighted by the triangles size. I simply set all vertex normals to zero and then run through my triangles (when running through them anyway for some other task) and add a triangles normal (weighted) to the vertices it uses. The I run through all vertices and normalize the normals. This is suposed to give me a valid normal for the vertices. I am not much liking waht i see though. The entire terrain is filled with little pyramids. Light ones and dark ones. When I ...Show All

  • Visual Studio 2008 (Pre-release) certificateValidationMode="ChainTrust" ?

    hi, unless i do not set certificateValidationMode = " PeerOrChainTrust " i get a security error .. the default certificateValidationMode = " ChainTrust " does not work , however the issuer of the certificate is in the trusted root certification auhtority (local computer and current user) .. how is that thanks Rajeet, Are you saying that cert revocation is checked no matter how revocationMode attribute is used Or is it only that you described the default situation, since revocationMode is defaulted to "Online" I was living under the impression that certificateValidationMode="ChainTrust" checks the cert chain, but does not validate the ...Show All

  • Visual Basic former issues, revisited: FileSystemWatcher

    My understanding of the FileSystemWatcher is that it can only watch a single directory, and either one file type or all file types (nothing in between). If that is true, I am looking at a different approach, if it is not true, perhaps someone could expand my limited knowledge. In short, here is what I want to accomplish. I have big files being uploaded to our FTP server (located in our office), by various speed IP’s (including dial-up) to over 30 unique folders, and I want them swept into a central location. Obviously I have to be concerned about whether the files have completed their upload before they are moved. I was thinking about an app that has a timed event to check all of the files in each named directory for the “da ...Show All

  • SQL Server Partition Slice Property

    I'm having trouble processing a partition that has a slice property selected. My data is partitioned on a montly basis, hence the slice is along the lines of [Date].[Date Hierarchy].[Month].&[200607]. When I do process index or process full, it fails. Iget the following error: Error: The script threw an exception: Errors in the OLAP storage engine: The slice specified for the Half Year attribute is incorrect. Errors in the OLAP storage engine: An error occurred while processing the indexes for the Viewers 200607 partition of the Viewers measure group of the Viewing cube from the BDW database. I didn't type the mdx myself, just click and drag from metadata pane. Anyone know why this might be happening Thank. Rahil ...Show All

  • Visual Studio Team System Migrate Team Fundation Server 180 Trial

    I need migrate my Team Fundation Server 180 trial for a final product. This is possible as it is the procedure In place thanks Full instructions on upgrade can be found in the online documentation here: Team Foundation Server Upgrade Types . Information specific to upgrading from the Trial edition to Full edition is here: " How to: Upgrade from Team Foundation Server Trial Edition ." Hope this helps- Cheers, Adam ...Show All

©2008 Software Development Network