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

Software Development Network >> Golfnut 1969's Q&A profile

Golfnut 1969

Member List

ProgAniGod
Blue The Dog
newDBA02131
Dhiraj Prakash Gupta
SDevenshire
JimDneedtobeunique
Bloke No 7
NeoZon
t.Gnewuch
Ngoc Luu
Alex V.
ZSTRCZ
Amby
Glyn123
moogle2002
-Aaron S.
lapo3399
MarkJC
Dan Hedges
droid
Only Title

Golfnut 1969's Q&A profile

  • Visual Basic Multiline strings in components

    Hello, how can I build a multiline string in a component as the Items-Property of a ListBox-Component See this article at codeproject. ...Show All

  • Visual Basic Saving contentes of a graphic to a bitmap and load it

    Hello! I have a form with a picturebox and I turn the picturebox into a graphics object by using the creategraphics. I then draw a few things, and then I want to save what I have done in to a bitmap, but on disk, just on memory so I can reload it. I do like this    Public Shared Sub save(ByVal picb As PictureBox, ByRef bi As Bitmap)         Dim x As Bitmap         x = New Bitmap(picb.Size.Width, picb.Size.Height, picb.CreateGraphics())         bi = x     End Sub I want to save to a bitmap ...Show All

  • Visual Studio Express Editions I try to open excel file by i recrieve error same trianta99

    Please can anyone can help The following code works properly in Visual Basic 2003 but not in Visual Basic 2005 Express.         Dim EXL As New Excel.Application()         If EXL Is Nothing Then             MsgBox("Couldn't start Excel")             Exit Sub         End If         Dim WSheet As New Excel.Worksheet         EXL.Application.Visible = Tru ...Show All

  • SQL Server RowGuid

    Hi What impact is there in setting a unqiueidentifier primary key to be a row guid How does this impact performance How does this impact data file size Does it impact anything else Thanks Hi, I guess you don’t want to open up taht religious discussion, right There were many, many, many discussions already about this out there which can be find googling / MSNning around: http://www.google.de/search hl=de&q=GUID+Primary+Key&meta = There are really many opinions out there, for me (for my personal opinion) you should avoid them, as long as you don’t really need the ...Show All

  • Visual Studio Team System What is the criteria for running web validation rules?

    I have a web page that references a gif file, however the file is not there. This shows up in the results when I run a web test. If I add a validation rule it appears that the validation rule is not run, however if I add a validation rule where I do not have a missing gif file it appears to be fine. Tom I did not see this. Here is what I did. 1) I have a web site and I recorded a web test against the home page. 2) I renamed one of the gifs 3) Played back the test and verified the test failed because of the missing gif. It did fail 4) Added a validation rule to the request 5) Played test again and this time the request failed and ...Show All

  • Visual Studio Express Editions Dummies Books Vs The RTFM Route....

    Hi There I just bought two Books VB 2005 Express Edition For Dummies and VWD 2005 Express Edition for Dummies..... Is This The Way To Go or should I Have Went the RTFM Route Thanks... Cheers Bronco Billy "Beer and Fast Women are Ok... No Cigarettes or Hard Liquor Allowed" ReneeC - Back in the early nineties the long-defunct VB Tech Journal offered t-shirts that read: RTFM (Read the Fine Magazine)   - Steve Hoag ...Show All

  • Windows Forms Display null data as blank cell in datagrid

    I have inherited a database that sometimes has a 'null' value for a no comment field and other times has blank text for a no comment field. In the datagrid the null values are displayed as (null). How can I have them displayed simply as a blank cell This may be too late but I thought it may be helpful for others in&nbs ...Show All

  • Visual Studio Team System Web Services Projects not under source control

    Hi, I have installed TFS release candidate and most of the times the Web Services projects of of my solution arent under source control. Every other project ( e.g. win forms, libraries etc) can be (and always is) under the source control (lock symbol inf front of each file) but the Web services projects cant be!!! Trying to check in and check out my solution, yesterday, I lost the web services projects i had. I suppose that because they werent under the source control, the team explorer Deleted them during the process of "Get latest version". Do you know why Could you please help me Nick Macis ...Show All

  • Visual C# Database connection Dilema

    Hi I am working on an application with two main parts. The first part is the database I am connecting to and the second is an activeX control. I am also using SQL 2005 Express as my database server. The way I have incorperated the database into the app is by using a auto-generated dataset and table-adapter and then doing the rest of the coding myself. My app has to do a few simple queries and occationally write some information to the database. The dilema comes from the activeX control. The AX connects to a servlet. This servlet must also connect to the same database as my application, but when the servlet attempts a connection it bounces b ...Show All

  • Smart Device Development JIT Cache Size

    Hi! How large is the JIT cache size for compiled code in CF 2 Any difference to CF 1 Can it be changed How can I see how much if the cache is used Thanks for your help Sven If you follow the links from my link you'll end up in an msdn article that goes into detail... In any case... The registry key is HKLM\Software\Microsoft\.NETCompactFramework\PerfMonitor the value you creat under it is Counters you assing to that 1 Cheers Daniel ...Show All

  • Visual C++ TrackBar is displayed incorrectly inside ToolStripControlHost.

    Create a win form project Add a ToolStrip (toolStrip1) to Form1 Add the following code to InitializeComponent()     ToolStripControlHost^ ts = gcnew ToolStripControlHost( gcnew TrackBar);     ts->AutoSize = false ;     ts->Size = System::Drawing::Size(100, 20);     toolStrip1->Items->Add(ts); Run the App. Why does the TrackBar appear in the wrong place initially (seems to be halfway vertically in the toolstrip) If you maximize/minimize the form then restore it, the TrackBar will be displayed correctly. What am I missing here How to fix it   Thanks I am running ...Show All

  • Smart Device Development connection string error

    [code]      Dim rdaOleDBConnectString As String = "Data   Source=WINWIN;Initial Catalog=HOME; " & _             "User Id=<username>;Password = <password>" [/code]   Error Message = A required property is not specified. [ Property name = SubscriberConnectionString ]   can anyone tell me what is the error by the way what is DATA source and Initial Catalog means if the user id and password is blank is it put like <password> Hi, In case of SQL Server, the keywords mean: Data Source -> The name or ...Show All

  • Windows Forms passing values from form1 to an instance of form2.

    My application has two forms.  Form1 has a control array of buttons which i have created in another class.  The buttons on form1 open up multiple instances of form2, depending on the button number that is pressed.  Eg button 1 opens up an instance of form2 that has a tag value of 2 and text of 2 aswell.  The buttons represent t ...Show All

  • .NET Development SQL query problem .. simple question.

    let's say the query is the following string query = "select * from table where column = 'don't' "; as you can see .. the don't is apostrophize which cause a problem. How do you usually fix this issue. thanks, ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. Going nuts here.....

    Ok...I have scoured the Internet from MSDN to Google trying to find the answer to this one.... As I am new to the whole DirectX scene, I was viewing the Webcast for using C# with DirectX in game development, namely the Star Trooper game, if anybody has seen that one. I originally could not build the downloaded projects without many errors, but I installed the April sdk and now I can build all of them. The Problem is that when I Publish, I can no longer run the program...I get an error in:   clr20r3 p4 microsoft.directx.direct3dx exception code 0xe0434f4d FYI I have win xp pro, c# express, Directx9.0c, net 2.0 framework, april ...Show All

©2008 Software Development Network