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

Software Development Network >> a. johns's Q&A profile

a. johns

Member List

Tomas Martinez
Paul P.S.
ZMAN!!
Glenn McDonald
dejann
Adien
Vladimir Radovic
Shrish
KrazyMGA
jlspoels
Jenga
David K
Gert Cuppens
lfonlfonlfon
John Chen MS
hernanac
Andy Brons
Tony Long
Bio Andy
pepegotilaioter
Only Title

a. johns's Q&A profile

  • Visual Studio Express Editions Image library or VS2005ImageLibrary.zip

    Boy am I finding this VB2005 stuff tough going, just about everything I want to do has changed. Anyway I want to use some of the 'pretty' graphics that are now available, I did download some freebies when I downloaded Express a couple of weeks ago but found them limited. So when I am creating my menu items, I can see some images already in use, but I cant locate them, where are they located I could reassign some of them if I could find the ...Show All

  • Smart Device Development TCP Socket in pocket pc

    Hi, I want to create a TCP Socket in pocket pc and test it with a TCP server and TCP client on my device. Is there any tutorial, link, advice, code about that More generally, Where can I have more documentation about embedded C++ Thanks a lot, Hi, The best place to look out for documentation is MSDN. Have a look at the following link that talks about networking and communication with win ce. http://msdn.microsoft.com/library/defau ...Show All

  • Visual C++ VC++ MFC static library producing a link error

    I have two projects that are part of a solution (Microsoft Development Environment 2003) that builds and runs fine when using MFC dlls. I would like to produce a standalone version that does not need the MFC dlls. I assumed this was done by setting "Use MFC in a static library", but when I do this I get a couple thousand link errors. Here is a small sampling: atls.lib(atlbase.obj) : error LNK2001: unresolved external symbol _memmove nafxcw.lib( ...Show All

  • SQL Server Reading Excel Sheets - Column DataTypes - Change default

    Hi, I am reading Excel sheets using the Excel Source in a Data Flow. The driver decides the data type of the column based on the first 8 ( ) values which it reads. How can this default be changed to, say, 1000, please This is because I am reading columns in which the first, say, 20 cells have no values and this is causing the driver to make ALL the values in the column to be null. Thanks. In Connection Manger Edito ...Show All

  • Windows Forms Framework Bug Makes Application Unusable

    I have been trying to deal with a previously documented framework bug (listed as resolved now, although not...) that appears when using asynchronous calls (mostly in socket code.) The listed workaround does not cut it: It works only some of the time, and it is not clear when or where it should be used to solve the rest of the bugs (especially in code where you are not explicitly creating Windows forms components). The exception that is thrown (" ...Show All

  • SQL Server Adventure Works DW Script

    The Data Mining Tutorial accompanying the June CTP includes mention of a table DimProspect. Despite the csv file existing in the Program Files\Microsoft SQL Server\90\Tools\Samples\AdventureWorks Data Warehouse path containing the data for the table, the instawdwdb script doesn't include any reference. Can someone supply me with the necessary script for this table Regards Baz Star I have covered the correct st ...Show All

  • Visual Studio NetworkCredentials with WebForm control

    I have my web application, which allows the user to view the reports in ReportViewer (WebForm) control on internet. The problem is in setting ReportServerCredentials. As against WinForm I cannt use it like below. ReportViewer1.ServerReport.ReportServerCredentials = New System.Net.NetworkCredential(sUserId, sPwd, sDomain) In the above, I specify the encrypted value of userid and pwd and domain in the config file and decrypt before doing ...Show All

  • Visual Studio Team System Open solution of other user

    G'day, I am looking on the following scenario for the shared PC: Bob logs in using his account to computer A Bob performs get latest to <folder> for the <solution> in his <workspace> Bob performs required activities with the files in his <workspace>, finishes up his activities and logs off Alice logs in using her account to computer A Alice opens <solution> in <folder> using "Open... ...Show All

  • SQL Server Is it a bug in SQL CE?

    Hi! I use SQL CE with VS.NET. I find the following bug 2th. The table has an " ID int IDENTITY(0,1) PRIMARY KEY,". That is my row identity. I add rows to the table, then I realized that the ID order not in the general order (from 0 to ........) For example: 6,7,8,0,1,2,3,4,5. O f course row 6,7 and 8 was added the very last. The content of each row is not mixed, only the ID order. Is it a very confused, be ...Show All

  • Visual Studio Tools for Office ActionsPane AddIn for Word 2003 with VSTO 2005 Beta 2

    Hi, I am developing ActionsPane in Word2003 with VSTO 2005 Beta2, I use this link for that http://msdn2.microsoft.com/library/d6sb8dyb(en-us,vs.80).aspx . But the problem of that is the document centric, what I had developed is only used for one document. My questions are:   How can I modify or create the Actions Pane for Word2003 , so that doesn’t matter which document I open the Actions Pane I create will be available for all ...Show All

  • Visual Studio Enable visual source safe over internet

    Hello I just enabled visual source safe over internet in my server. Is that enough How should I open the database from home Hi, See this page for configuring VSS2005 over Internet http://www.alinconstantin.net/webdocs/scc/VSS_Internet.htm Alin ...Show All

  • Visual Studio Express Editions Translating Basic into SQL starments

    I was wondering can VB get into a SQL database ok If so I wanted to be able to do something thats easy to do in VB, but I am new to SQL. VB.NET uses ADO.NET, which means you have a rich library for working with a database. What database do you have Do you have SQL Server installed, or Access, or something else SQL is a totally different language to VB, you will need to learn SQL in order to work with a database. http://www.1keydata.c ...Show All

  • Smart Device Development bindingsource.filter

    How can I set a filter in code from a textbox.text value I tried this HorsebindingSource.Filter = "CODE='SMI'"; works but not useful I would like to do something like this: HorsebindingSource.Filter = "CODE = 'codeTextBox.Text'" ; Thanks Jon Stroh You can do this: HorsebindingSource.Filter = String.Format( "CODE = '{0}'", codeTextBox.Text); If you want filter to change as you type in ...Show All

  • .NET Development Is there any tool is there to convert xml or xsl file in to fo?

    Hi friends, I am looking for some tool to do the conversion of xsl in to fo(formatting object), because i want to generate report is having of more than 50 page. It is very difficult to write fo file 50 pages. Can u please provide me some related link for download Thanks in advance Regards Saravanan http://forums.microsoft.com/MSDN/ShowPost.aspx PostID=387758&SiteID=1 ...Show All

  • Visual Basic How to set combo.text after form load

    I want to set a default value for a combobox and then call a form modally . frmTest.mycombo.text="Test Value" frmTest.ShowDialog the problem is that the form_load is done after I set the combobox value and overwrites what I set the combo text to. How can I force the form_load and then update the combobox text value Dean Dim F as New frmTest F.mycombo.text ...Show All

©2008 Software Development Network

powered by phorum