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

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

fripper

Member List

Isaiyavan Babu Karan
mrbelk
kaynos
TobsTec
Vladimir Chtepa
DBRICHARD
LynnOoi
JoeChip90
DLdfrd
programmer01
AjaxWebSvc20
NoEgo
MasterG
BarataMota
aquib
brottmayer
Neil East
hazz
Jensk
RainmanRam
Only Title

fripper's Q&A profile

  • SQL Server Replication between SQL Express 2005

    Hi All, I am trying to do a Replication between a network SQL Server Express Edition 2005 DB with a client SQL Server Express Edition 2005 DB. My question is 1. Can we do replicaiton between SQL Server Express Edition 2005. (No SQL SERVER present) 2. If yes can any of you provide me some guidance or some pointers on how to achieve it. Thanks Suresh Quick answer is no. Check out the following posting for more info. http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=941980&SiteID=1 Gary ...Show All

  • Windows Forms DataGridView - Copy only selected text

    Hi there. I am having an annoying problem with a DataGridView not linked to any database; I save/load to/from a simple XML file. (Using VSNet 2005 release version - developping in VB.NET) When editing a cell's content, highlighting a portion of text and pressing CTRL-C, the complete cell content is copied to the clipboard. Is there an easy way to only have the selected text copied on CTRL-C I know that I can achieve this by right-clicking on the selection and selecting copy, but for speed, I would like to use the CTRL-C method. Also, why is that when I press SHIFT-SPACE, the complete line is selected Thanks for the help, Zolt I can't help but I would like to ask if the problem of ...Show All

  • Windows Forms PictureBox

    i'm coding a Solitaire game.in this game we can change the card image.i mean game>bunch.i hope u get what i said. i think we'll choose the image from the picturebox and then with a parameter we'll send this image to another form and show the image there.i couldn't write the code.please help me . you need to add the control to the Controls collection as well as setting the location of the control on the form. to add the picturebox control to the forms control collection: this.Controls.Add(picturebox); of course you need to set the location property so it places the control on the form to the location you give it... picturebox.Location = new Point( x, y ); ...Show All

  • .NET Development Why doesn't my C# form show the contents of the database?

    Hi All, I'm using VC2005 in C# trying to create a windows app that displays the contents of the tutorial northwind.mdb. I've followed the tutorials and created a dataset and dragged the customers column onto the form and it all compiles and runs fine but none of the elements on the form get filled in with the contents of the database, also the BindingNavigator has no items to navigate. What am I doing wrong and how do you make the app automatically load in the northwind database and display the contents on the form No exceptions at run time but I do get some in the output window of VC:- A first chance exception of type 'System.InvalidOperationException' occurred in System.Data.dll A first chance exception of typ ...Show All

  • Visual Basic Newbie help with collections VB.NET

    Hi all, I Hope this is the right forum. I'm new to the .Net world... taking my first class and just getting my feet wet. Overwhelmed might be an understatement... Having said that, I'm trying to set up a simple collection (as a vb.net console application) that simply receives a few names from the user, puts them into a collection and then displays that collection. I'm having trouble adding the user input to the collection. Can you show me what I'm doing wrong Thanks, John I get this error: Error 1 Argument not specified for parameter 'value' of 'Public Overridable Sub Add(key As Object, value As Object)'. C:\Documents and Settings\jbruso\Desktop\week4_attempt1.vb 74 13 Week4 Modul ...Show All

  • Visual C++ VC.NET Question about Forms

    I apologize ahead of time for asking a question that may be very simple to answer but I am new to C++ and .NET programming.  I am trying to create an application that will have 2 forms.  Form1 is the main form of the application and Form2 is the options dialog.  I have tried to search MSDN and Google but have been unsucessful in my attempts (probably due to bad wording of my searches).  I have a button with the following code: private: System::Void button1_Click(System::Object *  sender, System::EventArgs *  e)               {                   &n ...Show All

  • Smart Device Development List of currently running programs

    is there a namespace to get the list of progams currently running on the smartphone and if there isn't what dll should i interop to do that !!! thanks!!! Creating a form with no title (i.e. not setting the Text property) will cause it to not show up in the "Settings->Memory->Running Programs" list... I assume that's what you meant by "task manager". --Jeff ...Show All

  • Software Development for Windows Vista subclass handle external event activity

    Hi, I know this has been discussed before, but i can't find a way to override HandleExternalEventActivity. I'm trying to handle events only when a special condition is met (by giving a parameter to my event args). What is the best solution to acheive this So far i've tried to do as in the ExternalDataEventService, but i'm lost with the queue processing. Is there any sample available Thanks for your help. Hadrien HI. you can create SequenceActivity like below                   WhileActivity                       ...Show All

  • .NET Development phantom "=" signs?

    I have an xml reader thats reads an xml string onto it, this works fine but when i try to call the individual elements to enter into my database using an sql string some of them have the = character in them. They seem to have appeared from no where any ideas string before: "<Client><ID>WEBCLAFFKD722164086454497T</ID><DateTimeAdded>10/30/2006 13:51:00</DateTimeAdded><CompanyName>Test</CompanyName><Position>Test</Position><Title>Test</Title><FName>Test</FName><LName>Text</LName><EmailAddress>test</EmailAddress><Telephone>85763866733</Telephone><WebSite>test</WebSite><Mobile>06987354266</Mobile> ...Show All

  • Visual Studio Express Editions serial port and chr(0)

    I am a beginner (in VB Express) but reasoanbly experienced in various assembler languages. I tried the "UsingTheSerialPort" example in the 101 examples collection and ran into the following problems: 1. In the original format an error is generated as soon as data (entered in the text box) are sent: conflicting threads. This stops when the textbox for displaying received data is removed and the data is read into a string that is displayed in a message box (another thread I should think.... ) 2. Instead of text entered in the textbox for "Send data" I wrote a string. The string "TEST" works fine but as soon as (and that is what I want....!) I send a string like" sStr = chr(&H00)&chr(&a ...Show All

  • Windows Forms problem of update an item from a listView,urgent, need help!!

    I have a list view problem,my list view contains the items (e.g. A, B, C, D and etc.) and quantity of the items (e.g. A-3, B-1, C-4, D-2 and etc.) and now i would like to delete the items by randomly selecting it, example when i double click on A-3 , it will automatically change from A-3 to A-2 , does anyone know how to write it Hi, sunni05 The ListView has a DoubleClick event, you can handle this event to when double click on item(s). e.g. private void listView1_DoubleClick( object sender, EventArgs e) { this .listView1.SelectedItems[0].Text = "A-2" ; } Hope it helps. Best Regards. Ye ...Show All

  • Visual Basic Getting and Inserting Data using Combobox Selected Index

    Dear All, I'm using 2 comboboxes of Supplier and Category in a data entry form. I want to insert combobox selectedindex No into the database And also fetch the item in combobox related to SelectedIndex Number in database when I search for data. Any one can help me with the code please Thanks Thank you very much weirdbeardmt , I solved the problem as here. cboSupplier.SelectedValue = dtProductDetail.Rows(0).Item("SupplierID").ToString ...Show All

  • Visual Studio SKU011.CAB solution

    Go into Registry Editor (Start, Run, "regedit"). Go to HKEY_LOCAL_MACHINE, Software, Microsoft, Office, 11.0, Delivery. There should be only 1 directory under Delivery, which is your DownloadCode (mine was 90000409-6000-11D3-8CFE-0150048383C9). Select that directory. On the right side of the screen, right-click on CDCache. Change the value to 0. honestly works with out a hitch. I followed your directions but was unsuccessful!! There is as you indicate only 1 directory under delivery but the number differs from yours - however on the right side of the screen under DownloadCode that number is the same as yours. I am puzzled as I was under the impression the directory under Delivery would be the same as the number on t ...Show All

  • .NET Development DataRow DateTime value is incorrect

    I am running into a strange problem with DataRows where the date time is being returned incorrectly. I have a SQL 2K DB that contains a DateTime column 2008-02-11 00:00:00 000, but when it is returned in the DataRow the value displays as< 02/10/2008 9:00AM >. Anyone else run into this problem Thanks for the prompt reply. The test case does not build the DataRow programmatically, rather reads the values from XML into a DataSet. It then iterates through the DataTables and then compares the DataRows in each table. AFAIK the XSD definies the column data type, should I be doing something else in this case < xs:element name ="ins_DateTime" type ="xs:dateTime" minOccurs ="0 ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. My first game... Asteroid Defense.

    In this game you are a ship protecting a planet from incoming asteroids. Controls: 360 controller: Left Joystick -- Move ship left and right. A -- Shoot Right or Left Trigger -- Change Weapon. Keyboard Left and Right Arrow Keys -- Move ship left and right. Up and Down Arrow Keys -- Change Weapon Space -- Shoot The weapon you are using is shown in the top left corner. The stronger the weapon you use, the less points you get for destroying an asteroid. Levels progress at timed intervals and more and more asteroids come down. You lose when one of them reaches the planet. Screenshot: http://www.rocketsoft.gm-school.uni.cc/uploads/ADScreen.JPG Game File: http://www.rocketsoft.gm-school.uni.cc/uploads/AsteroidDefense1.1.rar All in ...Show All

©2008 Software Development Network