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

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

Jimmer_BoatMan

Member List

aled
David Evan
ChrislRoy
sumguy
mightymoe
manik
hindi
jmota
Canuck
MattShepherd
GaryKnowles
Vivek Janakiraman
Carter Medlin
luscher
Chand Basha
Sam43
Prabu.P
kavijay
JodyByrd
jazman58
Only Title

Jimmer_BoatMan's Q&A profile

  • Visual Studio 2008 (Pre-release) RelativeSource binding

    before the Feb CTP, I Have this kind of syntax : Source = " {Binding Path=GlyphSource, RelativeSource=/ItemsControl} " This syntax doesn't work in the Feb CTP. What is the right syntax for the Feb CTP I haven't experimented with this change yet, but they changed RelativeSource binding a little. I don't have a FebCTP machine handy at the moment, but judging by the docs I believe the equivalen ...Show All

  • Windows Search Technologies WDS(BETA2) ,IE7(beta) and OneNote 2007

    Good Morning All, My question is twofold. I am running XP(sp2), IE7 and OneNote2007. When accesing OneNote it states I have to download/install WDS 3. I do the download, but WDS wont load or start. I have tried numerous times (rebooting, clean istalls of XP, Office and WDS) with no luck. Any suggeations Any help will be appreciated. John Smith Hi John, The 3.0 beta doesn't "start" like previo ...Show All

  • Visual C# How to prevent a form from being activated/gaining focus.

    I'm working on a project where I want to be able to click on a form but not have the form keep focus. Although not what I'm working on at the moment but the Windows On Screen Keyboard is a good example. The OSK when clicked on doesn't take focus, but keeps the focus on the control that had the focus before. It does this but still is able to proccess an onclick event and send the keystroke over to the control that has focus. I'm needing to do som ...Show All

  • Smart Device Development VOice recording with C# ( Application for a pocket PC)

    Hi all, I have a project about developping an application that records voice using the C# language. Than i have to send the file back to a server. Can anyone help me plz Thank YOu Take a look at this search result on the CF newsgroups: http://groups.google.com/groups as_q=voice+recording&num=10&scoring=r&hl=en&as_epq=&as_oq=&as_eq=&as_ugroup=*.compactf ...Show All

  • Visual Studio Team System Recording & Populating Form Fields

    The UIApp issue that we were having can be attributed to one thing: the test is not grabbing certain hidden form values (such as __EVENTARGUMENT) during runs. During recording, it assigns extraction rules. However, when the tests are then run, it is not always extracting these values that are passed in the POST. No javascript manipulation is taking place. The test simply isn't grabbing the values.  I have found a tool that grabs and shows ...Show All

  • Windows Forms Comunication between two forms

    Hi at all,    i need to set the DataSource of my grid situated in FormA from FormB. How can I do Is it possible thanks i'm a newbie mikunos Yes its possible to pass values between 2 forms. There are many ways to acheive the same, depending upon your scenerio Are Form A and Form B part of the the same application If they are you can write a new Event on Form A and Fire It when the user selects a new data source. Form B w ...Show All

  • Visual Studio Express Editions RTFBox, Save & SaveAs

    Hi, I have a little question about the save and save as setting for my notepad app. When i open a file, and then try and normally save it it does not want me to because it cannot locate the directory the file has been opened with. If i change the rtfMain.SaveFile(SaveFileDialog1.FileName, RichTextBoxStreamType.PlainText) to rtfMain.SaveFile(openfiledialog1.FileName, RichTextBoxStreamType.PlainText) it works fine. But then you ...Show All

  • Visual Basic How to get a string between 2 arguments.

    im searching a textbox for a string using 2 arguments. i will be getting more then one of each. the arguments are [ and ]. for example: the quick brown [fox] jumps over the lazy [dog]. i want to be able to get [fox] and [dog] using the arguments. i do not want to use arrays because it will be to slow. so my output will be [fox] and then it will be [dog]. i searched the net for something like this but nothing helped. thanks. ...Show All

  • Visual Studio Team System Error 28100.Error loading Event web service.

    Hi,   During installation I got "Error 28100.Error loading Event web service.". Any idea what is going wrong TFS is being installed on a Virtual Machine.   Please feel free to contact me if you need any more information. Thanks, Bart ps. Is it possible to upload the setup log I went back to some lessons learned when installing tfs beta 2, one of which was to install wss before sql server (even though ...Show All

  • SQL Server Custom connection manager development sample?

    Does anyone has code/sample/tutorial/pointer to developing custom connection manager with a custom UI. And then developing a custom task with a custom UI that can point to this custom connection manager... and passing values during runtime from UI to the custom class. TIA, Nitesh The first updated Web release of BOL will contain one sample that works with SQL Server and simply asks for server name...a kind of "Hello World" version of what y ...Show All

  • SQL Server Textbox Calculations

    I have 2 text boxes on my report that contain values. I want to be able to divide one by the other and the result placed in a third. I have try some variants on the expression builder to do the sum but it won't have it. Obviously I can't use =Fields!etc as they are not fields in the soure data for the report. What is the syntax to basically say TextBox3Value = Result of (Textbox1.Value / Textbox2.Value) Regards Add =ReportItems!Textb ...Show All

  • .NET Development Datagrid with check box

    hi I have created a datagrid with DatagridBoolcolumn as 1st item. How to write code for user interaction At present the user can select/deselect check box, but it wont reflect when user moves to another column.. Hope someone can help me Regards         hi frnds... i have finally found the solution for the problem.... my databse is Oracle..and there is no boolean database type... in that c ...Show All

  • .NET Development Uninstalling .NET Framework 1.1

    I have installed .NET Framework 2.0 . Can I uninstall .NET Framework 1.1 Yes, if you are sure that you don't have any applications that depend on .NET Framework 1.1. ...Show All

  • Visual C++ Help ?

    If i read some of the other post i came ot the conclusion that this was somewhat gonna be the dummest question on the forum i guess... but here it goes anyway When i use the Visual C++ compiler / environment ... the free downloadable one. and i write this sourcecode #include <iostream> #include <iomanip> using namespace std; main() { cout >> "Hello world!" ; cin.get(); } it would run and compile great ...Show All

  • .NET Development can we use stored procedurem to return several results (accessing SQL server)

    Can I use sqlDatareader with a stored procedure to return more than one reultset that I ll be accessing through MyDatareader.MoveNext Any Little example on both the stored proc and the .Net side Thanks Stored Procedure: CREATE PROCEDURE DISPLAYDETAILS AS SELECT * FROM EMPLOYEES SELECT * FROM CUSTOMERS VB.net code Dim con As New SqlConnection Dim da As SqlDataAdapter Dim com As SqlCommand Dim dr ...Show All

©2008 Software Development Network

powered by phorum