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

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

sgGeordie

Member List

UltimateSniper
poodle
Jimmy.Z
TCSC
SDH2007
Berky13
Pete R
Deldy
eugenz
ErikInTexas
Zion_zii
Spankmaster79
bobo224
WebMasterSam
michael447887
z3n
giarnz
Maximus123
swiego
Priti Phadke
Only Title

sgGeordie's Q&A profile

  • Visual Studio Express Editions IDE error, help!

    hi again, ok so im really frustrated now guys. after posting my last question and getting the code to work I decided to take a break. i closed the project and closed VBE and left. i come back, try to open the project and it does nothing! there were not any error messages when the ide opened but when i click on the project it didnt load anything. the properties section didnt show my files, the status bar said "ready", the title bar had the project name, and none of the files opened up where the start page is. i dont know whats going on here. any tips michael ok try this: Create a blank new solution Create a blank new project add the files in manually (right click project > add & ...Show All

  • Visual Studio Express Editions class name - say CCar, CTransport etc

    Hi In a previous post someone stated that using CCar for example for a class can be in conflict with Microsoft C Foundation or something similar. So what is best way to name a class without a conflict Thank you Choose a prefix of your own. It might be an abreviation of your company name, product name or whatever you come up with. To really prevent name collisions you could also place you names into a namespace, like STL is in namespace std, you could put your names in YourPreferredNameSpaceNoBodyElseUses - again company or product name are good candidates. -- SvenC ...Show All

  • SQL Server Access/Server

    How do you change the connection string of a DataSet We have been using MSAccess for our database, but have recently upgraded to SQLServer Express. I was able to successfully upsize the Access database and now all information resides on the server. In my VisualBasic program, the dataset itself has around 200 queries total spread out on multiple table adapters. The problem now is that none of these queries work because the dataset is bound to the Access table. I have changed connection string through code and am able to display the information, but am unable to interact with it until i get the dataset connection changed. I would rather just change the connection of the dataset somehow rather than build a new dataset, reconnect all form ...Show All

  • Visual FoxPro Framework in VFP...

    Hi all,          I'm planning to develop a framework for my development environment. The framework should enable me to automate most of the development process . Please help me with suggesting the directions to go about and things to consider...      Please tell me if there exist any such products....that can be customized to my own needs... Thanks in advance. Regards, Markish Creating your own framework may not be such a good idea, unless you are an OOP expert, have lots of unpaid time to develop it, throw your first try out and start again learning form the first mistakes. I would recommend to do what many of us did; get a professional OOP Framework. Most ...Show All

  • Visual Studio 2008 (Pre-release) Whether there is a way to be not use .svc file to find service if I host it in IIS?

    Whether there is a way to replace .svc file to find service if I host it in IIS Because if you create a service you should add .svc file to map it. I think it's not very convenient. Thanks, Zhihao ...Show All

  • Visual C# web browser application crashes when visiting site 'http://felixiamiaow.spaces.live.com/'

    Hi All, I just create a very simple application to test web browser control in .net 2.0. In form load event, the browser tries to navigate the above site and then the appliation crashes. Here are details for exception. {System.AccessViolationException: Attempted to read or write protected memory. This is often an indication that other memory is corrupt. at System.Windows.Forms.UnsafeNativeMethods.DispatchMessageW(MSG& msg) at System.Windows.Forms.Application.ComponentManager.System.Windows.Forms.UnsafeNativeMethods.IMsoComponentManager.FPushMessageLoop(Int32 dwComponentID, Int32 reason, Int32 pvLoopData) at System.Windows.Forms.Application.ThreadContext.RunMessageLoopInner(Int32 reason, ApplicationContext context) at Syst ...Show All

  • SQL Server Select with IN Clause

    Hi SQL Experts, i have a strange problem i have a variable which stores some values(ID) with single quote (so that i can use directlt inside the IN Clause of SELECT Declare @DMSIDs AS VARCHAR(1000) -- variable declare, Select @DMSIDs = '''DMS00046847'',''DMS00048305''' -- for test putting 2 correct values with escape characters Select * from issue where id in (@DMSIDs) -- valid statment, but does not return any data Select * from issue where id in ( 'DMS00046847','DMS00048305' ) -- same above constant value this returns data, but putting the values in varaible then trying fails. The reason is i have a master table called issue and have another table [delta] where a particular column will store all the ID's of the issue table comma s ...Show All

  • Visual Basic Wierd build error

    I created a single form called 'StartForm' and a Dialog form called 'CountDown'. After debuging it - I added a deployment project. At my first build - I get a compile error with my original program. I deleted the deployment project, but I still get the same error. Recreating on a new project and copying my code from the old file reproduces the error. In my project properties - The only start form I can select is "CountDown'. 'StartForm' is no longer recognised is a form. The compile error is - Error 1 'StartForm' is a type in 'SchoolBells' and cannot be used as an expression. C:\Documents and Settings\Dean\My Documents\Visual Studio 2005\Projects\School Bell\School Bell\My Project\Application.Designer.vb 35 27 The error in Ap ...Show All

  • .NET Development Can't Update, Repair, or Uninstall Microsoft .NET Framework 2.0.

    Hello. I have recently found a security patch for my Microsoft .NET Framework, V 2.0. I needed the framework installed for my ATI Driver update to work. However, Every time I tried to install the patch, it failed. I tried repairing the framework, but that didn't work. Neither did uninstalling it. Uninstalling and Repairing yeilded the following message: "The following error occured during setup: Patch Package could not be opened. Verify that the patch package exists and that you can access it, or contact the application vendor to verify that this is a valid Windows Installer package." I downloaded and installed the framework from ATI's site. My system is a Windows XP, and I would like some help... Please... Thanks for any ...Show All

  • SQL Server SQL Server 2000 Reporting Services SP2 Fails

    Hi, This may be a trivial question but neither SQL Server 2000 Reporting Services SP1 or SP2 wil install against our SQL Server 2005 Developer edition installation. Our Version: Microsoft SQL Server Reporting Services Version 9.00.3027.00 Does anyone know whether the Services Packs are for SQL Server 2000 only if so, whether the new functionality in SP2 will be made available to SQL Server 2005 Many Thanks, Mike Thanks Samuel, The most valuable feature in the 2000 SP2 for us is as described in 889400 ? You can create a main report that has a sub-report. You can set the Visibility/Hidden property of the sub-report control to "True." However, if you do this, yo ...Show All

  • Visual C++ Functions as template arguments

    I have the following code: typedef void* STACK; template <typename T, void (*S)(T* ptr)> class AutoPtr { public: int junk; }; template <typename T, void (*S)(T* ptr)> void FreeStack(STACK* stack) { // loop through all stack items and call S on each item } template <typename T, void (*S)(T* ptr)> class AutoStack : public AutoPtr<STACK, FreeStack<T,S> > { public: int junk; }; typedef void* RESOURCE; void FreeRESOURCE(RESOURCE* res) { // free the RESOURCE } int main() { AutoStack<RESOURCE, FreeRESOURCE> a; a.junk = 0; } Basically, I pass various free functions through the template. When I compile I receive: error C2440: 'specialization' : cannot convert from 'void (__cdecl *)(STACK *)' to 'vo ...Show All

  • .NET Development Web service and SOAP

    Hi, I am very new to web services so please excuse my ignorance, I have created and deployed a web service that is able to handle SOAP requests i.e. < xml version="1.0" encoding="utf-8" > <soap:Envelope xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance" xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:soap="http://schemas.xmlsoap.org/soap/envelope/"> <soap:Body> <TransactionRequest xmlns="http://xxxxxx.co.uk"> <CustomerAccount> string </CustomerAccount> <ReferenceNumber> int </ReferenceNumber> <shop> int </shop> <Amount> double </Amount> </TransactionRequest> </soap ...Show All

  • .NET Development iframe + atlas ajax + asp.net

    when i use iframe to load page in update panel of atlas it post back :(((( ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. SpaceWar demo: .NET Runtime 2.0 Error

    I'm having a bit of trouble getting the SpaceWar demo to run. It compiles fine (I made no changes) but when I try and run it I immediately get a dialog box asking if i want to send a report to Microsoft (I always say 'Yes'). Below is a copy of the Event Log entries generated: Event Type: Error Event Source: .NET Runtime 2.0 Error Reporting Event Category: None Event ID: 1000 Date: 8/30/2006 Time: 7:41:21 PM User: N/A Computer: IO Description: Faulting application myspacewar1.exe, version 1.0.0.0, stamp 44f5d7e7, faulting module kernel32.dll, version 5.1.2600.2945, stamp 44ab9a84, debug 0, fault address 0x00012a5b. For more information, see Help and Support Center at http://go.microsoft.com/fwlink/events.asp . Data: 0000: 41 00 70 00 ...Show All

  • Visual Basic Question about 2 D arrays

    I am new to the development area, and am learning VB through the .Net Framework. I am working on a project for school. It is relatively simple but I am having difficulty in the last area of it. It is dealing a simple hand of poker. I can deal the cards from a 2 dimensional array no problem. but now I must go back and take the hand and determine if it is a pair 3 of a kind 4 of a kind or full house. I am using a counter variable as I go through the array to see what Ihave for face values, but I am stuck. I cant seem to get the logic to display my results properly. Any suggestions What you need to do here is after using kount to find a pair, 3 of a kind, 4 of a kind is to store the value of the card into ...Show All

©2008 Software Development Network