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

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

grnr_r

Member List

Julia Semenova
Dr. YSG
Mauricio hevs
Ofir Epstein
Troy L
jomunoz
Wolfgang12345
Lawrence Parker
centexbi
naiad
Floubadour
Ecrofirt
kewpcg
skuehner
Sergio Ortiz
Igor L
DQM
pugs
Seethar
BBPowers
Only Title

grnr_r's Q&A profile

  • Visual Basic Label not visible on form when Text property is blank.

    I blanked out the Text in design time since I only want it to display when a button is clicked during run time. However, I wanted to relocate the label on the form and there's no indication of where it is during design time. Is there any way to display the label on the form and access its properties in the Properties window Thank you. I found the down arrow in the Properties window that lists all the controls on the form -- don't know how I missed it before. From there I can change the Text property temporarily until the label is relocated to where I want it. ...Show All

  • Software Development for Windows Vista Questions on managing a large number of users

    I have a question on whether CardSpace can be used in the following scenario. Just wondering if anyone can point me in the right direction. I have a system that will employ approx 250 laptops and approx 2500 users. I want to use CardSpace to store information about each user and provide the authentication for the users. For the most part, each user will only be using 3 different laptops, and each laptop will have a total of 100 users. I would like to be able to store all the cards on a main server, and have the server download the cards to the laptop as needed. I also have several fields on the card that are expiration dates, making the card invalid. Can something like this be done in CardSpace Thanks for the help, Joe ...Show All

  • Windows Forms possible changes to Computer settings

    I think that my daughter may have altered the computer settings. I have Guardian software and it did not record for 1 day. I also noticed that I has a bunch of Security Event Logs (special priveleges to new logon, A trusted logon process registered with LSA, etc.) Also, I think there may be new drivers Is there a way to scan for system changes This forum is devoted to developers and specific questions regarding creating windows applications. I suggest you try the Microsoft Support Site in researching your problem. Good Luck. ...Show All

  • Visual C# How to check if a file is writtable?

    I used : if ((File.GetAttributes(file) & FileAttributes.ReadOnly) != 0) gave me error, saying The given path's format is not supported. if the file is Archive then the file is writtable. FileAttributes fa = File.GetAttributes(fileName); if (fa.ToString() == FileAttributes.Archive.ToString()) MessageBox.Show("Writtable"); ...Show All

  • Visual Studio Express Editions How to use more than one table in a form

    I have created a successful dataset without the use of VB 2005 wizards, including relationships and the ability to add/modify/delete and navigate records. I am just wondering (using code) how it is possible to use two tables in one form. Example; Tables: PERSON (Person_Id, Forename, Surname, Age) JOB (Job_Id, Job_Title, Location, Person_Id) How could I be able to view the two tables in the same form, and do such procedures like record navigation, record editing, etc. Help would be much appreciated, thanks. well, to put it a little more simpler, in order to achieve exactly what i want, inside the "ds.tables()" bit, should i put the name of the table/tables i want inside the brackets instead ...Show All

  • Smart Device Development how to make the program run at backgroud?

    how to make the program run at backgroud my develop platform is c# .net cf 2.0 thank you Simply create and start console application and it would run in background. ...Show All

  • Visual Studio Pin recursively

    Can I pin files in a project recursively Will these command line pin all files in sub-directories as well ss Pin $/EXCEL/PIVOTTBL/*.* -Vlbeta4 ss Unpin $/CEDAR/SPECS/*.* Also, how is it done from the GUI ...Show All

  • .NET Development Update a access db's with VB express

    I have an access 2003 db's  but no of the methods of the help index can insert an element to the database. I've tried with data adapters. The dataset of the db's try to update but no can do. help   following the code Dim lect As IDataReader = Me .SistemasDataSet1.CreateDataReader sistemasDataSet.EstadisticasDataTable.Item(1).Rows.Add( "otros" ) 'sistemasdataset.tables("nombretabla o el indice de la tabla).row(i).colum("importe").tostring() + suma Me .EstadisticasTableAdapter.Insert( "joya" , "no ug" , "12 / 12 / 2006" , "tigre" ) other code on other button   Dim dt As New DataTable( "tblDemo" ) Dim coche As DataRow Dim i As Integer Dim j As Int ...Show All

  • Visual Basic best way to store two different types of data in a list

    I am writing a command line utility that I want to use to calculate the % of space used by file type. I am wondering if anyone can reccomend to me what is the best way to store the data Basically I want to store the extension of a file name, and link that to a size. As the size of each file is determined, the list will be searched for the appropriate file extension and the size of the current file will be "added" to the appropriate "file extension", in addition a running total will be kept. The file extension would be stored as a string and the file size as a long. At the end the running total will be used to assist in calculating the percentage each file type is using. I don't want to have to predefine h ...Show All

  • Visual Studio Express Editions Datagrid View

    Morning all, need help with the datagridview component. I have 5 Columns: QTY / ITEM ID / DESC / UNIT PRICE / TOTAL. How can I make this do the calculation QTY*UNIT PRICE and put the result in the total column, Then add all the totals from the datagridview and display in a textbox on form1. I cant get the total of the total column to display in the textbox: I have a few rows of data like: Qty Price Total 1 22.00 22.00 2 5.00 10.00 I would then want textbox1.text to display the total for all the total column. (32.00) ...Show All

  • Visual C# How to Write to SD Memory?

    Hello, I need to write an application that writes to a register inside SD (Secure Digital) memory. The SD memory is attached to the PC through a USB card reader. I do not know where to start. I checked msdn documentation, but I got lost for a long time. Please help me get started, with a couple of pointers. Thank you. T.I. Thank you very much. Windows XP can access SD memory, without additional drivers, so I guess drivers are somewhere in XP. I do not know if the built-in functionality provides complete control of the SD memory. ...Show All

  • Windows Forms Starting a .NET Application from .NET Windows Service

    Hi there, I have been trying to strart a bunch of instaces of an application (XYZ.exe targets framework v1.1) from a service (also ABC.exe targets framework v1.1). Using ProcessInfo ( e.g. System.Diagnostics.Process.Start(ProcessInfo pi or String file)) object. This works alright until the count is less than or equal to 24 but as soon as I try to start 25th process I get the following error in the event viewer: The description for Event ID ( 0 ) in Source ( .NET Runtime ) cannot be found. The local computer may not have the necessary registry information or message DLL files to display messages from a remote computer. The following information is part of the event: .NET Runtime version 1.1.4322.573- XYZ.exe - Common Language ...Show All

  • SQL Server Assembly not found in SQL Catalog for VSS

    I'm trying to connect to VSS from my CLR procedure. I'm getting this error.. Assembly 'microsoft.visualstudio.sourcesafe.interop, version=5.2.0.0, culture=neutral, publickeytoken=b03f5f7f11d50a3a.' was not found in the SQL catalog. I added reference to VSS dll by opening the project file in notepad, as I couldn't right-click and do an add reference. Here's the code... using System; using System.Data; using System.Data.SqlClient; using System.Data.SqlTypes; using Microsoft.SqlServer.Server; using Microsoft.VisualStudio.SourceSafe.Interop; public partial class StoredProcedures { [Microsoft.SqlServer.Server.SqlProcedure] public static void PrintToday() { try ...Show All

  • SQL Server How can import mdf file to mssql 2005

    Dear All, I have a mdf file and want to import the file to mssql 2005, But i can't find the function when i right click the database name in SQL Server Management Studio. What should i do Regards, Ricky hi Gargi is very right, I would like to Add, the thing is you need to attached the .mdf file as well as its log file with that mdf file. (this is the process of attaching, there is no direct process of importing a mdf file) Regrds, Thanks. Gurpreet S. Gill ...Show All

  • SQL Server Restoration of publication database backup

    When I tried to restore backup of publication database, time taken for restoration is too long [ 4 hours]. The actual database restore takes only 20 minutes but the stored procedures used for cleanup replication takes the remaining time. Is the issue related to my environment or the cleanup replication stored procedure Sound like there isn't problem with the restore. If the cleanup (which is needed to ensure consistency) takes a long time, you might want to check to see if there is locking/blocking that can be avoided. Please search msdn for the kb on how to avoid blocking/deadlock/etc. ...Show All

©2008 Software Development Network