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

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

HelpMePl0x

Member List

wicky
Seth Webster
Grigory_
Moses Kingsbury
Gaurav Sisodia
gold444
kasmatt2000
Serge Gavrilov
willsam
Abhi Basu
Murph the Surf
Zackelino
F Baker
Justin Baker
madhive
chadbengen
JohnPM
OVL
JeffMN
toypaj
Only Title

HelpMePl0x's Q&A profile

  • Visual FoxPro error with SET <classLib>

    It is a simple situation. I am playing with some code I downloaded (wwHTTPdemo). Credit goes to Randy Pearson , CYCLA Corporation, I think and West-Wind Technologies' Rick Strahl. I often get an error stating that an " ALIAS name is already in use ." This is a snippet: TYPE ("wwIPStuff") == "U" SET CLASSLIB TO wwIPStuff ADDIT ENDIF IF TYPE ("wwHTTP") == "U" SET PROCEDURE TO wwHTTP ADDITIVE ENDIF I want to mention that I added IF TYPE(" .. ENDIF statements myself. They do not help. The exec runs through. I do not want to use TRY.. CATCH... ENDTRY because it may get me in tr ...Show All

  • Visual Studio Express Editions Why Is It Evil For Some To Use Data Bound Controls?

    Thanks I wouldn't consider them "evil" in .NET. Back in the pre .NET versions of Visual Basic most experienced developers frowned upon there use primarily because they were designed to create "quick and dirty" database applications. In addition there were several problems with these type of controls. First they were somewhat inflexible in that it was rather difficult to incorporate custom behavior. Second, you often had to work around idiosyncratic behavior to get them to do what you wanted. Third, they often didn't support the exact the functionality you needed which often required t ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Cylindrically project 2d image

    HI I want to project 2d flat image cylindrically on mesh object. E.g., on cat or Dog face. I am using managed directX Can anyone help me on this manner thnx The article is up http://msdn.microsoft.com/coding4fun/gamedevelopment/zmanTextures3/default.aspx ...Show All

  • Visual Studio Express Editions ME Compatibility

    Greets again, I got my first database program running in XP. I installed in ME after installing .Net Framework 2.0. It's a simple database program using Access .mdb file as the database. I used Access from MS Office 97 Pro to create the database. When I run the program in ME, I get a message at startup that tells me .Net Framework 2.0 requires Version 2.6 of OleDb files and Version 2.5 are installed This incompatibility won't let the program acces the database. The program works at everything except accessing the database. Everything works correctly in XP but NOT in ME. What can I do to get the program to bind to ...Show All

  • Visual Studio 2008 (Pre-release) Where can I find SvcUtil.exe

    I am unable to find svcutil.exe even after intstalling WinFx Runtime components. Looking at other posts, it should be in Program Files/Microsoft Sdks/Windows.... folder but there is no folder of this type. I have written a service, I am stuck at the step of generating the Proxy. Thanks, Akhil Did you also install the WinFX SDK Look here for installation instructions: http://blogs.msdn.com/madhuponduru/archive/2006/05/23/605077.aspx ...Show All

  • Visual FoxPro foxpro *

    I have a program that we developed in foxpro 8.  I want to make it mac compatible.  can anyone help me You can run your VFP application inside the RDP client for Mac: http://www.microsoft.com/mac/otherproducts/otherproducts.aspx pid=remotedesktopclient ...Show All

  • Visual C++ trackBar bug? Visual C++ 2005 Express Beta 2

    Hello, I have set the trackBar to max   10 min   -10 These figures are accepted, the build goes OK and the app runs and I can select trackBar values between -10 and +10. But! On three occasions when making unconnected code changes, I have found that when I ran the app it was not possible to move the trackBar pointer. Have now seen on one of thjose occasions that the -10 figure had changed to 10 ! This seems odd. Any ideas Cheers Geoff I wasn't able to reproduce the issue. If you are still reproducing it reliably, please log a bug at http://lab.msdn.microsoft.com/productfeedback ...Show All

  • Visual C++ Getting LNK4224 with B2 - what's the story?

    Hi David! When building projects with VS2005 B2 I'm now seeing lots of these: mymodname.obj : warning LNK4224: /COMMENT is no longer supported;  ignored While the message is straightforward, what's the story behind it The "/COMMENT" was marked as depricated in VC2003 and is now consequently removed... You should use " #pragma comment" instead. The reason might be: more C++ conform. -- Greetings Jochen Kalmbach Microsoft MVP VC++ My blog about Win32 and .NET http://blog.kalmbachnet.de/ PS: Please mark an answer as "answered" if it helped!!! ...Show All

  • Windows Forms how to set combobox selectedvalue property?

    hi, my question is how can i set the selectedvalue of a combobox. i have a combobox and i want to set the selected value to the supplied id. thanks Yep, certainly more than one way to skin this cat. I can tell you that we use the SelectedValue= way without failure with one interesting caveat: if a dataset is used for the dat ...Show All

  • .NET Development CASTING UNTYPE DATSET TO TYPED DATASET

    hi, i have problem while cast untype dataset to typed dataset. example source below. both xml schemas are same. can anyone meet that problem. SqlConnection sqlcon= new SqlConnection(constring); SqlCommand sqlcomm = new SqlCommand("select * from tbl_problemgroups",sqlcon); sqlcon.Open(); SqlDataAdapter dbadap = new SqlDataAdapter(sqlcomm); // Typed dataset Dataset1 dbset1 = new Dataset1(); DataSet dbset = new DataSet(); dbset.ReadXmlSchema(@"E:\Documents and Settings\raskerov\My Documents\Visual Studio Projects\test1\Dataset1.xsd"); dbadap.TableMappings.Add("Table","tbl_problemgroups" ...Show All

  • Windows Forms Hide the "Sorting" arrow in the column header of the DataGrid

    I have the sorted DataView as the DataSource for my DataGrid. AllowSorting for DataGridTableStyle is set up to false, so user cannot sort. When the DataGrid is displayed in the header of the column sorted in the DataView I see the arrow (which usually showes the direction of the sorting). I would like to hide this arrow. Is there a way to do this Thank ...Show All

  • Windows Forms How to make a form full-screen in C# 2005?

    Hi, I am trying to make one of my application forms full-screen - no borders, no task bar, etc. How can I do this Thanks! -- stockcrack What you are trying to do is a three part thing, first, hiding the taskbar: In order to show and hide the taskbar you can use this: [DllImport("user32.dll")] private static extern int FindWindow(string className, string windowText); [DllImport("user32.dll")] private static extern int ShowWindow(int hwnd, int command); private const int SW_HIDE = 0; private const int SW_SHOW = 1; and then to use it ...Show All

  • Software Development for Windows Vista Switch ... case workflow

    Is there any way to visualize switch ... case workflow as it is in case of IF statement Is switch() and case going to be in next version of Workflow Foundation peter Peter, There is currently no built-in switch activity, but you could always create your own custom switch/case activity. I'll also log your request for consideration in future releases - thanks for the feedback! Arjun ...Show All

  • SQL Server Getting RecordCount with TableDirect

    Hi, I would like to know if there's any method to get the total number of records in a table without using query. I have the following codes. Dim conn As SqlServerCe.SqlCeConnection Dim cmd As SqlServerCe.SqlCeCommand Dim rdr As SqlServerCe.SqlCeDataReader conn = New SqlServerCe.SqlCeConnection( "Data source=\My Documents\test.sdf" ) conn.Open() cmd = New SqlServerCe.SqlCeCommand("Staff_Table", conn) cmd.CommandType = CommandType.TableDirect cmd.IndexName = "Id_Ind" rdr = cmd.ExecuteReader rdr.Seek(SqlServerCe.DbSeekOptions.FirstEqual, int_seek_n) If rdr.Read() Then    strResult = rdr.GetString(1 ...Show All

  • Visual Basic LOAD DATA IN A DATAGRID OR OTHER GRID VERY FAST (10763 Rows -Regs.)

    What's the fastest form to load data in a DataGrid or other Grid The System Read a DataBase from a CD the old System take only 2 seconds, my System is te New System But take 2 minutes to load the registers in the Data Grid and is a Big Problem !!! 'Declarations Public cnTesis As New Connection Public cmTesis As New Command Public recTesis As New Recordset     The Recordset is Open of this form : cnTesis.ConnectionString = strCadenaConexion cnTesis.CursorLocation = adUseClient cnTesis.Open strCadenaConexion         recTesis.Source = "SELECT materia AS Materia_,cve_tesis As Tesis_,rubro As Rubro_, ...Show All

©2008 Software Development Network