Software Development Network Logo
  • .NET Development
  • SharePoint Products
  • Visual Basic
  • Visual C#
  • Windows Vista
  • IE Development
  • Smart Devicet
  • SQL Server
  • Visual FoxPro
  • Game Technologies
  • Visual Studio
  • VS Team System
  • Microsoft ISV
  • Visual C++
  • Windows Forms

Software Development Network >> William Vaughn's Q&A profile

William Vaughn

Member List

KevinAtlanta
Yaroslav Ivanov
Shortty
Vladislav Pereiaslavets
spattewar
GetCode
wesky
Altis1
longwood12345
TomPearson
StuartLodge
Andy Ho
Snow Teo
Chris Aus
robinjam
Ridge
AndrewEames
LeRoi
j0h4n
Zero_
Only Title

William Vaughn's Q&A profile

  • SQL Server Calendar Control issues

    Hi all, When I click on a calendar control for date parameters the page will freeze or throw a java script error. This does not happen all the time, and is not isolated to one PC. It happens randomly on several PCs. Is there any known issue with this control regards, Bill Just to clarify, we are aware of the issue with the script errors and how to fix it. In order to be fixed in a QFE, a customer will need to contact CSS and request the fix, otherwise look for the fix in a future release. If your are hindered by this issue, your best course of action is to contact Customer Support and request a fix. ...Show All

  • SQL Server How to change fontweight for different parts of text in textbox

    I'm trying to change the fontweight for different parts of text in a textbox, but it seems that the fontweight applies only to the textbox as a whole. Below is what I want to do, how can I get this to work I have a textbox inside a rectangle that is the same width of the rectangle, the text align is centered. The expression of the textbox is: ="Date from: " & Parameters!DateFrom.Value & " Date to: " & Parameters!DateTo.Value I would like "Date from:" and "Date to:" to be Normal weight and "Parameters!DateFrom.Value" and "Parameters!DateTo.Value" to be Bold weight. This whole line needs to be centered in the rectangle, I thought about breaking the line up ...Show All

  • Windows Forms Host Controls in Windows Forms DataGridView Cells

    Hi all, I'm trying to create a new cell within the new DataGridView (.NET 2 Beta). For example, I'm trying to create a cell which contain a RichTextBox, I succeed with the appearance of the rich text box controll but there is a lot of irregular behavior. Does someone did it already(not particular with RichTextBox) and can send an example. Unfortunately Microsoft example in the link below doesn't accessible. http://whidbey.msdn.microsoft.com/library/default.asp url=/library/en-us/dv_fxmclictl/html/e79a9d4e-64ec-41f5-93ec-f5492633cbb2.asp 10X in advance, Nir Oren There is already a DataGridViewComboBoxColumn; you don't need to create your own to handle the editing-control events. To add handlers to editing-control events, you must d ...Show All

  • Game Technologies: DirectX, XNA, XACT, etc. 3D Playing Cards ?

    How would I approach a 3D representation of a playing card(s) If using a model, would 52 different models be required so that each card has it's own texture Can user primitives (i.e. 2 triangles to make a card shape) have different textures on each side What would be the best method for this Bill Reiss wrote: And when I say I'd like a 3D card rendering engine, I'm not talking about the dime-a-dozen card engines out there, I'm talking about something almost photo-realistic for the cards (similar to how pretty the Pocket-Jongg sample in the video montage makes those mah-jongg tiles look). And I'd like it to be free to the XNA community. Hey well I can dream. So who wants to take that project on ...Show All

  • Visual Studio Problems with table borders

    Hi, if I have two cells and border between them, it seems that I can set same border from both sides. From left cell I can set right border and right cell - left border. In design view, If i set that border only from left cell it will show gray line (as no border). But when I preview it in the form, it shows border! So unless I set border from both cells it is showed as I expect in design view, but that doubles my work and is illogical. Thank you! ------------------------------------- Microsoft Visual Studio 2005 Version 8.0.50727.363 (SP.050727-3600) Microsoft .NET Framework Version 2.0.50727 Installed Edition: Professional I don't see the problem you are reporting. If I set the left cell right border, it shows up in design view. Co ...Show All

  • Smart Device Development RUNNING POCKET PC PROGRAM

    I HAVE ONE WINDOWS PROGRAM,"AAAA", AND ONE C++ PROGRAM,"BBBB". THE AAAA PROGRAM HAS ONE TEXTDRAW TO INTERFACE TO THE BBBB PROGRAM. I AM NOT ABLE TO GET THE BBBB PROGRAM TO RUN. I HAVE 3 TYPES OF BUILDS, WIN32 CONSOLE, WIN32 APPLICATION, AND ONE POCKET PC 5.0 THE SMART DEVICE AND THE WIN32 APPLICATION STOP ON THE BBBB PROGRAM AT THE MAIN() FUNCTION. THE CONSOLE RUNS THE BBBB PROGRAM AS A CONSOLE. I AM TRYING TO WRITE TO THE WINDOWS SCREEN FROM THE BBBB PROGRAM. ALL I GET IS HELLO WORLD. I AM SUPPOSE TO GET HELLO WORLD AND THEN A 21 X7 INPUT SCREEN. WHEN I RUN THE BBBB PROGRAM AS A CONSOLE I GET THE 21X7 INPUT SCREEN, SO MY SCREEN HANDLER IS WORKING. I CAN PROGRAM WINDOWS TO GENERATE A 21X7 INPUT SCREEN, EXCEPT I NE ...Show All

  • SharePoint Products and Technologies BDC- Displaying Date Formats

    Hi In my BDC application file, I have formatted the date to a VarChar using the Convert Function as I don't want the time to be displayed. For E.g. In the query I have used Convert(VarChar(25),Date,102) to format the date. The query is correct. I have declared the date as System.String in the BDC application file and yet it displays the time part in the date as '2006/01/05 12:00:00 AM'. Am I missing something here Or is it a bug Thanks and Regards Guruprasad Karnik Hi, I was facing the same problem... but I did it by different way. I format the date using xsl, below is code snipt: < xsl:value-of select = " msxsl:format-date(string(@Date), 'dd MMM yy') " /> Hop ...Show All

  • Windows Live Developer Forums Reducing Browser Memory Leaks

    I spotted this in the google API documentation and wonder if it has been address in VE Reducing Browser Memory Leaks The Google Maps API encourages the use of function closures , and the API event handling system GEvent attaches events to DOM nodes in such a way that almost inevitably causes some browsers to leak memory, particularly Internet Explorer . Version 2 of the Maps API introduces a new method, GUnload() , that will remove most of the circular references that cause these leaks. You should call GUnload() in the unload event of your page to reduce the potential that your application leaks memory: I just posted a reply to another thread about memory leaks. To solve the memory leak problem, call Dispose in the page u ...Show All

  • .NET Development need help inserting into a dbf file

    Hi, I am using visual studio 2005 and this is an ASP.NET 2 application the dbf file is a dbase 3 file. How do i get this to insert the record into the table. I have the current vfpoledb drivers. Dim SQL As String , ret As String SQL = "INSERT SHIPDATE,TRANSACTIO VALUES('01/01/06',11111)" Dim ConnString As String ConnString = "Provider=vfpoledb.1;" + _ "Data Source=" + _ "'f:\logdavid.dbf'" + _ ";password='';user id=''" Dim oConn As OleDbConnection oConn = New OleDbConnection oConn.ConnectionString = ConnString oConn.Open() Dim oCommand As OleDbCommand oCommand = New OleDbCommand oCommand.CommandType = ...Show All

  • Visual Basic Just trying to understand?

    Below is the code that I got from MSDN help files it shows Encryption/Decryption, I want to use it in my program but first I thought I would try to understand it on it's own, so I have a form with two text boxes and a button, when the button is pressed text appears in the text boxes. What I want is a 3rd textbox that shows me the encrypted data, what variable do I use to show this THE EXAMPLE CODE Imports System Imports System.IO Imports System.Security.Cryptography Public Class Form1 Private Sub Button1_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles Button1.Click Try Dim original As String = "Here is some data to encrypt!" ' Create a new instance of the RijndaelManaged ...Show All

  • Software Development for Windows Vista Power icon problemw

    Hello, I've just installed the Windows Vista Beta 2 (Build 5384) and so far so good, except for one thing: somehow i can't activate the option to show the power icon on the "notification are" of the "taskbar". When i go to the properties of the "taskbar", and then go to the "notification area" options, i'm allowed to select to always show the clock, volume and network icons, but not the power icon. Do you know what can i do to fix this problem Because of this problem, i never know when the battery is low. Thanks for your help!! Looks I'm not the only one with that problem. I also tried to install the XP drivers, but with no results too. Lets just hope that ...Show All

  • SQL Server blank passwords

    Is there a way to test for blank passwords on logins using SMO Thanks! I also have a Tsql script to check for blanks. Wanted to make sure i wasn't missing something here. Is the performance acceptable iterating through the Login collection or would using TSQL and reading the results to a data table be the better route ...Show All

  • SQL Server report parameters grouping

    Hi, I have 2 groups of parameters in my report let's say group1 (par1, par2, par3) and group2 (par4, par5, par6). User supposed to select at least 1 value for each parameter. Right now all parameter selection drobdown boxes laid out in order of creation, which confuses the users like bellow. par1 dropdown1 par2 dropdown2 par3 dropdown3 par4 dropdown4 par5 dropdown5 par6 dropdown6 and so forth Is there any way to visibly separate those groups, such as bellow: par1 dropdown1 par3 dropdown3 par2 dropdown2 par4 dropdown4 par5 dropdown5 par6 dropdown6 Thank you ...Show All

  • Windows Forms Runtime listview width?

    lv is a ListView created & filled at runtime from a DataTable dt. It must adjust itself to a large variety of queries, so it must know how to autosize, so we add columns to it with Width=-1: ListView lv = new ListView(); for ( i = 0; i < icols; i++ ) { lv.Columns.Add( dt.Rows .ItemArray[0].ToString(), -1, HorizontalAlignment.Left ); } and they are populated from dt: for ( i = 0; i < dt.Rows.Count; i++ ) { sRow = new string[icols]; for( int j = 0; j < icols; j++ ) { sRow[j] = dt.Rows .ItemArray[j].ToString(); } ListViewItem lvi = new ListViewItem( sRow ); lv.Items.Add( lvi ); } Now to calculate the size of the container dialog window (to which lv will be anchored), I need th ...Show All

  • Visual Basic Save and Load

    I am a novice, I have an application with multiple labels and textboxes, which are filled by the user, I want to be able to save the data in the text boxes, and open it again later with the same data. Please any help would be great thanks poon23 'Write text Private Sub Command1_Click() Open "C:\Documents and Settings\kada\My Documents\Textsave\txt3.txt" For Output As #3 Open "C:\Documents and Settings\kada\My Documents\Textsave\txt2.txt" For Output As #2 Open "C:\Documents and Settings\kada\My Documents\Textsave\txt1.txt" For Output As #1 Write #1, Text1.Text Close #1 Write #2, Text2.Text Close #2 Write #3, Text3.Text Close #3 End Sub 'Read text Private Sub Command2_Click() Dim aString As St ...Show All

©2008 Software Development Network