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

Software Development Network >> Chaman Zinga's Q&A profile

Chaman Zinga

Member List

Jesper25539
DazlerD
tplummer
Rishab
Ramesh Jha
PsYcHoToE
Vishal Sangwan
MyName Dot
mario.muja
korova99
jens_essen
ZHiquan
A.F.B
Andy Britcliffe
R.Tutus
Dhondtie
omrivm
japt
Jamie Thomson
Leonard Lee
Only Title

Chaman Zinga's Q&A profile

  • Visual C# Change System Timezone Programmatically

    Hi, By using System.Timezone.CurrentTimezone I can get the DST Dates of it, is there a way to change the system timezone so that i can use the CurrentTimezone for other timezones Thanks Hi, Please look at the last FAQ in the following link, http://www.gotdotnet.com/team/clr/BCL/TechArticles/techarticles/DateTimeFAQ/FAQ.aspx HTH, ...Show All

  • Visual FoxPro ODBC VFP 6.0 problem

    Hi My computer had window 2000. I made some reports in Excel 2003 where I import data from VFP 6.0 using Microsoft Query. I used sum function in some fields of the free table (dbf) and I didn't have any problems with the import of the data. Recently I update the OS to Window XP Professional SP 2 and I reinstalled all the programs. But now, when I tried to refresh the data in the reports, I cann't import it because I receive the following error: [Microsof] [ODBC Visual FoxPro Driver] Syntax Error. When I check the query, apparently the error correspond to the sum function in the fields. How I can correct it Please help me!! I cann't found any answer in the internet. Cordially, Siris ...Show All

  • Visual Studio Team System FxCop Microsoft.Design and Generic outputs

    Working on a deserialization loader mechanism, I started out with a public method signature which looked like this: public static T Load<T>( string filename) FxCop suggests: CA1004 : Microsoft.Design : Consider a design where YamlLoader.Load(String):T doesn't require an explicit type parameter in any call to it. I what it's suggesting is that invoking this method with code like this may be hard to understand because of the part in the angle-brackets below. Foo temp = YamlLoader.Load<Foo>( "temp.yaml" ); The only alternate design that seems obvious to me would be: public static void Load<T>( string filename, out T output) with calls looking like this: Foo ...Show All

  • Windows Forms textbox border color

    hi I am using following code to chnage textbox border color private void Form1_Paint( object sender, System.Windows.Forms.PaintEventArgs e) { foreach (Control acontrol in this .Controls) { if (acontrol is TextBox) { e.Graphics.DrawRectangle( new Pen(Color.DarkGreen), new Rectangle(acontrol.Bounds.X,acontrol.Bounds.Y,acontrol.Bounds.Width,acontrol.Bounds.Height)); e.Graphics.Dispose(); } } } but its changing color of bottom & right edge why If i remember correctly, you can tell the pen how to draw the rectangle. Although you are telling it the bounds of the rectangle, you can also tell the pen where to draw in relation to this rectangle e.g. ...Show All

  • SQL Server using xmlhttp in script task

    I am converting an existing task(ASP) to run as a script task in SSIS and haven't found a way to reference xmlhttp so that I can use it . . . or is there another way to get that functionality in the package Any help appreciated. Does this help: VSA requires DLLs to be in the Microsoft.Net folder (but not all the time) ( http://blogs.conchango.com/jamiethomson/archive/2005/11/02/SSIS_3A00_-VSA-requires-DLLs-to-be-in-the-Microsoft.Net-folder-_2800_but-not-all-the-time_2900_.aspx ) -Jamie ...Show All

  • .NET Development .NET Runtime version 2.0.50727.42 - Fatal Execution Engine Error (7A05E2B3) (80131506)

    It seems that most of the individuals are either getting this error message in Visual Studio, one of the Visual Express environments, or an ASP page. I've got a service on one customer's machine that is receiving the following two errors in his Event Log prior to a crash on said service: Event Type: Error Event Source: .NET Runtime Event Category: None Event ID: 1023 Date: 7/25/2006 Time: 9:25:06 AM User: N/A Computer: XXX Description: .NET Runtime version 2.0.50727.42 - Fatal Execution Engine Error (7A05E2B3) (80131506) Event Type: Error Event Source: .NET Runtime 2.0 Error Reporting Event Category: None Event ID: 1000 Date: 7/25/2006 Time: 9:25:09 AM User: N/A Computer: COPYCENTER01 Description: Faulting application XYZ.exe, versi ...Show All

  • Visual C++ list boxes and data sources...

    Here is what i am trying to do: listBox1 displays information from a database. when I click on an item in listBox1, listBox2 displays information from another table. However, i try putting this code in: private : System::Void listBox1_SelectedIndexChanged(System::Object^ sender, System::EventArgs^ e) { if (listBox1->SelectedIndex.Equals( "Elves" )) { listBox2->DataSource = "gamestaBindingSource2" ; } else { listBox2->DataSource = "gamestaBindingSource3" ; } } The program runs, but when you get to this section, the following error appears: "An unhandled exception of type 'System.ArgumentException' occurred in System.Windows.Forms.dll Additional ...Show All

  • Software Development for Windows Vista looking for web editor for business processes for WWF

    Currently you can visually model workflows by using Visual Studio or by implementing graphic editor to WinForms apps. Does anyone know about Microsoft's plans on web editor Hi, I started to know about WF when I saw your application at http://www.masteringbiztalk.com/atlasworkflowdesigner I have exactly similar requirement. I have to build the workflow at run-time using ASP.NET (It is going to be a web app). My objective is that I need to have similar UI. 1) My activities are based on previous activities.....I mean activity B cannot be added unless activity A is added. 2) I need to have an execute button which will do some processing based on the workflow generated using drag an ...Show All

  • SQL Server SQL2005 Log files will not shrink

    Environment is Win2003 server (standard) with SQL Server 2005 (action pack version with SP1) installed. Database files are split, with the Data file on D: and the Log files on E: The data base is not heavily used (probably less than 6 users at any given time) and is predominently used by users to read data via stored procedures. Data is read by VS2003 VB.NET business objects remoting to the server. SQL agent runs a "Shrink all Databases" job each night. Here's the problem. The transaction log files are growing continuously. One database now has a 60GB log file. After shinking, the task reports 99% free space but this space is not released back to the operating system. I have tried shrinking the entire database, shrink ...Show All

  • Visual C++ ERROR MESSAGE

    well i am a naive at vc++ and prcticing my hand on small problems like finding a factorial,string operations etc.But the problem with visual studio is that many a times when i run an application it gives the following error: This application has failed to start because MSVCP80D.dll was not found.Reinstalling the application may fix the problem. I'm tired of this error.and i don't know how to send you the picture of error to you[i'm naive please forgive me!!!) i think this error occurs generally when some decision in the program is compiler dependent. please help me out please!!!!!!!!!!!!! The error you are seeing just means you've included debug binaries in your app, which you can't distribute to other machines. ...Show All

  • Visual Studio Express Editions Where do I start? SQL/VWD/VB/C#

    Hi, I've downloaded the express edition packages as per the subject heading (plux the games one for much later . I am an absolute beginner. I have begun on the tutorials for VB - up to and completed lesson 9 (databinding - dancing through the non-saving of data to the database and those associated forums on that issue) - I think I understand it. Otherwise the videos are very good. I certainly understood them (although I'm not at all confident that I could reproduce the actual code - evidently that takes practice). Was this a good place to start I want to write an application/website that interconnects - is able to be accessed and used both as a record device for me and a reference and upload device for users (I am ...Show All

  • SQL Server How to get sql server name with a vb-script?

    Is there anyone who knows how to get sql server name using a vb-script I have tryed this: bKey = WshShell.RegRead("HKLM\SOFTWARE\Microsoft\Microsoft SQL Server\Instance Names\SQL") But it cant open it for read. Someone who knows a better way Regards SW-engineer What do you expect to happen if there is an instance of SQLExpress and an instance of SQL Server What do you expect to happen if there is more than one instance of SQL Server ...Show All

  • Visual Basic Creating in VB.Net an application with a shortcut that includes input parameters

    Hi everyone, I've been trying to find some information a code samples to develop an application that can read from a shortcut the specified parameters but no luck at all. For example, I want to have shortcut with a parameter for station number. When I click on it, the station number specified lets say 100.0 its used as an input parameter to do some validations with it. So in my code, I can process the station i.e. sub process(station) msgbox("The station is:" & station") end sub Thanks everyone for your help JP Hi Josue, if you want to get the settings from a shortcut, e.g. Target, Start in etc, then I tried to do this a few years ago VB and couldn't find any way of doing it ...Show All

  • .NET Development Exception: DataTable internal index is corrupted: '5'. on ...

    Hi, I have a problem with bindingsource component in framework 2.0. I have a combobox bound to a bindingsource which is also bound to a dataset with 2 related tables and a datagridview bound to the same bindingsource. What I want to do is : When the selectedindex property of my combobox changes, the corresponding cell value must be changed in the datagridview. But although the value in bindingsource changes, datagridview does not display the new value. That value is displayed after I move the mouse over that cell and make it invalidate its region manually. Another error I caught is the one that you can see as the subject of my post. I do not know why i have that message when I try to change the property of ((DataRowView)mybindi ...Show All

  • Visual Basic windows service

    Hi! I'm creating a windows service where i want to execute an exe whenever the service is started. I tried process.start("myexe") in the On_Start() event of the windows service... but the service starts and stops as soon as it is started saying that the service has no work to do. please help!!! Hi Brendan Grant! Thanks for your response, I'd appreciate it very much cause this is my first time building a service in .Net... What I'm trying to do it's to execute a code (private function iniciar () ) which is in the service, then I also create a Setup Project in order to install and keep run the service on a server. Actually my code look like this: ' ------------------------- Protected Overrides ...Show All

©2008 Software Development Network