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

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

stumblingandfumbling

Member List

Nitto
Vestra
tjanuario
Desolator144
waltw
Vikram Kumar
ShyamKRG
Eddie Chen
RONE162622
DJT_UK
John Mollman - MSFT
Mageaere
Keith Verity iWin
penguin666
The Markus
arithie
CUI WEI
Gee_Coder
Nanette T
Florian Struck
Only Title

stumblingandfumbling's Q&A profile

  • SQL Server Express cannot convert different data types automaticly????

    I have a SQL Server 2000 database which works like a charm in my asp app. Joining tables by id columns which are of different data types (eg. int in one table and varchar in the other) is no problem with the SQL Server engine, but Native Client refuses to do so and hands me back an error. Even if columns have a slightly different collation (like Slovenian_CI_AS and SQL_Server_1250_CI_AS) SQL Express native client returns an ERROR !!! Is it possible that Native client cannot resolve this on its own Must I change the colattion and datatype on all my tables Please help!!!! Peca, developer from Serbia u ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Linker Error when compiling

    I am programming a FPS and up until recently there have been no errors with linking. However, now, as if out of the blue, I am receiving the following error: Here is what I found by google-ing your link error... Maybe this could help...make also sure that your lib all come from the same SDK And that the sample you try to compile is the same SDK... http://www.allaboutsymbian.com/archive/t-3195.html ====== Hi There I had the same problem but I think I managed to overcome it :)... (This is the same solution as Neeraj suggested) As ycombres rightly mentioned... if you set the configuration to Release it works fine. But if you ...Show All

  • Windows Forms Copy Datagrid data to clipboard

    I can open a form - populating the datagrid with the required data, select the upper left corner (which highlights the entire datagrid), then ctrl-c to copy the data to the clipboard.   Does anyone know how I can make these last two events happen programtically (the Mouse click and the ctrl-c to the clipboard) Thanks, bob Mark, I am trying to do the same thing ie. copy grid to clipboard so that I can pste it in excel. My problem is I am doing it in a Web Application in which the grid.SelectAll() methos is not availbale. How can I select my grid and then c ...Show All

  • Windows Forms Cannot inherit form from inherited form

    I am using VB dot net and have a base form which is then inheriten by other forms. I also have another base form that extends on the orignal base form. When i attempt to create a form base on the extended base form i get a message when i try to view the form. --------------------------------------------------------------------------------------------------- "an error occured&n ...Show All

  • Visual C++ Is this behaviour correct?

    #include <stdio.h> #include <tchar.h> class A { public : virtual int get_Foo() { return 0; } __declspec ( property (get = get_Foo)) int Foo; }; class B : public A { public : virtual int get_Foo() { return 1; } }; int _tmain( int argc, _TCHAR* argv[]) { B b; A* p = &b; int i = b.Foo; // calls A::get_Foo i = p->Foo; // calls B::get_Foo return 0; } This does not look like the correct behavior though I cannot see why the compiler would interpret code this wa ...Show All

  • Visual C# combobox and WebService dataSet

    I have a WebService in wich i have DataSet with one table named "Predmet". So I wrote a method like this: public DataSet1 VratiDataSet() { DataSet1 faca =new DataSet1(); return faca; } in my Win Aplication i have binding combo box with my data table like this: private void Form1_Load(object sender, EventArgs e) { DataSet mojDataSet = mojServis.VratiDataSet(); comboBox1.DataSource = mojDataSet.Tables["Predmet"]; comboBox1.DisplayMember = "Naziv"; comboBox1.ValueMember = "ID_Predmet"; } but, i get the "" in combobox, where is my mistake Thanx in ad ...Show All

  • Visual Basic Writing to an excel sheet

    Hey guys, I'm trying to write to an excel file from my program. I have a button and a text box. this is what I have in my button_click event. Dim G4 As Object wb = dlj.Workbooks.Open( "tx plan templates.xls" ) wb.Application.Range(G4).Value = txtName.Text dlj.Visible = True If I remove the middle code, the sheet opens up fine. I'm just trying to write to a specific cell in the excell sheet. Here is some code which will do what you want - instead of opening an existing excel file - I'm creating one. And then at the end I'm saving it and closing the workbook. This should get you going.... Di ...Show All

  • Software Development for Windows Vista Workflow designer

    Hi, I have a strange problem with workflow designer in visual studio. Layout is not always persisted, but several reopen of xoml file activities moved from their position, sometimes they are out of bounds or hidden under other activities. Isn't there a way to fix this problem or a command to automatically layout the workflow Thanks I have already reported this. Workflow runtime itself is relative stable in beta 2.2, but designer issues are really annoying. I have already lost about 20 hours recovering designer problems. Few times already I was looking for uninstall button :) I know, I know, it's ...Show All

  • Software Development for Windows Vista .Net 2005 : You need a Windows 2000 or later error..

    Hi I get the following error when the proxy xxx_p.c is compiled. I have been able to successfully compile it in .Net 2002. But now we are porting to .Net 2005 and I get the following error. My development environment is Windows XP Professional. Even though my operating system is XP which is 2000 or later, why do I get this error. #if !(TARGET_IS_NT50_OR_LATER) #error You need a Windows 2000 or later to run this stub because it uses these features: #error /robust command line switch. #error However, your C/C++ compilation flags indicate you intend to run this app on earlier systems. #error This app will die there with the RPC_X ...Show All

  • Windows Forms selected datarows

    I want to create a collection of datarows that consists of any selected rows of a datagridview. Does anyone know how I can do this Thanks, smtraber Maybe you could use the DataGridView.SelectedRows property which returns a collection of the selected rows. ...Show All

  • Visual Studio Team System How to capture the form request in a https site

    Hi, all I have a question about how to capture https request when click some "save" button of my site, because there is some javascript source, so VS can not capture it , does anyone knows how to capture the whole request Thanks very much. Yes, that's means: I try to manually form the request, but i don't know the request content that sent to the web site after i click some "save" button. Do you know any method to do that thanks very much. ...Show All

  • Visual C# Problem with the database attached to my Solution

    Hi I have a c# window form application and I have a attached a database to my solution. The problem is that everytime Im debugging my project the database get overwritten int the debug folder and all the data will be lost. Is there a way to stop this. ...Show All

  • Visual Basic I want to unload a web page when it is done. How do I do that?

    After I have finished with a web page, it is important that it reset for the next use. I would think unloading it would be the best way to do it, but where do I create the event to unload it (Also by unloading it, I should be forcing the form load event to happen when it is called again, which I want). What exactly does the code look like to do this. Am I safe to assume the code would be the same for both VB 2005 and 2003 Dear Customer, I did not understand your scenario very much. Are you coding with a Winform application or a Web Form Application(ASP.NET) For a Winform, you can ...Show All

  • Software Development for Windows Vista Tech Writer Questions on Longhorn Help

    We have a technical writer who has been researching the new help tools, Longhorn Help.  She has the following list of outstanding questions:     What tools are (will be) available to create Longhorn Help (Microsoft’s website indicates that they will be providing a LongHorn help compiler. So far ComponentOne, AuthorIT, eHelp, E-Jot, KeyWorks, WebWorks and Rascal have all provided an indication that they will eventually support Help.Longhorn. MadCap Flare is not listed on Microsoft’s website but states support on its own website.)   What will be the primary or quick access method used to get to help As in wil ...Show All

  • .NET Development unwanted ! character appearing in email content/message

    Hi I am using SMTP server to send email in a .net console application. Upon receiving the email , i see a  "!" character appearing in the email body. The email content/message size is around 500 characters. please help. thanks netjay Imports System.Web.Mail ------------------------ Dim objmsg As New MailMessage objmsg.BodyFormat = MailFormat.Html objmsg.From = FrmEmail objmsg.To = toEmail objmsg.Subject = ESubject objmsg.Body = EBody SmtpMail.SmtpServer = SMTPServer SmtpMail.Send(objmsg) --------------------------- Why does this only happen in outlook. The same ema ...Show All

©2008 Software Development Network