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

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

CeDiyez

Member List

keyler
bartonking
zeinab
airin
goh6613
RobARob
Phil Atkin
Tom_In_Dallas
Diggers
RGB
GoHogs
PatrickJoyce
GoPro
Hindin
Dixiecrat
Luke_Adams
Sir_K
duncan849
J.Meier
gorden
Only Title

CeDiyez's Q&A profile

  • Visual Studio Express Editions Convert extremely simple VB app to a self-contained exe?

    Is it possible for me to take a one-form, very simple application I wrote in VB and make in completely self-sufficient All the application does is have a couple buttons and a text field. The buttons simply call shell programs on the local machine. Kinda bloated to require a MASSIVE .net 2.0 install for such a simple app... Thanks. Eric F Crist wrote: What does autohotkey have to do with my program You can make probably the same exact thing in AutoHotkey and if you make it an exe with their tool you dont have to install AutoHotkey to get the exe to do what want because it is self-contained e ...Show All

  • Visual Studio Team System In Web Tests, How to Validate the values on a grid ?

    I want to validate the values that are shown on a grid , based on the values that are selected on a Combo.(Herein internally, the grid gets filled, when the combo box value is changed.) I would also like to know the selected row from the grid, so as to try it... or else Manual testing has always been there at our help   You can do this with a validation rule.  If the value in the combo is displayed on the same page as the grid, then you could do it with one valistion rule.  If the value of the combo is on the previous page, then you would need to use an extraction rule to pull out t ...Show All

  • Visual C# How to make toolbar

    i want to make google like toolbar in c#.net . please help me which way i start Amit Grover Hi Add toolSrip from toolbox properties System.ComponentModel. ComponentResourceManager resources = new System.ComponentModel. ComponentResourceManager ( typeof ( Form1 )); this .toolStrip1 = new System.Windows.Forms. ToolStrip (); this .toolStripButton1 = new System.Windows.Forms. ToolStripButton (); this .toolStripSplitButton1 = new System.Windows.Forms. ToolStripSplitButton (); this .toolStripTextBox1 = new System.Windows.Forms. ToolStripTextBox (); this .toolStripProgressBar1 = ...Show All

  • SQL Server PDF files with images get unexpectedly large in SQL Server 2000 Reporting Services

    When using quite small JPEGS (~ 800 KB) in a report the exported PDF is a few megabytes of size. Am I missing something (e.g. some kind of compression) Can anyone give me a hint on this one Thanks, Neno There is a known bug in 2000 (which I know wasn't fixed in the SP2 beta -- don't know about SP2 RTM, though) in the PDF renderer -- It causes images of any type to be converted to bitmaps, then rendered. I bet this is what you're running into. ...Show All

  • SQL Server Multiple details sections, possible?

    In a table the details section is called "table1_Details_Group". Is it possible to add a second details group so that I can have the two groups have different group properties I'm trying to avoid creating a second table and using an expression to only show one at a time. Again Thanks. possible poss bile poss-bile possibler possibly Edit... Revert to "possbile" See this tutorial on adding groupings to a report. It uses a table for an example. http://msdn2.microsoft.com/en-us/library/ms170623.aspx ...Show All

  • .NET Development HTTPS?

    Hello everyone, Just want to know if there's a reliable article about implementing HTTPS or Secured Site in .NET using ASP.NET (VB CodeBehind). Thanks in advance. Hai Jon There is a chapter about inplementing SSL [https] in the study guide[book] of Exam 70-315 ie MCAD/MCSD Self-Paced Training Kit: Developing Web Applications with MicrosoftR Visual BasicR .NET and Microsoft Visual C# .NET You can find details about the book in the following link http://www.microsoft.com/MSPress/books/6714.asp Jose ...Show All

  • Software Development for Windows Vista gethostentry does not work correctly under Vista

    Hi all, Found an interesting issue/bug with VS 2005 running on Vista 5308 on vista the first entry works perfectly. ipHostInfo = Dns.GetHostEntry("212.158.200.223") and this one fails with 'No such host is known' ipHostInfo = Dns.GetHostEntry("62.49.163.242") if you change the GetHostEntry to GetHostByAddress it all works after doing a lot of testing the issue seems to be with the first octet being under 100 e.g. 62. I have tested this on a number of known working IP's and the error is the same, if I run the same code on Windows XP all the above code works. I have unbound the IPv6 protocol to elimi ...Show All

  • SQL Server DBMail permission error

    I am using DBMail to send an email notification at the completion of service broker process and have been getting the following security error: Msg 229, Level 14, State 5, Procedure sp_send_dbmail, Line 1 EXECUTE permission denied on object 'sp_send_dbmail', database 'msdb', schema 'dbo'. I have given the userID used to run the Service Broker, databasemailuserrole in msdb as per instruction in the msdb. I have also given it execute permission on the sp_send_dbmail but keep getting the error. The service broker is run using a sql login and the dbmail profile is set as public profile. Any suggestions would be much appreciated. ...Show All

  • .NET Development Moving database table details to a table in my application

    Hi, I have a problem, i want to move the information of the tables such as the fields and constraints and every related information to a local table. i am to the use that local table in my application. so the details from the database should be exactly matched. This must be working with any database. There should also be an edit option to set the relationship manually (Eg. to set the foreign key relationship manually). can anyone help with the code or logic on how to do this Thanks in advance.. Regards, satish.r Hi, I ll Make it very clear... My task is to create a data dictionary with backend MS SQ ...Show All

  • Visual Studio 2008 (Pre-release) Will the lastest version of WCF work with the final release of VS2005 and CLR 2.0?

    nt Yes, the November CTP and the December CTP both work with VS 2005 RTM. See my blog post for instructions: http://www.dasblonde.net/PermaLink,guid,f49e58a6-9f5a-431c-aff0-60a3b7390ac0.aspx   ...Show All

  • Visual Studio Express Editions String to DWord

    How can I turn a string into a Dword OK , the following code will take a Hex value as a string and turn it into a 16, 32 or 64 bit integer value. Dim sHex As String = "FFE2" Console.WriteLine(sHex) Dim lng0 As Integer = Convert.ToInt16(sHex, 16) Console.WriteLine(lng0) Dim lng1 As Integer = Convert.ToInt32(sHex, 16) Console.WriteLine(lng1) Dim lng As Long = Convert.ToInt64("FF", 16) Console.WriteLine(lng1) ...Show All

  • Visual C++ function return more than one value

    Hi Guys This is just a general question. I am not sure whether this is the right place to ask(as I am new to this forums). Well my doubt is, "can a function return more than one value(other than array)" for example:  return result1,result2; if so how would the function be called (supposing "value1,value2=function_()" ) It would be great if anybody can help me with this Well, the term 'function' has a mathematical background, and it maps an input to exactly one output.  You are asking for a relation, a many-to-many-sort of concept.  Sorry, programming languages don't generally do this kind of thing unless you don't mind m ...Show All

  • Windows Forms Invalid value for 'OSVersion'

    Error ' Invalid value for 'OSVersion' during Publish application via Publish Wizard. Thereafter no more able to compile the solution/project whitout error Thanks in advance for any hints, ideas.     I have the same problem. Suddenly none of my apps will compile due to this error. I don't see OSVersion in my Environment Variables -- actually it's two temp files, I'm not sure what going on with our AD policies... ...Show All

  • Visual Studio Express Editions VB 2005 Beta 2 Indepenent of .NET

    Is there any way to compile a program (in VB2005 Beta2) and make it run independently of .NET Framework ...Show All

  • Windows Forms Selecting distinct values from a view using RowFilter?

    Hi, I'm trying to populating multiple ComboBox controls from a single DataSet with one table.  The dataset has 6 columns and the data is hierarchical so only the last column has unique values. Each combobox on my screen applies to one of the columns, but I obviously do not want any of the comboboxes to have duplicates.  I initially set up a D ...Show All

©2008 Software Development Network