jomunoz's Q&A profile
Internet Explorer Development IE 7 RC1 Breaks Scripts
I just installed IE 7 RC1 and my application scripts stopped working. An example: Dim IE, doc, pics Set IE = CreateObject("InternetExplorer.Application") IE.navigate "about:blank" Do until IE.ReadyState = 4: WScript.Sleep 50: Loop Set doc = IE.document doc.write("test test <img src='abc.jpg'> test") set pics = doc.all.tags("IMG") pics.length now returns 0 Help! Help! What should I modify Thanks in advance kk PS: It was still ok in the beta before RC1 I would like to let all know that after I installed the golden IE7, everything works like before in IE6 with nothing amiss, and without me having to modify anything. Thanks Microsoft. - ...Show All
Windows Forms Autocomplete ComboBox
Is there a way to set the size of the autocomplete dropdown You know when you type in a text in the combobox it will suggest come values in a dropdownlist. Can the size of the thing be set Thanks, does someone already know how to do this I want to manually specify the width of the autocomplete dropdownlist, here is how my autocomplete dropdownlist looks like in this moment: http://img364.imageshack.us/img364/1429/muestraincorrectoautocoix4.png but I can't find how to do it, I only found this thread ...Show All
SQL Server Can't deploy a Report Model
I'm trying to deploy a report model in SSRS 2005 and I'm getting the following error: Error 1 The permissions granted to user 'phikappa' are insufficient for performing this operation. I've looked in the help topics and found the role assignment stuff, but I was totally confused as to what it was trying to tell me. I'm an admin on the box(server) and I'm working directly on the server (through Remote Desktop). I've deployed SSAS cubes and reports without a problem, but this is my first time using Report Model. Any help is appreciated. ...Show All
Software Development for Windows Vista These are simply suggestsions. These are annoyances I found in Windows XP that I noticed are still in Vista.
These are some things that annoyed me in Xp and annoy me still in Vista. 1. ) All open dialogue boxes default to List view and there is no way to change this. 2. ) Internet explorer favorites do not remain expanded when IE is closed and reopened. 3. ) Mapped drives do not make a drive letter in use which allows a removable drive to be assigned the same letter. What I mean is if I have a Hard drive. (C:) and a CDRom (D:) and a mapped drive (E:) and I plug in a jump drive the jump drive will assign itself the letter E: and I won't be able to use it till I change it in disk management. Thank you, Walter Dude I was offering suggestions, isn't that the whole point of the forums and beta software to get feedback from use ...Show All
Windows Forms ListView Items Clear Problem
I want to know which event will be fired when items cleared Eagle Tsui wrote: I want to know which event will be fired when items cleared The reason there doesn't need to be a Clear event, is because items are only cleared programmatically. It would be redundant. In other words, you will always know at what point items are being cleared. ...Show All
Windows Forms find out if data on the form has been changed/edited by a user in VB 2005
I need to find out if data on the form has been changed/edited by a user in VB 2005. I think there is a event "HASCHANGES". How do i implement this If the user has made changes to date, a messagebox must pop up asking to save changes or ignore changes. Alex Public Class Form1 WithEvents dt As New CostingDataSet.Bill_TypesDataTable Private ds As New DataSet Private Sub Form1_Load( ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase .Load dt.TableName = "dt" ds.Tables.Add(dt) Me .Bill_TypesTableAdapter.Fill(ds.Tables( "dt" )) Me .BillTypesBindingSource.DataSource = ds.Tables( "dt" ) ...Show All
Visual Studio Express Editions Extra wide Form - like 10000
Why is it not possible to make an extra wide form, like 10000 pixels or twips wide The scrollable bar is fine for moving to the extended width. It now seems to be limited by the atctual screen size. I would like to make a form that is a straight line layout of a circuit diagram, that would be of variable width based upon how many components are selected to be added. Unfortanatel, the size of your form is limited to the size of your screen at design time. But, there may be a way to override this by going into the windows form designer generated code. good luck ...Show All
Smart Device Development Problem to install CF 1.0 automatically.
Hi everybody, I need to get some help with CF 1.0 automatic installation on device. I have bat file with the script: ECHO Installing COMPACT FRAMEWORK... \Windows\wceload /noaskdest /delete 0 /noui \TEMP\netcf.all.wce4.ARMV4.cab When we cold boot device, installation begin,but it is asking for overwriting framework dll files (Yes, Yes to all and so on). I need to install framework without any questions. Is there some way to do that Thanks for help, Iouri. None I'm aware off – WCELOAD produces these messages and it seems they can not be suppressed. You might try /silent switch but it probably won't work. Possible solution would be to write an application (native) to detect the ...Show All
Software Development for Windows Vista Listen Activity in state machine workflows
Hi, Can we use listen activity in state machine workflows. Here is my case, where i need to use listen activity, (which i thouht it would be better) I have created state machine workflow for my web application and when web app raises some events, i have to change the state of my workflow from one state to another. In the workflow, I have an event, which executes sequence of 7 steps. When user clicks a button in my aspx page, i am raising the event and the event performs all these 7 steps. Its working fine! Now i got another requirement, that user can raise one more event (from other button, but the state remains the same), which is very similar to that of former, but it has one different step at #2 position of sequence. The rest of the seq ...Show All
Visual C# Database connection cannot be closed, DB cannot be copied
Hi, I want to copy my database from my application. I got an error message that said the file was in use. I checked my code, I acturally closed the connection before copying the database. My code is as followed. SqlConnection conn = new SqlConnection(DBConnectionString); SqlCommand sql = new SqlCommand("select DataVersion from globalData", conn); conn.Open(); SqlDataReader sqlreader = sql.ExecuteReader(); if (sqlreader.Read()) { userDBVerion = Convert.ToInt32(sqlreader["DataVersion"].ToString()); } else DocShare.userDBVerion = 1; sqlreader.Close(); sql.Connection.Close(); conn.Close(); //conn.dispo ...Show All
Software Development for Windows Vista The Microsoft Marketing Machine: the schema name change of the claims
So we go from schemas.microsoft.com to schemas.xmlsoap.org. Looks nice and "open". Too bad the domain belongs to Microsoft. LOL. Sorry about the late response. Quick Check of WHOIS: Registrant Name:Microsoft Corporation Registrant Organization:Microsoft Corporation Registrant Street1:One Microsoft Way Registrant Street2: Registrant Street3: Registrant City:Redmond Registrant State/Province:WA Registrant Postal Code:98052 Registrant Country:US Registrant Phone:+1.4258828080 Yep. Is that really a problem I'm not sure what you intended to say there, other than that Microsoft owns the XMLSOAP.org domain. g Garrett Serack | Program Manager |Federated Identity ...Show All
Visual Studio Express Editions Change properties from other forms
Topic says it all ... lets say i got x2 form ..and in form1 i got ritchtextbox how i change its txt or any other properties from from2 or other forms ... e.x in vb i used to do Form1.TextBox.text = ("w/e you want") Im protty much new in C# so i dont really understood it.. where does this code goes ..i putted it in forum2 and i want it to display the some value in the form1 richtextbox using System; using System.Collections.Generic; using System.ComponentModel; using System.Data; using System.Drawing; using System.Text; using System.Windows.Forms; using System.IO; using System.Net; namespace WindowsApplication1 { ...Show All
.NET Development GDI+ error
I sometimes recieve this error, about 80%. All I am doing is taking a snapshot of the screen and saving it to a file. Bitmap theScreenShotBitmap = new Bitmap ( Screen .PrimaryScreen.Bounds.Width, Screen .PrimaryScreen.Bounds.Height, PixelFormat . Format32bppArgb ); Bitmap PCVersion = theScreenShotBitmap; Graphics theGraphics = Graphics .FromImage(theScreenShotBitmap); theGraphics.CopyFromScreen( Screen .PrimaryScreen.Bounds.X, Screen .PrimaryScreen.Bounds.Y, 0, 0, Screen .PrimaryScreen.Bounds.Size, CopyPixelOperation .SourceCopy); theScreenShotBitmap.Save( "PCVersion.jpg" , ImageFormat .Jpeg); //HERE Error: External Error: A Generic error occured in GDI+ stack trace a ...Show All
SQL Server Windows XP Media and SQL Server 2005 HELP!
I want to run the developer edition of SQL Server 2005 on my new PC which has XP Media Center edition 2002. I haven't received any good answers on this and from the requirements, it looks like this setup isn't supported. Has anyone actually set this up and if so, how do I go about it Some have said that Express will run, some say maybe, but I need a solid answer. Please help! thx, Kat All of the OS and edition combinations that are supported are documented in BOL as well as on the MS website. I would seriously doubt that anything other than Express Edition or Everywhere Edition would run on Media Center. ...Show All
SQL Server Access to the property values for my expressions
I may be looking too hard for this but I can't find a way around it. I have an Expression and in that expression, I want to access a property on the same object (it would be great to get the properties of other objects as well). Example: I have a flat file connection where I defined the name of the flat file in my ConnectionString. I also have a variable that I have it linked to my dtsConfig which points to the proper folder name at run time. How can I create an expression similar to this: @[User::strFolder] + @[Connectionstring] where @[User::strFolder] is my variable and points to the correct folder for the given server the package is running on and @[Conenctionstring] is my made up name to access the VALUE of the Connecti ...Show All
