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

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

tjokiest

Member List

Rajeev Goel msft
apuyinc
ujjubee
uclimng
Darko01
Randy Eppinger
Roland Kamsika
Rob Lynch
Chun Xiong
Dave__Dave
Alkiris
Terence Curd
mikehikes
Lord Steve
Zeeshan Ali changazi
mtechsup
TV32246
Timothy.J.Cooper
vishal868
mrdenny
Only Title

tjokiest's Q&A profile

  • Windows Forms Customize Tabpage

    Is there a bind a inherited tabpage to a inherited tabcontrol (the designer uses allways the standart tabpage...) Regards Hansjorg http://www.dotnetrix.co.uk/tabcontrols.html --> TabControl using custom TabPages. ...Show All

  • Windows Forms Adding rows to a databound DataGridView

    Does any know how to programmatically add rows to a Data bound DataGridView. 1. the .rows.add method doesnt work because its for unbound datagridviews Currently i am calling the addnew() method of the BindingSource connected to the DataGridView but this solution gets me into much more trouble. Any other way out www.codeplex.com/dragdropgrid ...Show All

  • Microsoft ISV Community Center Forums Strange Error

    I have an Access 2002 SP3 DB and on occasion it seems to corrupt and all forms are no longer accessable any 1 else had this problem i am unsure to what causes it so cant fix it. i open it and it reports a corrupt error offten after a change to some code has been made and saved i always test before before closing so i know it works fine then on next load it corrupts and the MDB file is reduced to only half its original size. any help or advice on this would be much appreciated sorry for the lack of information it seems very random and does not happen a lot so far 3 times in the last 2 month.   Thanks I have had no probl ...Show All

  • .NET Development Where to start? confused....

    Newbie here... I have a split Access database, and want to use SQL Server for the Back-end (locally, for now), but can't get it to work. I've installed (without any problem) the June CTP SQL Server 2005 Express, along with the Express Manager.. I can get into the configuration manager fine, but don't know what to do once inside... When i start the express manager, it asks for the server name... i've tried every name i can think of, but none work. is it the computer name is it the instance name of SQL Server is it just "(local)" how do i get in do i need to get in when i try to use the upsize wizard in access (2003) it asks me for the server ...Show All

  • Visual FoxPro VFP9 printing issue with multiple detail bands and group subtotals and/or summary totals

    I have a report with one group and a summary total. Adding a new detail band, a big new feature added by VFP9, lead to incorrect totals/subtotals. I am using VFP9 SP1, behavior80, but is the same with behavior90. Steps to duplicate: 1) Run this code create table PRINCIPALE ;   (AGENTE     C(2), ;    N_DOCUMENT C(5), ;    D_DOCUMENT D, ;    TOTALE     N(5), ;    CHIAVE     C(3)) index on AGENTE+N_DOCUMENT tag "ORDINE01" create table DETTAGLIO2 ;   (CHIAVE     C(3), ;    D_SCADENZA D, ; &nbs ...Show All

  • Windows Forms How to assign a ARGB Color to a brush

    Hi, I'm doing some custom drawings in a form and i want to fill a rectangle with a color choosed by the user. The color is stored in a database by it's ARGB value. How do I create a custom brush with an ARGB Color. Thanks Serge .... Case CeduleObjType.ObjDetailRectangle vPen.Color = vCeduleObj.Color pGraphics.DrawRectangle(vPen, vCeduleObj.ScreenX, vCeduleObj.ScreenY, vCeduleObj.Width, vCeduleObj.Height) pGraphics.FillRectangle(Brushes.AliceBlue, vCeduleObj.ScreenX, vCeduleObj.ScreenY, vCeduleObj.Width, vCeduleObj.Height)   Ok, I can pass to the method FillRectang ...Show All

  • Windows Forms Work with DWG and PLT files from .NET?

    Hello, I am trying to find a component, control, or assembly for .NET that will allow me to work with DWG and PLT files in a Windows.Forms application.  I have come across a number of ActiveX controls and the like, but I was wondering if anyone knows of a .NET native solution Thanks, Joe ...Show All

  • .NET Development Problem with registry

    Hi, Is there class(es) to create/remove a user to access registry I have a problem to register .NET dll for COM interop. I got the "accessed denied" when I using regasm or Assebmly.LoadFile() on window 2003 because the user doesn't have administrator right. I found that happens in HKEY_CLASSES_ROOT\CLSID and It works If I add a user manually in HKEY_CLASSES_ROOT\CLSID. I think I can solve this problem if there is a class to create/remove user thru the code. Currently the dll is registered by small program created by .NET 1.1, C# and I can use .NET 2.0 if there is a class for this. Thanks in advance, reneesol ...Show All

  • Windows Forms Problem with UserControl and form designer

    I am using VS2005 Beta 2 If I create a UserControl using the Windows Control Library template and then attempt to use it in a hosting window (i.e. a normal windows forms app) I get an error when the control is dropped onto the host form from the toolbox:- Failed to create component 'usercontrolname' Xml Exception, An error occurred while parsing EntityName, Line 2, position 51 If I declare and instantiate the control directly in the host form's code (VB) it works fine. For some reason the form designer will not display the user control when placed onto a host form. The control itself can be designed as normal. The control project ...Show All

  • Visual C# Syntax Error in Update Statement

    Dear All, I had encountered Syntax Error in Update Statement when I execute the following code. private void UpdateNewPwd( string EmpID, string NewPwd) { string strUpdate = "Update Users SET Password = '" + NewPwd + "'" + " where EmployeeID = '" + EmpID + "'" ; string connectionString1 = "Provider=Microsoft.Jet.OLEDB.4.0;Data Source=" + System.Windows.Forms. Application .StartupPath + "\\Local_Database\\DryEtch.mdb;User Id=admin;Password=;" ; OleDbDataAdapter dbAdapter = new OleDbDataAdapter (); OleDbCommand dbCom = new O ...Show All

  • SQL Server [Transfer SQL Server Objects Task] Error: Table "XXXXXXX" does not exist at the source.

    Does anyone know what could be causing the error on Transfer SQL Server Objects Task   I tried to develope a SSIS project in the Business Intelligence studio to transfer table between databases on the same server.  However, I have been getting the following error: [Transfer SQL Server Objects Task] Error: Table "XXXXXX" does not exist at the source. Is there a setting that I need to change to make this work   Thank you for your help.   Yes.  It is in there.  I can see it in the selection list after I select the database.  Thanks. And Transfer SQL Server Objecd ...Show All

  • Windows Forms DataGridView & Custom cell painting

    I'm creating a schedule using a datagridview.  The cells in the grid need a lot of special behavour so I created my own Column and Cell classes.  In the Cell.Paint method I draw the cell text in various colors, draw images and lines, depending on data values. My question is this:  What is the correct order to draw parts of the cell using the DataGridViewPaintParts   Does it matter   At present, the display is horrid - sometimes the cells are transparent (I can see what's underneath the application) and the text is scrambled.  A really good example of how to paint a cell would be great! Thanks I acheiv ...Show All

  • Visual Basic Problem with datagrids on multiple monitors

    Hi all, I hope someone can tell me what I might be doing wrong. Here's the background: I'm developing an application with VB.net 2002 (with an Access 2000 back end) that uses dual monitors. One monitor is a touch panel where the user will make selections. The second monitor is a wide LCD screen that will be mounted on the wall above the touch panel and will display information based on the user's selection. I'm using a listbox on the touch panel from which the user will select a person's name. The big LCD needs to display information related to the touch panel selection in a data grid. Currently I have a dataset with mu ...Show All

  • Visual Basic barcode in vb.net

    hi all, i am using inventory system which is base on stock. i want to create barcode for each item through vb.net . can anybody help me in this favour m.a.khaleel hmm check this one http://www.planet-source-code.com/vb/scripts/ShowCode.asp txtCodeId=985&lngWId=10 I didn't try it but hope it does work for you happy coding Fareed ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. june sample issues

    it seems that when I run some of the samples a few of the device checks fail, and the program wants to switch over to a software device, if I remove this line of code if (caps.PixelShaderVersion < new Version(1,1)) return false ;   the sample runs but all the meshes have lost there textures, how can I fix this   Smacker wrote: I guess my problem with this is that when ever you make changes like this you lose a base of players with game creating, not everyone is willing to update there graphics card with every addition of new technology. Just a quick comment... it's ...Show All

©2008 Software Development Network