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

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

gifuran

Member List

dwshowtime
Matt Wyckhouse
iGattreX
Gandalf_The_White
TheMegalomaniac
msec
linley
ratlhed
Fylar
ibmTom
Razter
ExtremeShannon
Daniel Svensson
Mauro Rogledi
mr. robot
SeaFire
DragonsBlade
mark6960
birima
Sreepada
Only Title

gifuran's Q&A profile

  • Visual Basic password in access

    Hi! Happy new year  to all VB Guru out there my previous query was solved in a couple of days, I am stuck again, i am doing a project with access has a database and VB 6.0 has a front end. I want my database to be password protect i.e if any dblclick access file it must ask for a password. Can i link a password protect access file to VB if tried but error like worksheet file not found was thrown, can any VB GuRu out there let me know the steps in accomplishin the task. Also i want in my project to display mathematical formulas, has some fine guy know how to store mathematical formula( like sin2A + Cos2A=1 here '2' must be ...Show All

  • SQL Server Can't uninstall Reporting Services

    I need to reinstall Reporting Services but during uninstall I face the following error: "The setup failed to read IIsMimeMap table. The error code is -2147024893" Nothing seems to help with the problem. Regards, Ksenia I've got the same problem here unstalling the September CTP Reporting services - please do post if you found a solution, Thanks, Mike ...Show All

  • Visual C# UserScopedSetting, DefaultSettingValueAttribute, ApplicationSettingsBase: Help!

    I'm obviously overlooking something fundamental. I just can't get a class derived from ApplicationSettingsBase to work. Here's my settings class: using System; using System.Collections.Generic; using System.Text; using System.Configuration; namespace AppSettingsTest {     public sealed class Settings1 : ApplicationSettingsBase     {         [UserScopedSetting()]         [DefaultSettingValueAttribute( "Default" )]         public string Text1         {  &nb ...Show All

  • Visual C# hi

    hi , when i use datagrid and double click event how can i choose data from the datagrid that i want thx I used the same code given and got the correct results. For example: This code simplifies what you are trying to do. private void testPhaseDataGridView_CellDoubleClick( object sender, DataGridViewCellEventArgs e) { String MyString = this .testPhaseDataGridView[ "dataGridViewTextBoxColumn2" , e.RowIndex].Value.ToString(); MessageBox .Show(MyString); Make sure you enable the event "cell double click" which in turn creates the method, testPhaseD ...Show All

  • Visual FoxPro Resource File is Not Valid

    What would cause this error message When launching the program from a 2nd workstation, the user gets the error message "Resource File is Not Valid". The 1st user was able to login fine. Is this an access rights issue We tried deleting the foxuser.dbf & foxuser.fpt and logging back in. Thanks for the help in advance. This error is related to VFP runtime version on client computer. I have seen this error when client was trying to run apllication built with VFP 9 final with VFP 9 beta runtime files installed on his computer. The same situation with VFP 6 runtime files and VFP 9 app. ...Show All

  • Visual Studio Team System SMTP Server timeout on Alerts

    Ok.. in trying to get alerts working I have tried to troubleshoot why the TFS is not communicating with the smtp server properly. It continues to timeout. I have done the following to test.   Ran the following code from the TFS using the TFSSERVICE account as the from address with no problems both with UseDefaultCredentials as true and false and works just fine. http://blogs.msdn.com/psheill/archive/2005/11/22/495863.aspx Have also verified this through manually telneting to the SMTP server port 25 and manually entering the from as TFSSERVICE account. Have followed this thread as well... http://forums.microsoft.com/ ...Show All

  • Windows Forms How do I total columns?

    I need to show a report in a datagrid along with totals on groups. Q1. How do i total columns and display them Q2. How can I make the total rows accumulate in a grand total row Q3. Is it possible to show only the total rows and when the user clicks on the total row to show the detail rows 'above' the total row tia, Todd ...Show All

  • Windows Forms DGVComboBoxColumn gives ThreadStateException

    I'm having a problem when selecting cells in a DataGridViewComboBoxColumn.  Each time a cell is selected I see the following error: "DataGridView Default Error Dialog: System.Threading.ThreadStateException: Current thread must be set to single thread apartment (STA) mode before OLE calls can be made.  Ensure that you Main function has STAThreadAttribute marked on it. ..." Firstly, I don't use any Main() methods in my application.  I did try adding one with the suggested attribute, but it had no affect.  Does anyone know what this means Thanks, Nate Another note: After clicking OK for th ...Show All

  • Windows Forms Source Safe, IIS, and Apache

    Can Source Safe be set up to use Apache instead of IIS ...Show All

  • Windows Forms bind DataGrid to 2 dimension array

    i want to bind a DataGrid to a 2 dimension array whose entries are user define class and i want to modify the property of the class through the DataGrid in an easy way. any advice It is possible to bind the data grid to a one dimensional array. However, it is not possible to bind the data grid to a 2 dimensional array. Here is some code to bind to a one dimensional array: private void Form1_Load( object sender, System.EventArgs e) {  Foo[] arr = new Foo[3];  arr[0] = new Foo(); arr[1] = new Foo(); arr[2]= new Foo();   this .dataGrid1.DataSource = arr; } public class Foo { &nb ...Show All

  • Visual C++ LNK2019 errors using DX9 libs

    I'm trying to compile some code in VC++ Express 2005 using an intro to DX9 book. I've taken the code directly from the samples, but it's throwing linker errors at me. I've already searched through the forums at the book's website, another person is having the same problem with VC++ and LNK2019 errors, but since those forums are non-compiler specific, we haven't had much luck as of yet, so I figured I'd pop in here. The basic gist of the code looks like this: #include <d3d9x.h> namespace d3d { bool Init3D(....) { ..... IDirect3D9* d3d9; d3d9 = Direct3DCreate9(D3D_SDK_VERSION); ....} int enterMsgLoop(.... ) { . ...Show All

  • Visual Studio Missing Icons and Bad Links in MSDN

    Hello. I'm having trouble with my installation of MSDN. Some of the little icons that should appear next to some of the links don't show up, and many of the links don't work. When the links don't work, I get a JScript error "Object does not support this property or method." If I attempt to debug it, it's always a simple, one-line, code block, such as; alink_301.Click() This is an example of what the missing icons look like. The little box, next to Look here, should be an icon; Send feedback to MSDN. Look here for MSDN Online resources . But other icons Do show up, as in this case; Platform SDK: Perf ...Show All

  • Windows Forms What do I need for Avalon?

    Hi, could anyone tell me what I need to start using Avalon I have XP with VS 2005 Beta2 installed. Do I then just need the 'Indigo and Avalon Beta1 RC' download or do I also need the WinFX SDK, or is it the longhorn SDK Thanks for your help Graham Hi, In order to locate the templates, start VS2005 IDE and expand the language say C#, you will find a separate entry for Avalon. and separate Avalon Projects listed there. Indigo comes as part of a new Namespace called System.Messaging.Indigo as well as System.ServiceModel Here are some samples: http://www.therhogue.com/WinFX/ Regards, Vikram ...Show All

  • Windows Forms Inheriting from BindingList

    Hello everyone... Well, I'm using Visual Studio .NET 2005 Beta 2, and I'm creating a class called Customer (with Id, FirstName, LastName, and so on) and then a collection class derived from BindingList as follows: public class CustomerCollection : BindingList<Customer> {    public CustomerCollection()    {    }    protected override object AddNewCore()    {       Customer cust = new Customer();       cust.Id = Guid.NewGuid();       Add(cust);    &n ...Show All

  • Visual C# ALT+F4 question

    how can i disable the alt+f4 key in my form When a message with ID Number 0x0010 is found, it is a message that represents a ALT-F4 Closing message. So when you receive that, you should not give that message to the base method that handles it because it will be closed then. ...Show All

©2008 Software Development Network