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

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

Swaff

Member List

developer74
GOKU
octagon
VoiDeD
tuhack
Follish
robrich
sachin.pithode
tolsen64
MattH2
Lord_MiL
Muhammad Irfan Azam
jupzi
Andrew Zhu
Localrob2
RobIsUpside
Dave Lopez
Leneise44
Majid8351
Veblen Lee
Only Title

Swaff's Q&A profile

  • SQL Server Database is not being created

    Hi there. I have generated an SQL Script to script me a database, stored procs, tables, foriegn keys and users, as well as Create command and drop objects. however it seems that it is not creating the database, if an existing database does not exist, or if it does after it has been dropped. I get this error: Could not locate entry in sysdatabases for database 'db_name_something'. No entry found with that name. Make sure that the nam ...Show All

  • Visual Studio Express Editions sendkeys and focus

    Ok i got a bit of a prob. i'm tryin to make vb type in a webbrowser thing tht i got onscreen in a vb form. my friend suggested send keys but you have to set a focus to the webbroweser or somethin like tht. i tried everything he's said but i've had no luck. can anyone out there help me   if u didn't get tht, i want vb to type in a webbrowser bit which is in my form when i click a button.   ok a bit of an update ...Show All

  • Visual C++ How to make Win forms designer work with a namespace like X::Y::Z?

    This is for VC++ 2003.  Looks like I have to put the form being designed, in a simple namespace like XYZ.  I know how to rename the form class or the namespace without breaking the designer. But if I add an outer namespace, the designer just refuses to do anything other than displaying a message saying something is wrong with the form, though the program compiles and runs fine. Any idea   How about VC++ 20 ...Show All

  • Windows Forms AddNew() creates a new row but I can't navigate to it

    I have a DataTable filled with records from my Employee table. I did not create a DataSource in the project for this Employee table. I simply created a command and data adapter in code to fill the dataset. I have an Employee form with a BindingSource set to my dataset and I connected a BindingNavigation control to the BindingSource. Of course, I have a number of textboxes, checkboxes, and comboboxes bound to the BindingSource.  ...Show All

  • Visual C++ Scroll limitation issue

    hi, I have recently taken over the a project for someone, one of the issues we have come across is that you cant view an entire document, in a window with scroll bars if its really big.  I track this problem down to the ranges on the scroll bars.  Once the range of the scroll bar exceeds 32000 pixels, it is set, by my ex-colleague back to 32000.  So when you view a document, depending on the zoom factor you may only see a fractio ...Show All

  • Windows Forms Publish version v's assembly version

    Hey all, can anyone tell me what the relationship is between an applications assembly version number and the publish version number (the one found on the Publish tab of the application properties) Does ClickOnce ever look at the assm. version numbers Regards Graham Ah, it's ok, I've just found the answer here http://forums.microsoft.com/msdn/ShowPost.aspx PostID=9145 Cheers ...Show All

  • Windows Forms GetSelectedRow from Datagrid

    I want to read the selected Row from a datagrid. How is this possible  Anything like: object mySelectedObject = gridControl.getSelectedRow() but I didn't find a way to do that !!! thanxx for help! THANK YOU!!!  I know you posted this last y ...Show All

  • SQL Server warning when altering the column length

    According to the MSDN, in SQL Server 2000 "When you select a data type, length is defined automatically. You can increase or decrease the length property only for a column with a data type of binary , char , nchar , varbinary , varchar , or nvarchar . For columns with other data types, the length is derived from the data type and cannot be changed. If the new specified length is smaller than the original column length, all values in the column t ...Show All

  • Smart Device Development passing objects

    Hi. I understand that the smartphone/.NET CF (1.1/2.0) does not have a way to send objects using TCPClient/listener (in other words, from PC to phone) but can send strings. I know you could use a web service, and pass objects to and from :) I am wondering if there is any way I can pass an object from the PC (not using webservice but a C# winform app) to the smartphone and back Objects are not actually going through t ...Show All

  • Visual Studio reportviewer is missing from toolbox in my web developer express

    I can't find the report server control which is supposed to be included from what I have been reading. I found a download to install it. Installed it no luck. I had VX open at the time. Restarted machine. Still no reportserver control in the tool box. Any suggestions on what to try BillR2 HI, i am using Visual Studio 2008. I have installed Microsoft Report Viewer Redistributable 2008 from here: http://www.microsoft.com/downl ...Show All

  • Visual Studio Team System Performance Counters in Load Test

    Hi, I am trying to run a load test on a webservice (.asmx request) to track the performance counter sets on a remote computer. Here is a list of metrics I get Requests Executing in ASP.NET applications is 0 transactions per second in ASP.NET application is 0 Requests current in ASP.NET is 0 Requests in application queue in ASP.NET Applications is 0 Requests succeeded for both total and LM_W3SVC_1_ROOT is 106,611 on average total transaction ...Show All

  • Visual C++ problem with moving project from vc++6 to vc++2005 express

    hello all, i am porting rather large dll projects from vc++6 to vc++2005 express and having several problems. i am using somel dll's whitch i built new myself with vc++2005. but also i want to use some libs  that are old and compiled with vc++6. is that even possible, or any kind of workaround to my problem i know that there have been some changes concerning the iostream implementation, i am not sure thou if this does affect ...Show All

  • Visual Studio Tools for Office What action can change .dot file

    Hi, We've developed VSTO 2005 Word Application, which uses our own template file(xyz.dot). However, when users close the document, they get prompted for save of normal.dot file - WHICH we don't use in our application. This happens only for few users. (If they open normal word doc, there is no prompt). This is the sequence of events which happen in Doc_Load - Create custom toobar dynamically - Enable/Disable menu items , based on few ...Show All

  • Visual Studio Team System Trusted domain setup

    I have a development domain that trusts accounts from our primary domain. The TFS server is in the development domain as a member server. If I try to add a trusted account into the Administrators group it is unable to find it. What steps do I need to do to allow this trusted account As far as I know, you should explicitly set "trust for delegation" to make sure Kerberos credentials can be transferred between se ...Show All

  • .NET Development representing XmlElement

    Hi,  I need to represent something like public struct MyStruct {  public string MyProp1;  public string MyProp2; } with the only intent to serialize its data into <a:MyStruct>  <a:MyProp1>...</a:MyProp1>  <a:MyProp2>...</a:MyProp2> </a:MyStruct> I can do it this way using struct or simple class, and providing something like ToString and manually create the xml string. ...Show All

©2008 Software Development Network

powered by phorum