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

Software Development Network >> Norbert.Bender's Q&A profile

Norbert.Bender

Member List

Alan Robbins
Doron70
AK_00
RameshK
p.cosmos
GaryMcC
Janetb
techlist
Jamie Thomson
Rajesh Kumar Revelli
Robbin AB-SYSTEMS
Matt Lin
Simon__
michaelleewebb
Maruti
hrubesh
johnsontroye69
Todd Schroeder
perun
http://www.ilkon.com
Only Title

Norbert.Bender's Q&A profile

  • Windows Forms How can i launch web pages in windows forms

    How can i launch web pages in windows forms Hi Place an Active X Control named AxWebBrowwser on your form and call the NavgateURL Method, will browser a web page on Windows Form. Add a control to the tool bar from Com Component Tab "Microsft Web Browser" and place it on the form in VS 2003, In VS 2005 this control can be found in the last row of the All windows Form Tab in the tool Box. ...Show All

  • Windows Forms Force a Click onto Another Control?

    I'm looking for a way to tell a control that it has been clicked on at a certain location in code. I figure there would be a way to do this with a Message, but can someone tell me how Thanks. There are two easy ways you can do it... first, you can call the PerformClick() method on those controls that support it: myButton.PerformClick(); Or you can manually call the event handler that handles the Click event of the control: myButton_Click( null, null ); You may want/need to change the arguments being passed in (especially the first (sender)) if you require either of them in the event handler. ...Show All

  • Visual Studio Express Editions something is wrong with my VB Express edition

    Maybe somebody can explain to me why in the Help... I was able to copy and try the code source of some examples and now all code source of them are deleted. Thank you a lot. Well there may number of reasons for this to happen. 1) did u save the sample as a project . 2) How did it go.... i mean u copied and tried some code samples and then u closed the visual express and then afterwards when u opened it they r gone. May be u must have saved the codes and have to open it ... Look for the project file in the location of my doucments\visualstudio\projects folder. IT has to be there. 3) Maybe u r pron to virus attack ... Do u have the Anit virus with you.... There r lot of viruses on the net . Please be more ell ...Show All

  • Visual Basic FolderBrowserDialog question

    I have this form that it contain: - Browse File Dialog - SaveFileDIalog I want that with SaveFileDialog it merges all GIF Files of the SelectedPath of BrowserFileDialog in the FileName of SaveFileDialog with extension BIN . I set the filter of SaveFIleDialog Binary Files | *.bin How can i do For merging files i have this code For Each item As String In ListBox1.Items ' Legge tutti i bytes dei file My .Computer.FileSystem.WriteAllBytes(SaveFileDialog1.FileName, My .Computer.FileSystem.ReadAllBytes(item), True ) Next   But as item i want the GIF Files contain in BrowseFileDialog.SelectedPath For now my code is this Public Class Form1 Private Sub Form1_Load( ...Show All

  • Visual Studio 2008 (Pre-release) XBAPs = This application type has been disabled.

    Whenever I try to run an XBAP I get "An error occurred in the application you were using", with details: "This application type has been disabled." Any ideas on how to "enable" it This is with .NET Framework 3 June CTP, IE7 Beta 3, Windows XP SP2. I was also getting the same error "This application type has been disabled" with IE6 before I installed IE7. Thanks... Error still occurs with RC1. If I log in as another user, XBAPs work ok. So I guess it's something user-specific, any idea what ...Show All

  • Software Development for Windows Vista MFC Project(C++) vs compilation error with IDI_SHIELD, BCM_SETSHIELD, Button_SetElevationRequired and friends

    Probably you guys already solved this trouble in your project but I'm still looking for the appropriate .h to be able to add the shield icon to my buttons. Is there an VS update to install or something Thanks in advance! Hi, I just found it in header CommCtrl.h of the Vista platform SDK . Wolfgang ...Show All

  • Visual Studio Team System Some Problems with Data-Bound web tests

    I have a couple problems/questions with data-bound web tests: Scenario: I have recorded a web test that runs through about 25-30 pages. After the recording, I bound the account creation form to a simple single-table database that has 4 columns (id, firstname, lastname, and email address). That table has 1000 random entries in it. All I really wanted to do is run a simple load test where I have a constant user count of 1, and run it for 30 minutes. What I was hoping was the load test would essentially just run through the table sequentially, creating 1000 users (or how ever many would get created in 30 minutes). Unfortunately the load test doesn't seem to move sequentially through the db table. So I then figured out that I could ch ...Show All

  • SQL Server ---PULL replication with SQL Server Express, it is possible whether or not?---

    Hello! Question of such plan, to documentation to Microsoft SQL Server 2005 Express Edition it is written, that the given product supports only PUSH replication, however in his{its} structure there is an agent replmerg.exe which description says: replication merge. Synchronization means, that the agent of merge transfers changes from the subscriber to the publisher, and then transfers changes from the publisher on the subscriber … And so the question if this agent is present at this edition, whether that is possible to adjust manually his{its} call, or through Windows the agent, for realization PULL replication or it is impossible and for what reasons Thanks. And why I cannot use instea ...Show All

  • SQL Server SQL Server XE Limitations

    Hi, As SQL Server XE can run on one PC maximum, does it mean that it can't support multi users I mean could it be installed on one server and to be used by multiple users connected to server with their PCs thanks in advance The mechanics of how SQL Express determins CPU count and uses CPU is explained in the KB at http://support.microsoft.com/ kbid=914278 . Multiple users can all access a database stored on a central SQL Express computer as long as: Remote connections are enabled. (As pointed out already by Glenn) The users have permission to the database in SQL Server. Regards, Mike Wachal SQL Express team ---- Mark the best posts as Answers! ...Show All

  • Visual C# converting a string to date

    I have a string that contains the a date in the format of "dd/mm/yyyy". I want to convert this to a datetime MyDate Can anyone show me the best way of doing this. hi dear friends I think there have to be some sulotions to make a program independet from the culture of the computer which runs the application. I had this problem with the numbers also. because the users that use my program might use different kind of cultures and I use thread to solve it but I am not sure it is a best way or not. regards ...Show All

  • Windows Forms ResX en-US static class gets blown out

    Hello localization experts, I'm trying to set up a multi language/multi culture resource winforms app... Why is it that the resource codebehind static class gets wiped out when I name a resx file with a country-Language code, i.e. AnyResource.en-US.resx, AnyResource.fr-FR.resx, etc...  I noticed it creates a corresponding folder such as "en-US" along with a satellite assembly, but why do I have to lose the codebehind class.  I want to use the public properties from the ResXFileCodeGeneratorEx class instead of calling getString("hardcoded strings"). Thanks for any help! John ---------------------------------------------------  Reference ------------------------------------------------ ht ...Show All

  • Windows Forms retrieving data from a data grid field

    I have an application where I am loading a data grid from a view. I then want to be able to query a field (or row) that a user clicked on and determine either the row that was clicked on or the field. The idea being is that the record key is in the first column. I then want to return the value of the first field that is on the record that was clicked regardless of which field is clicked on for that row. I then want to return the value of the key field to another field on the form. I will then call another program and pass it the field returned from the data grid. Can any one give me some sample code on how to return this value of the first field Any help would be greatly appreciated. Thanks! - Eric- ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. 3d cube plus basic shader rendering problem.

    Here is the code, i know it's full of improper techniques as I am currently trying everything to make it work. MDX 1.1 in C# express. Trying to draw cube with texture using .fx file. Very little of the texture renders, can't see any outlines or primitives rendered on the cube. The parts that do render flicker so i know i am "looking" at the cube.. Changing the number of primitives and primitive type renders different portions of the texture but still all wrong. Cube code: primitive = new CustomVertex.PositionNormalTextured[36]; Vector3 topLeftFront = new Vector3(-0.5f, 0.5f, 0.5f); Vector3 bottomLeftFront = new Vector3(-0.5f, -0.5f, 0.5f); Vector3 topRightFront = new Vector3(0.5f, 0.5f, 0.5f); ...Show All

  • Visual Studio Express Editions How do I delete changes

    I pasted code into a project from a web site and could not compile it. When I could not resolve all of the errors I closed the solution without saving anything. But when I re-opened the project, there was the new code I did not want. I tried the undo button but its buffer ran out before the removal was complete. How do I exit without saving Normally when you exit Visual Studio it asks if you want to save changes IF you have files that are opened and modified. If it did not ask then it means that the changes were already saved. This happened when you tried compiling the project because compiling the project requires all files to be saved on disk. ...Show All

  • Software Development for Windows Vista batching : IPendingWork.Commit

    MSDN Says : " The workflow runtime engine calls the Commit method when its semantics dictate that the pending work in the work batch should be committed . When it reaches a commit point, the workflow runtime engine calls the Commit method on each IPendingWork object in its work batch; the workflow runtime engine passes the Commit method the collection of items associated with that IPendingWork object. Either all of the work in a batch succeeds or none of it succeeds. You should throw an exception if any of the work items passed to the Commit method in your implementation cannot be committed. Depending on your implementation, you may want to perform some rollback in your Commit method if it cannot commit its work items. If th ...Show All

©2008 Software Development Network