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

Software Development Network >> Allen Razdow's Q&A profile

Allen Razdow

Member List

GLutz78
Oscarfh
i.i
RyanB88
Carl Daniel
Alastair Q
J M B
Zero_
danilomunoz
Preston Moore
Jigar_Patel
bhmsaad
Vitalijus
JPC16
Justin Voshell
Cell_PT
dr.acv
barkingdog
Sigfuss
korayko
Only Title

Allen Razdow's Q&A profile

  • Game Technologies: DirectX, XNA, XACT, etc. How do I next GameComponents?

    Hi all, I can drag my game components into my game using the visual designer, but I want one of my components (Menu) to accept other components from the same library (Menu Items). I can see my game component library section in the toolbox when I'm on the visual designer for my Menu but unlike the Game, I just see "There are no usuable controls in this group.", blah... Has anyone got this working Is there some nuance of MSVC# Express / GSE I'm missing Kind Regards, James What you are trying to do is technically possible, but not worth the effort. If you are really interested, check out the System.Windows.Forms.Design namespace. You will have to make a "Designer" class tha ...Show All

  • Visual Studio Team System Werid problem with the addition of data sources.

    I inherited a bunch of webtests that use a datasource which access a csv file. When i created a new web test and tried to add the datasource which access the same csv file (using the extact same connection string as used in the previous web tests), initially i didnt get any files in the "choose Tables" dialog window. After some trys, i started getting the file in the "choose tables dialog. However, when i try to run the test, it complains that "Could not access table <table name> in data source. Yet i can run the older tests without any problem The steps i followed to add the data source include Click the add datasource button for the webtest Choose Microsoft Jet 4.0 OLE DB Provider as the OLE DB Provider C ...Show All

  • Visual Studio Tools for Office SDI app challenge (custom task panes)

    When using custom task panes in SDI apps like Word you run into a problem with instantiating and Ribbon synchronization. As Martin showed in Barcelona (TechEd) you need some kind of document wrapper class to keep track of open windows, and create, synchronize and close CTPs within a collection of document-objects. An official sample should be on its way as I understand. Is that true If its “far away” has anybody a sample to share Thanks, Hi, I am also very keen to know more on this subject! Where can I find this “core user documentation” I am especially interested on how to do objects/window management: I would like to associate an object A with its corresponding window… your idea o ...Show All

  • .NET Development Timeout expired. the timeout expired prior to getting the connection from the pool.

    Hi, I have developed a web application which works fine but sometimes the web applications hangs with the following message Timeout expired. the timeout expired prior to getting the connection from the pool. The application is developed in .net framework 1.1 and is running on IIS 6.0 . The database is oracle 9i. We are using Enterprise library application blocks for maintaining the database connections. So ideally connection leaks should not occur. This error occurs when a new user tries to log in to the application. I am not able to find any solution regarding this problem. Help regarding the same will be greatly appreciated. Thanks, Anzrul Hi ! I have the same problem using asp.Net 2 ...Show All

  • SQL Server Multiple Publication on the same database

    Hello, I want to create one more publication on a database (SQL Server 2005) that is already a publisher and has subscribers. The subscribers of the second publication will not be inserting new records so I will mark the articles (tables) as download-only. Is there anything extra that I should take into consideration Are there any side effects of this process Thanks in advance. SilentOceaner. You can refer to a similar thread to see if it helps: Merge and Transactional from the same server http://forums.microsoft.com/TechNet/ShowPost.aspx PostID=768828&SiteID=17 Note you are also allowed to have 2 merge or 2 tran publications on the same db/table. Thanks, Zhiqian ...Show All

  • Visual Studio Team System TFS: Source Code

    HI, I am using TFS/TS 180 days trial version and created a team project on TFS Server. I am unable to create a source code workspace. i logged into my machine as \domainuser and have [Sever] Team Foundation Administrator rights. i also have admin rights on TFS server in the same domain. thanks! Sneh Do you have rights on your local box If you are apart of Team Foundation Admin Group, on the server level, you should have perms. Thanks, John ...Show All

  • Visual Studio Chart Objects in VB.NET

    Hello, I'm trying to make a simple X-Y plot using VB.net. I note that it doesn't seem to come with any obvious chart, graph or trend objects like VB6 used to. What is the simplest way of including a chart object in my VB.net code (there is no licence for Excel on the machine so it would need to be an object that I could install separately.) At the moment I'm using ChartFXLite which is OK but I'm sure there must be a basic VB.net equivalent already in there somewhere Anyone Thanks Andrew Smith ...Show All

  • Visual Studio Express Editions textbox and the user

    how do i get the user to enter text in the textbiox, and use that value to use the msgbox to confirm its correct. Public Sub TextBox1_TextChanged( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles viewart.TextChanged viewart.Show() newtext1 = viewart.Text If newtext1 = "" Then Exit Sub End If MsgBox(newtext1) with this as soon as i press 1 character the msgbox shows. not sure I follow however why are you implementing the TextChanged events remove them...they are not needed from what I have seen. What is "dfo" What exactly are you trying to do You should place the validation on the other form, not from the caller form....thats not ...Show All

  • Smart Device Development Which file to use to insllat NETCF 2.0 on PPC 2003 SE (4.2) on Intel processor?

    Hi I have some problems to deploy the .NetCF on a windows mobile 2003 second edition (4.2), I installed the .NetCf 2 SP1 on my computer, I've tried to install manually the cab files (NETCFv2.ppc.armv4.cab) under "...Microsoft Visual Studio 8\SmartDevices\SDK\CompactFramework\2.0\v2.0\WindowsCE\wce400", but when I run it. It displays "The version of CF is not for this device" Which file to use to insllat NETCF 2.0 on PPC 2003 SE (4.2) on Intel processor Thans in advance After several tries, I installed then file "NETCFv2.wce4.ARMV4.cab" located "....Microsoft Visual Studio 8\SmartDevices\SDK\CompactFramework\2.0\v2.0\WindowsCE\wce400\armv4" the ins ...Show All

  • Visual C# key up event`

    I have a basic key up event so when you hit enter on the keyboard it will send the data to a remote server, but everytime you hit enter there is a beep the code runs fine but how do I stop the beep thanks its in the textbox control private void Login_KeyUp( object sender, System.Windows.Forms.KeyEventArgs e) { if (e.KeyCode==Keys.Enter) { if (txtlogin.Text=="") { lblinfo.Text = "Enter login name"; return ; } else if (txtpass.Text=="") { lblinfo.Text="Enter password"; return ; } else { main.send_data("01," + txtlogin.Text + "," + txtpass.Text); } the code runs fine its the beep that drives me nuts and have no Idea how to get rid of ...Show All

  • Visual Basic Adding a default excel file to project

    Hello. I'd like to add a default Excel file to my project. How should i go about doing this I can add a file to resources, but cant figuere out how to open or save from code. I can also add it to solution but same problem. What is an effiecient way of adding and distributing files with your project. Any help appreaciated. zargblatt, According to your description on this problem, I cannot understand your demand as well. What is your added excel file works for in the prooject I wonder why you would like to add the excel file but not other files There is an article titled Create an Automation Add-In for Excel using .NET in the link below, however, I don't know whether it is exactly what you nee ...Show All

  • Windows Forms change content/using tabs

    This is an example of what I'm trying to do. So first you have the first (click for image)situation. Then you click "Update" and you get second (click for image) situation. My question is How Thanks Create user controls for each of the interfaces. The button click should look something like this. private Interface1 usercontrol1 = new Interface1(); private Interface2 usercontrol2 = new Interface2(); form_load (or after InitializeControl) { usercontrol1.visible = true; this.rightPanel.Controls.Add(usercontrol1); usercontrol2.visible = false; this.rightPanel.Controls.Add(usercontrol2); } button1_click { usercontrol1.visible = true; usercontrol2.visible = false; } button2_click { ...Show All

  • .NET Development [[ Strong name validation failed for assembly ]]

    First of all, I am sorry for posting this two times. I have posted this in MSDN Forums Visual C# Visual C# General but it seems that no body is interested in this subject or i have posted in the wrong forum. I have used ExeShield to protect my application. ( http://www.exeshield.com/ ) - There is no problem when i try to protect Application writen in C# .NET 1.1 - But when i try to protect Application writen in C# .NET 2.0 i get this error Strong name validation failed for assembly 'c:\lab\xshld875.tmp'. The file may have been tampered with or it was partially signed but not fully signed with the correct private key. Any help on how to disable the Strong Name Validation Kind Regards ...Show All

  • Smart Device Development Loading Properties from config file.

    Hello, I have a several window form with pictureBox, comboBox etc.. Can I load the properties for pictureBox (Image and name) or collection for comboBox from a config file when the application starts in pocket pc. Any ideas or help will be appreciated. Thanks..... I got it working here is for anyone if want to use... Bitmap bmp = new Bitmap("C:\\cat.jpg); pictureBox.image = bmp; Thanks.......... ...Show All

  • Visual C# using CodeDOM to generate for ( using block in C#.net )

    Hello all , how to generate for using block in codeDOM. sample is using (DbConnection dbcon = db.CreateConnection()) { // code } Please help me. thanks . The using statement is not supported across languages and therefore can not be generated directly by the CodeDOM. Instead you have to use a snippet. That means you have to know the language you're compiling against. To use a snippet use the CodeSnippetStatement . new CodeSnippetStatement("using (DbConnection dbcon = db.CreateConnection())"); new CodeSnippetStatement("{"); ... new CodeSnippetStatement("}"); Noti ...Show All

©2008 Software Development Network