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

Software Development Network >> Jamie Gordon's Q&A profile

Jamie Gordon

Member List

hanjg82
kemal
Oswald King
Tommy.Le
Digital Autumn
Glenn Wilson
Booge914
anxvariety
Kool_Kiran
rauhanlinnake
Sandeepp
RahulMittal
JDWCLG
RizwanSharp
Kaiser28
Pat J
su45937
legoman26
Witek
EmekaAwagu
Only Title

Jamie Gordon's Q&A profile

  • Visual Studio Team System Invalid Postback

    I receintly started getting the following in a recorded web test: Invalid postback or callback argument. Event validation is enabled using <pages enableEventValidation="true"> in configuration or <page EnableEventValidation="true"> in a page. For security purposes, this feature verifies that arguments to postback or callback events originate from the server control that originally rendered them. If the data is valid and expected, use the ClientScriptManager.RegisterForEventValidation method in order to register the postback or callback data for validation. This appears to be intermittent; Is there something I can do within the web test to prevent this I'm sti ...Show All

  • Internet Explorer Development Disabling Autoscroll on IE

    I was wondering if there was a way to disable autoscroll with the mousewheel on the newest version of IE for Windows XP. When I use the mouse wheel, it continues to scroll down and I can't stop it.... Very annoying. HELP!!! Just to be clear, the Autoscroll feature (aka. Reader Mode) of Internet Explorer refers to clicking and holding the middle-mouse button and moving the mouse around to control the scroll location of the page. As far as I can tell, the Autoscroll feature cannot be disabled. If you are experiencing erratic Autoscroll behavior when moving the mouse, you might try using the numeric keypad instead. Click the middle button and hold it, then use the following keys: 7upL 8up 9up ...Show All

  • Visual Studio Team System Database Project Build

    I'm receiving an error when building my project. I am creating tables/indexes on specific filegroups. Those filegroups exist on the target server. When I try to build, I get error messages saying that it's invalid. How do I fix this I would guess, since you are building and that is done based on the local validation database, that you will have to have the filegroup defined locally too (Similar to external references) Or am I off base Alle ...Show All

  • Visual Studio 2008 (Pre-release) wsdualhttp problem

    Hi, I have duplex service, which is running in two end point(dualhttp and tcp) and it is running in the app server. When i was connecting using tcp end point it is working fine but if i connect the same service with dualhttp it is hanging and i am keep getting timeout. I even set the security mode to none. BTW. If i run the same service(dualhttp and tcp end point) in my local it is working fine. When i looked at the server event log file, they service is keep doing logon/logoff. I really don't understand why it is keep hanging. Please , let me know what needs to done. Ramesh I see you do the following in your client side code: Here the client side code(wsdual http) WSDualHttpBinding binding = n ...Show All

  • Visual Basic A Windows Explorer-like browser that shows image thumbnails

    Hello all, Don't want to reinvent the wheel so maybe somebody out there has come across some source code that would allow me to reproduce something like Windows Explorer that would show image files as thumbnails when looking in a directory containing image files. Visual Basic's Power Pack has a FileViewer controller that works ok but without showing thumbnails. Any suggestions greatly appreciated. Cheers. NRF Sorry, that snippit was for VS05... Try this in 03: For Each f As String In System.IO.Directory.GetFiles("C:\Documents and Settings\rkimble\My Documents\My Pictures", "*.jpg") Dim img As Image = New Bitmap(f) ImageList1.Images.Add(img. ...Show All

  • Visual C++ Help with chars

    Hi again, i has question about chars sequence. if i has char sequence like that: "{\k25}mi{\k16}a{\k19}ge{\k17}ta {\k17}yo{\k17}" and i want return me only 25 16 19 17 17 17, in other words only what after k in each {} how can i do that thanks. Hi, you have to build a simple parser that would return those numbers. Example: #include <iostream> #include <string> #include <vector> using namespace std; void main() {     string s = "{\\k25}mi{\\k16}a{\\k19}ge{\\k17}ta {\\k17}yo{\\k17}"; // our string     vector<string> vec; // holds the values     // go through every ocurrence of "\\k"     size_t index = s.fin ...Show All

  • .NET Development Datasets and SQL Server

    I'm currently working on a application in VB.NET 2003, with a SQL Server backend. I was asked to make an import function that would allow a user to import an Excel worksheet into SQL Server. I'm aware you can do it from Excel directly to SQL Server, but the clients would like something that wouldn't involve the users of this application touching the SQL Server. I'm using an OLEDB for the Excel connection, and a ODBC connection for the SQL Server connection. Next, I have a button event that would open up a OpenFileDialog window, and a user can choose an Excel sheet. If the Excel sheet is valid, it would go on extracting the data into a dataset: ds = New DataSet ds.Clear() strSQL = "Select HEAT, Practice, C, Mn, P, S, Si, Cu, ...Show All

  • SQL Server Advice required: Matrix report with a static column

    First off, I apologize if this is an elementary question. Thanks for your patience. I have a requirement to develop a report that shows by calendar day how much effort a resource has expended on what tasks. So, I have a stored procedure that returns data that looks like this: Resource calendarDay description etcHours effortHours ------------- ------------- ----------- ---------- ----------- Smith, John 2006-08-01 Requirements 20.00 8.00 Smith, John 2006-08-02 Requirements 20.00 8.00 Smith, John 2006-08-03 Design 80.00 8.00 Doe, Jane 2006-08-01 Requirements 5.00 4.00 Doe, Jane 2006-08-01 Design 30.00 4.00 And I've developed a matrix report that looks like this: ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. no more mdx

    whell mdx never again... mdx team was dissapearedand all of his members ( Toma Miller too) was translated to the XNA Team... MDX 2.0 never will have a final release.... just the existing beta and no more... sadly... especially if you see that XNA only allows XBOX 360 gamepads... i dont like that... Old news. Like, really old. XNA has improvements over MDX, and will get better when the professional version comes out. Also, if you want joystick support, then you simply add references to MDX1.0 DirectInput. I myself don't like this solution but I it is that way because they only put enough coders on the XNA team to get a minimal version running. Now that is the real shame. ...Show All

  • Visual Studio How to split a Comma-Delimited String to insert it into SQL DB

    DECLARE @I INT , @TEXT VARCHAR ( 50 ) DECLARE @EducationID int, @Education Varchar(100) SET  @Education=   ' Trade certificate,Bachelor's Degree,Non-University Diploma,Other Categories'   SELECT @I = 0 WHILE ( @I < LEN ( @Education )) BEGIN SELECT @TEXT = '' WHILE ( SUBSTRING ( @Education , @I , 1 ) <> ',' ) BEGIN SET @TEXT = @TEXT + SUBSTRING ( @Education , @I , 1 ) SET @I = @I + 1 IF @I = LEN ( @Education )+ 1 BREAK END select @ EducationID = educationid from Education where Education = @TEXT SELECT @TEXT,@EducationIDD insert into client_education values ( @clientid , @ EducationID ) ...Show All

  • Software Development for Windows Vista When debugging an ASP.NET app on Vista RC1, Visual Studio does not open the default browser.

    I'm running VS as Administrator. I have Firefox set as the default browser in my user account as well as in the Adminstrator account. When I hit F5, or click "View in Browser," VS opens the page in IE 7 instead of Firefox. Has anyone else run into this Is it a bug or is it just me Thanks in advance. ...Show All

  • SQL Server Controlling flow in a stored procedure

    I have a stored procedure with two UPDATE statements in it. The second UPDATE statement relies on the completion of the first UPDATE statement to run correctly. The problem I am running into is that SQL Server sometimes runs the second statement before completing the first. To get around this, I tried putting the second UPDATE statement in a different stored procedure called within the first procedure, but I am still having problems. I do not believe I am doing anything wrong, but just in case, here is the relevant code from the proc: -- Look up County ID BEGIN TRANSACTION UPDATE tmpZoneTypes SET CountyID = ( SELECT CountyID FROM tblCountyLkp WHERE tblCountyLkp . CountyName = LTRIM ( RTRIM ( tmp ...Show All

  • Visual C++ How to link standard c .lib in Visual C++.NET??

    As title, when I try to link with a standard c .lib in Visual C++.NET(VS 2005). And I've tried different compiler switch of "runtime library" {/MD, /MDd, /MT, /MTd}. The code is as simple as below ------------------------------- #define omniapi_session_handle void* extern "C" omniapi_session_handle omniapi_create_session(); omniapi_session_handle hSession; int main(array<System::String ^> ^args) { hSession = omniapi_create_session(); return 0; } --------------------------------- And I got following errors - Error 1 error LNK2019: unresolved external symbol __iob referenced in function _omniapi_tx_ex Error 2 error LNK2019: unresolved external symbol _errno referenced in function _oa_connect Anyone can help ...Show All

  • Visual C++ What #include<file> is necessary for using Console::Clear();?

    The Visual Studio 2005 MSDN Help Search doesn't explain the prerequisite #include<file> needed before the System namespace can be called, for example, in the case it were needed to execute the following statements: using namespace System; Console::Clear(); Does anyone know this necessarily perchance Thanks. With VC++ 2005 you can create two category of projects: unmanaged, in C++, or managed in C++/CLI. If you are interesting in the former, then choose File > New > Project > VC++ > Win32 > Win32 Console Application. If you are interested in the later, then choose File > New > Project > VC++ > CLR > CLR Console Application. Hope this clarifies the things ...Show All

  • .NET Development Firewall blocks remoting connection.

    Hi, I am using remoting over a TCP channel. I have firewall enabled on my remoting server. This doesnt allow the clients to connect to the server. I want to bypass the server firewall for my application. This is a trusted intranet application running on Windows 2003 as server and Windows Xp as clients. Can anybody help me in bypassing the server firewall using C# code Thanks in advance ! -Sandeep You cannot bypass the firewall, you will have to add the application, or the ports your application uses to the firewalls exclusion list. Normally this is a manual operation which must be performed by the administrator of the machine. ...Show All

©2008 Software Development Network