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

Software Development Network >> Paddy Mac's Q&A profile

Paddy Mac

Member List

Reuomi
LiquidLithium
Inmon
Dinesh Reddy N Y
Kiryl Hakhovich
Fábio
Steven King
HitchB52
kmoreto
UmeshBhavsar
Heathcliff
StoneCarver
FredLarson
moggel
rschiefer1
Siupo
joeyconfused
phikappa
SQL Programmer
Pedro J. Molina
Only Title

Paddy Mac's Q&A profile

  • Smart Device Development Typed DataSets

    Hi: Can I build typed datasets with CF 2.0 and VS2005 How can I do Thanks Antonio de Rojas OK, let's try another way. 1. Add new item in solution explorer and choose DataSet. 2. Drag and drop tables from Server Explorer's data connection (can be SQL Mobile or SQL Sever 2000). ...Show All

  • Visual Studio Object Moved

    Hi, In the Microsoft Document Explorer for VS2005 I'm getting an error showing http source showing Object moved to http://service2.msdn.microsoft.com/search/service.asmx In these forums I've seen a post mentioning adding a proxy to fix this, but I don't use a proxy. Also, that address doesn't even exist! DNSStuff.com reports the message below showing that's not a good site to have moved to, so any ideas why my help is not working I've been into Tools/Options/Help/Online and everything looks good. Thanks :) DNS Lookup: service2.msdn.microsoft.com A record Generated by www.DNSstuff.com at 17:14:37 GMT on 17 May 2006. How I am searchin ...Show All

  • SQL Server How do I insert data from a flat file or .csv file into an existing SQL database???

    How do I insert data from a flat file or .csv file into an existing SQL database Here what I've come up with thus far and I but it doesn't work. Can someone please help Let me know if there is a better wway to do this... Idealy I'd like to write straight to the sql database and skip the datset all together... strSvr = "vkrerftg" StrDb = "Test_DB" 'connection String strCon = "Server=" & strSvr & ";database=" & StrDb & "; integrated security=SSPI;" Dim dbconn As New SqlConnection(strCon) Dim da As New SqlDataAdapter() Dim ins ...Show All

  • Visual Studio Express Editions Working with string/char

    Hi, I need to get a string from textbox and do some things to it. for example, if the string is "ABCDEF", Each character has a specified value that i need to set (how ) I want to get each of the letters and multiply their value with some index. when i try to do so, i get an error about string to char conversion. how do i extract each letter from the string but still keep the main string thank you for your help. Hi there, Here's an example that may be what you're after: string test = "ABCDEF" ; string modifiedTest; char [] testAsCharArray; int index = 5; t ...Show All

  • Visual C# Type.GetType Problem

    The following is my code to get type from AssemblyQualifiedName. //Full Qualified Name Work Type type = Type.GetType("System.Int32, mscorlib, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"); //Partail Qualified Name Work type = Type.GetType("System.Int32, mscorlib"); //Full Qualified Name Work type = Type.GetType("System.Windows.Forms.DataGridView, System.Windows.Forms, Version=2.0.0.0, Culture=neutral, PublicKeyToken=b77a5c561934e089"); //Partail Qualified Name Doesn't Work that return null type = Type.GetType("System.Windows.Forms.DataGridView, System.Windows.Forms"); I do ...Show All

  • Visual C++ Resource Editor: Add/Remove Operation impossible code read only - Release VS2005

    I've seen this bug discussed frequently with regard to the beta release of VS2005, but not often in the release version. I've tried former resolutions suggested. I'm running the release version of VS2005, Professional Edition, XP Pro, all latest service releases. Source Safe 6.0b We only recently moved to VS2005 from VS 6.0 and project was upgraded from a 6.0 project. Symptoms: - Dialog control event handlers do not appear in the properties window even when they exist. Some of the dialogs will take us to the handler when we select "New..." since some do indeed exist. - On trying to add on BN_CLICKED handler for a radio but ...Show All

  • Audio and Video Development WME 9 SDK Preview Problem.

    Hi, I am working on a project Using WME 9 SDK in which Video Clips are creating every 30 min. the source is TVTuner Cable. using following technique for breaking the clips in 30 min.(using timer) Step 1. stop encoding Step 2. redefine file name Step 3. start encoding Every thing working perfectly, except one thing that is when timer completed its 30 min. and redefine the file name and start encoding, the preview is stoped but encoding is still working in background and making clips perfectly with no problem. its no fixed time that when it happen. may it happen after 5 clips or after 100 clips. i tested it on differen ...Show All

  • Windows Forms accessing resource from another assembly

    I'm trying to access a resx file from another assembly. The thins is that when i add a resource to the resouce file ... it change the modifier of the class to internal ... but i want it visible so the other assembly could access it. Is there a way to tell the designer to put the modifier as public and not internal When i change from internal to public. Everything works fine. But as soon as I add a new string. it changes to internal... arrgghh..... thanks, no, I have a project that is a Library. In that project I only have one class : Resources.resx In another project I have a reference to that library, so ...Show All

  • Visual Studio Team System Connect to a TFS as a different user

    Actually 2 questions: 1. In vs.net team explorer, is it true that by default it will connect to a team foundation server with currently logon windows ID 2. If I want to connect to TFS in team explorer as a different user without logging out of Windows, how #1 That is my understanding, that it does connect as the person who is logged onto the computer. #2 One way, more of a hack, would be to hold down the Shift key, then right-click on Team Explorer or Visual Studio 2005 and select Run As... This would allow you to run the application as a different user, and Team Explorer would use that user when authenticating to T ...Show All

  • Visual Studio project wizard place in tree

    my new project wizard group appear under "other languages". I would like the group to be at the main level, like Visual C, or under Visual C. How is that done in VS2005 To place your wizard under Visual C++ node move wizards .vsz file to <Visual Studio 8 Install Directory>\VC\vcprojects ...Show All

  • Visual C++ number counter issue

    Hello, I am trying to do something simple I hope. Basically I have a counter in a for loop that counts from 1 to 500. for ( int i = 0; i < 500; i++) {   cout << i;  } when this runs, it displays the numbers one after another like so:   123456789101112131415161718192021223 .....and so on. I would like it to display one on top of the next number and not move one position to the right. So basically, if I slow it down, the user could actually see the numbers being counted out, but they will remain in the first position and not move over to the next position each time it is printed out. Basi ...Show All

  • SQL Server "command line parameters are invalid " is the output for a SQL job to run SSIS package

    Hello, I created a SSIS package that has a flat file manager whose connection string is a package variable, the reason is that there is a foreachfile container loop to loop thru CSV format files in a directory and load them to a sql table. The package execution is working in the designer studio as well as in the management studio-- a copy was saved to a sql 2005 server where a sql job is deployed to run the package. However when I ran the job, it claims successful but doesn’t do anything in reality. If I checked the box failing the package upon validation warming, the job will fail with the error: the command line paramet ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Threading issues

    Background... I'm using Borland Delphi 9, with Clootie's DirectX wrappers.  I'm working within a VCL component, which has worked fine in a single thread.  Just think of it as c++ directx9 with MFC. Here's the problem: I'm creating dynamic textures in a background thread to use in rendering,  but every so often, I get a 'Driver Internal Error' which translates into an out of memory error.  Now, in Delphi, you can't call Release nicely, so all you have to do is set it to nil to delete it.  The thing is, if I do this (what seems to be) too fast, DXUTCreateTexture decides that there's not enough mem ...Show All

  • Windows Forms How to retrieve data from a datagrid?

    Hi, I had a datagrid populated with data. Whenever, I had selected a row, I would like to retrieve all the data from the selected record/row. Can anyone advise how to do it Thanks I am using datagridview and it is bind to a datasource. Please help ...Show All

  • Smart Device Development basic datagrid question

    How to fill a datagrid I have a class Database with this method  public DataSet makeDataset(string query) {             DataSet ds = new DataSet();             SQLiteDataAdapter da = new SQLiteDataAdapter("query", cn);             da.Fill(ds);             return ds;         } In a form ...Show All

©2008 Software Development Network