473,395 Members | 1,393 Online
Bytes | Software Development & Data Engineering Community
Post Job

Home Posts Topics Members FAQ

Join Bytes to post your question to a community of 473,395 software developers and data experts.

Need Help With Translation C#? to VB

Hello all

I'm trying to use the scrollwindowex api however I have the same problem as
this guy had. There is an answer here in the reply. I just need some help
converting it to VB.Net
Thanks Peter, it works. I have another question for you. What does the
clip rectangle passed on the 5th argument does?

Thanks
Tony
"Peter Huang [MSFT]" <v-******@online.microsoft.com> wrote in message
news:VQ**************@cpmsftngxa09.phx.gbl...
Hi Tony,

I consult the MSDN and find that the RECT structure required by the ?
°ScrollWindowEx¡± API is different from the class ¡°Rectangle¡±. I think
you may declare your ¡°ScrollWindowEx¡± API as follows.
public class win32
{
[DllImport("user32.dll")]
public static extern int ScrollWindowEx(
IntPtr hWnd,
int dx,
int dy,
[MarshalAs(UnmanagedType.Struct)] ref Rectangle prcScroll,
[MarshalAs(UnmanagedType.Struct)] ref Rectangle prcClip,
IntPtr hrgnUpdate,
[MarshalAs(UnmanagedType.Struct)] out Rectangle prcUpdate,
[MarshalAs(UnmanagedType.U4)] int flags);

}
Then you may invoke the API as below.
private void button1_Click(object sender, System.EventArgs e)
{
Rectangle rt = new Rectangle();
Rectangle rtout = new Rectangle(0,0,10,10);
Rectangle rtin = new
Rectangle(20,20,richTextBox1.Width,richTextBox1.He ight);
int rr=win32.ScrollWindowEx(richTextBox1.Handle,0,10,r ef rtin,ref
rt,IntPtr.Zero,out rtout,0);
System.Console.WriteLine(rr.ToString());
}

Hope this will help.

Best regards,
Peter Huang

Regards,

Peter Huang
=============
This posting is provided "AS IS" with no warranties, and confers no

rights.

--------------------
>From: "Tony" <en*******@hotmail.com>
>Subject: Calling the ScrollWindowEx API
>Date: Fri, 4 Jul 2003 08:45:32 +0800
>Lines: 21
>X-Priority: 3
>X-MSMail-Priority: Normal
>X-Newsreader: Microsoft Outlook Express 6.00.3790.0
>X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
>Message-ID: <ee**************@TK2MSFTNGP10.phx.gbl>
>Newsgroups: microsoft.public.dotnet.languages.csharp
>NNTP-Posting-Host: cm203-168-247-148.hkcable.com.hk 203.168.247.148
>Path: cpmsftngxa09.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP10.phx.gbl
>Xref: cpmsftngxa09.phx.gbl microsoft.public.dotnet.languages.csharp:30519 >X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
>
>Hi, I am having problem to scroll only a partion of a window using the
>ScrollWindowEx api function. The code is below and any help is pleased.
>Thanks in advance.
>
>
>[DllImport("user32.dll")]
>private extern int ScrollWindowEx (IntPtr handle, int dx, int dy,Rectangle >lprcScroll , Rectangle lprcClip, IntPtr hrgnUpdate, out Rectangle
>lprcUpdate, int fuScroll);
>
>Rectangle rt;
>
>// This works
>ScrollWindowEx(Handle, 0, 30, Rectangle.Empty, Rectangle.Empty,

IntPtr.Zero,
>out rt, 0);
>
>// This doesn't work
>ScrollWindowEx(Handle, 0, 30, new Rectangle(20, 20, ClientSize.Width,
>ClientSize.Height), Rectangle.Empty, IntPtr.Zero, out rt, 0);


URL: http://www.pcreview.co.uk/forums/thread-1349023.php

I have the same problem

This works:
ScrollWindowEx(Handle, 0, 30, Rectangle.Empty, Rectangle.Empty, IntPtr.Zero,
Rectangle.Empty, 0)

This doesn't work
ScrollWindowEx(Handle, 0, 30, new Rectangle(20, 20, ClientSize.Width,
ClientSize.Height), Rectangle.Empty, IntPtr.Zero, rectangle.empty, 0)

Many Thanks
Scott
Nov 21 '05 #1
3 1517
Our Instant VB C# to VB.NET converter (www.instantvb.com) produces the
following (assuming I've pasted the C# code correctly):

Public Class win32
<DllImport("user32.dll")> _
Public Shared Function ScrollWindowEx(ByVal hWnd As IntPtr, ByVal dx As
Integer, ByVal dy As Integer, <MarshalAs(UnmanagedType.Struct)> ByRef
prcScroll As Rectangle, <MarshalAs(UnmanagedType.Struct)> ByRef prcClip As
Rectangle, ByVal hrgnUpdate As IntPtr, <System.Runtime.InteropServices.Out()>
(MarshalAs(UnmanagedType.Struct)) ByRef prcUpdate As Rectangle,
<MarshalAs(UnmanagedType.U4)> ByVal flags As Integer) As Integer

End Function
End Class

Private Sub button1_Click(ByVal sender As Object, ByVal e As
System.EventArgs)
Dim rt As Rectangle = New Rectangle()
Dim rtout As Rectangle = New Rectangle(0,0,10,10)
Dim rtin As Rectangle = New
Rectangle(20,20,richTextBox1.Width,richTextBox1.He ight)
Dim rr As
Integer=win32.ScrollWindowEx(richTextBox1.Handle,0 ,10,rtin,rt,IntPtr.Zero,rtout,0)
System.Console.WriteLine(rr.ToString())
End Sub

David Anton
www.tangiblesoftwaresolutions.com
Home of:
Instant C#: VB.NET to C# Converter
Instant VB: C# to VB.NET Converter
Instant J#: VB.NET to J# Converter

"Scott Gunn" wrote:
Hello all

I'm trying to use the scrollwindowex api however I have the same problem as
this guy had. There is an answer here in the reply. I just need some help
converting it to VB.Net
Thanks Peter, it works. I have another question for you. What does the
clip rectangle passed on the 5th argument does?

Thanks
Tony
"Peter Huang [MSFT]" <v-******@online.microsoft.com> wrote in message
news:VQ**************@cpmsftngxa09.phx.gbl...
Hi Tony,

I consult the MSDN and find that the RECT structure required by the ?
°ScrollWindowEx¡± API is different from the class ¡°Rectangle¡±. I think
you may declare your ¡°ScrollWindowEx¡± API as follows.
public class win32
{
[DllImport("user32.dll")]
public static extern int ScrollWindowEx(
IntPtr hWnd,
int dx,
int dy,
[MarshalAs(UnmanagedType.Struct)] ref Rectangle prcScroll,
[MarshalAs(UnmanagedType.Struct)] ref Rectangle prcClip,
IntPtr hrgnUpdate,
[MarshalAs(UnmanagedType.Struct)] out Rectangle prcUpdate,
[MarshalAs(UnmanagedType.U4)] int flags);

}
Then you may invoke the API as below.
private void button1_Click(object sender, System.EventArgs e)
{
Rectangle rt = new Rectangle();
Rectangle rtout = new Rectangle(0,0,10,10);
Rectangle rtin = new
Rectangle(20,20,richTextBox1.Width,richTextBox1.He ight);
int rr=win32.ScrollWindowEx(richTextBox1.Handle,0,10,r ef rtin,ref
rt,IntPtr.Zero,out rtout,0);
System.Console.WriteLine(rr.ToString());
}

Hope this will help.

Best regards,
Peter Huang

Regards,

Peter Huang
=============
This posting is provided "AS IS" with no warranties, and confers no

rights.

--------------------
>From: "Tony" <en*******@hotmail.com>
>Subject: Calling the ScrollWindowEx API
>Date: Fri, 4 Jul 2003 08:45:32 +0800
>Lines: 21
>X-Priority: 3
>X-MSMail-Priority: Normal
>X-Newsreader: Microsoft Outlook Express 6.00.3790.0
>X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
>Message-ID: <ee**************@TK2MSFTNGP10.phx.gbl>
>Newsgroups: microsoft.public.dotnet.languages.csharp
>NNTP-Posting-Host: cm203-168-247-148.hkcable.com.hk 203.168.247.148
>Path: cpmsftngxa09.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP10.phx.gbl
>Xref: cpmsftngxa09.phx.gbl microsoft.public.dotnet.languages.csharp:30519 >X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
>
>Hi, I am having problem to scroll only a partion of a window using the
>ScrollWindowEx api function. The code is below and any help is pleased.
>Thanks in advance.
>
>
>[DllImport("user32.dll")]
>private extern int ScrollWindowEx (IntPtr handle, int dx, int dy,

Rectangle
>lprcScroll , Rectangle lprcClip, IntPtr hrgnUpdate, out Rectangle
>lprcUpdate, int fuScroll);
>
>Rectangle rt;
>
>// This works
>ScrollWindowEx(Handle, 0, 30, Rectangle.Empty, Rectangle.Empty,
IntPtr.Zero,
>out rt, 0);
>
>// This doesn't work
>ScrollWindowEx(Handle, 0, 30, new Rectangle(20, 20, ClientSize.Width,
>ClientSize.Height), Rectangle.Empty, IntPtr.Zero, out rt, 0);


URL: http://www.pcreview.co.uk/forums/thread-1349023.php

I have the same problem

This works:
ScrollWindowEx(Handle, 0, 30, Rectangle.Empty, Rectangle.Empty, IntPtr.Zero,
Rectangle.Empty, 0)

This doesn't work
ScrollWindowEx(Handle, 0, 30, new Rectangle(20, 20, ClientSize.Width,
ClientSize.Height), Rectangle.Empty, IntPtr.Zero, rectangle.empty, 0)

Many Thanks
Scott

Nov 21 '05 #2
Hello

Excellent, the conversion added some things I didn't however my orignal
problem is still there

I had to change the part:
<System.Runtime.InteropServices.Out()> (MarshalAs(UnmanagedType.Struct))

To (Guessing):
<System.Runtime.InteropServices.Out(), MarshalAs(UnmanagedType.Struct)>

The code as is does nothing though, I also had to change the ByRef to ByVal
and things started to happen.
but still the problem is:

This works:
ScrollWindowEx(Handle, 0, 30, Rectangle.Empty, Rectangle.Empty, IntPtr.Zero,
Rectangle.Empty, 0)

This doesn't work:
ScrollWindowEx(Handle, 0, 30, new Rectangle(20, 20, ClientSize.Width,
ClientSize.Height), Rectangle.Empty, IntPtr.Zero, rectangle.empty, 0)

Thanks for the conversion.
Scott.
"David Anton" <Da********@discussions.microsoft.com> wrote in message
news:4F**********************************@microsof t.com...
Our Instant VB C# to VB.NET converter (www.instantvb.com) produces the
following (assuming I've pasted the C# code correctly):

Public Class win32
<DllImport("user32.dll")> _
Public Shared Function ScrollWindowEx(ByVal hWnd As IntPtr, ByVal dx As
Integer, ByVal dy As Integer, <MarshalAs(UnmanagedType.Struct)> ByRef
prcScroll As Rectangle, <MarshalAs(UnmanagedType.Struct)> ByRef prcClip As
Rectangle, ByVal hrgnUpdate As IntPtr,
<System.Runtime.InteropServices.Out()>
(MarshalAs(UnmanagedType.Struct)) ByRef prcUpdate As Rectangle,
<MarshalAs(UnmanagedType.U4)> ByVal flags As Integer) As Integer

End Function
End Class

Private Sub button1_Click(ByVal sender As Object, ByVal e As
System.EventArgs)
Dim rt As Rectangle = New Rectangle()
Dim rtout As Rectangle = New Rectangle(0,0,10,10)
Dim rtin As Rectangle = New
Rectangle(20,20,richTextBox1.Width,richTextBox1.He ight)
Dim rr As
Integer=win32.ScrollWindowEx(richTextBox1.Handle,0 ,10,rtin,rt,IntPtr.Zero,rtout,0)
System.Console.WriteLine(rr.ToString())
End Sub

David Anton
www.tangiblesoftwaresolutions.com
Home of:
Instant C#: VB.NET to C# Converter
Instant VB: C# to VB.NET Converter
Instant J#: VB.NET to J# Converter

"Scott Gunn" wrote:
Hello all

I'm trying to use the scrollwindowex api however I have the same problem
as
this guy had. There is an answer here in the reply. I just need some help
converting it to VB.Net
>Thanks Peter, it works. I have another question for you. What does the
>clip rectangle passed on the 5th argument does?
>
>Thanks
>Tony
>
>
>"Peter Huang [MSFT]" <v-******@online.microsoft.com> wrote in message
>news:VQ**************@cpmsftngxa09.phx.gbl...
>> Hi Tony,
>>
>> I consult the MSDN and find that the RECT structure required by the ?
>> °ScrollWindowEx¡± API is different from the class ¡°Rectangle¡±. I
>> think
>> you may declare your ¡°ScrollWindowEx¡± API as follows.
>> public class win32
>> {
>> [DllImport("user32.dll")]
>> public static extern int ScrollWindowEx(
>> IntPtr hWnd,
>> int dx,
>> int dy,
>> [MarshalAs(UnmanagedType.Struct)] ref Rectangle prcScroll,
>> [MarshalAs(UnmanagedType.Struct)] ref Rectangle prcClip,
>> IntPtr hrgnUpdate,
>> [MarshalAs(UnmanagedType.Struct)] out Rectangle prcUpdate,
>> [MarshalAs(UnmanagedType.U4)] int flags);
>>
>> }
>> Then you may invoke the API as below.
>> private void button1_Click(object sender, System.EventArgs e)
>> {
>> Rectangle rt = new Rectangle();
>> Rectangle rtout = new Rectangle(0,0,10,10);
>> Rectangle rtin = new
>> Rectangle(20,20,richTextBox1.Width,richTextBox1.He ight);
>> int rr=win32.ScrollWindowEx(richTextBox1.Handle,0,10,r ef rtin,ref
>> rt,IntPtr.Zero,out rtout,0);
>> System.Console.WriteLine(rr.ToString());
>> }
>>
>> Hope this will help.
>>
>> Best regards,
>> Peter Huang
>>
>> Regards,
>>
>> Peter Huang
>> =============
>> This posting is provided "AS IS" with no warranties, and confers no
>rights.
>>
>> --------------------
>> >From: "Tony" <en*******@hotmail.com>
>> >Subject: Calling the ScrollWindowEx API
>> >Date: Fri, 4 Jul 2003 08:45:32 +0800
>> >Lines: 21
>> >X-Priority: 3
>> >X-MSMail-Priority: Normal
>> >X-Newsreader: Microsoft Outlook Express 6.00.3790.0
>> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
>> >Message-ID: <ee**************@TK2MSFTNGP10.phx.gbl>
>> >Newsgroups: microsoft.public.dotnet.languages.csharp
>> >NNTP-Posting-Host: cm203-168-247-148.hkcable.com.hk 203.168.247.148
>> >Path: cpmsftngxa09.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP10.phx.gbl
>> >Xref: cpmsftngxa09.phx.gbl

microsoft.public.dotnet.languages.csharp:30519
>> >X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
>> >
>> >Hi, I am having problem to scroll only a partion of a window using
>> >the
>> >ScrollWindowEx api function. The code is below and any help is
>> >pleased.
>> >Thanks in advance.
>> >
>> >
>> >[DllImport("user32.dll")]
>> >private extern int ScrollWindowEx (IntPtr handle, int dx, int dy,
>Rectangle
>> >lprcScroll , Rectangle lprcClip, IntPtr hrgnUpdate, out Rectangle
>> >lprcUpdate, int fuScroll);
>> >
>> >Rectangle rt;
>> >
>> >// This works
>> >ScrollWindowEx(Handle, 0, 30, Rectangle.Empty, Rectangle.Empty,
>> IntPtr.Zero,
>> >out rt, 0);
>> >
>> >// This doesn't work
>> >ScrollWindowEx(Handle, 0, 30, new Rectangle(20, 20, ClientSize.Width,
>> >ClientSize.Height), Rectangle.Empty, IntPtr.Zero, out rt, 0);


URL: http://www.pcreview.co.uk/forums/thread-1349023.php

I have the same problem

This works:
ScrollWindowEx(Handle, 0, 30, Rectangle.Empty, Rectangle.Empty,
IntPtr.Zero,
Rectangle.Empty, 0)

This doesn't work
ScrollWindowEx(Handle, 0, 30, new Rectangle(20, 20, ClientSize.Width,
ClientSize.Height), Rectangle.Empty, IntPtr.Zero, rectangle.empty, 0)

Many Thanks
Scott

Nov 21 '05 #3
Thanks for the bug report Scott - the fix will be in today's build.

David Anton
www.tangiblesoftwaresolutions.com
Home of:
Instant C#: VB.NET to C# Converter
Instant VB: C# to VB.NET Converter
Instant J#: VB.NET to J# Converter

"Scott Gunn" wrote:
Hello

Excellent, the conversion added some things I didn't however my orignal
problem is still there

I had to change the part:
<System.Runtime.InteropServices.Out()> (MarshalAs(UnmanagedType.Struct))

To (Guessing):
<System.Runtime.InteropServices.Out(), MarshalAs(UnmanagedType.Struct)>

The code as is does nothing though, I also had to change the ByRef to ByVal
and things started to happen.
but still the problem is:

This works:
ScrollWindowEx(Handle, 0, 30, Rectangle.Empty, Rectangle.Empty, IntPtr.Zero,
Rectangle.Empty, 0)

This doesn't work:
ScrollWindowEx(Handle, 0, 30, new Rectangle(20, 20, ClientSize.Width,
ClientSize.Height), Rectangle.Empty, IntPtr.Zero, rectangle.empty, 0)

Thanks for the conversion.
Scott.
"David Anton" <Da********@discussions.microsoft.com> wrote in message
news:4F**********************************@microsof t.com...
Our Instant VB C# to VB.NET converter (www.instantvb.com) produces the
following (assuming I've pasted the C# code correctly):

Public Class win32
<DllImport("user32.dll")> _
Public Shared Function ScrollWindowEx(ByVal hWnd As IntPtr, ByVal dx As
Integer, ByVal dy As Integer, <MarshalAs(UnmanagedType.Struct)> ByRef
prcScroll As Rectangle, <MarshalAs(UnmanagedType.Struct)> ByRef prcClip As
Rectangle, ByVal hrgnUpdate As IntPtr,
<System.Runtime.InteropServices.Out()>
(MarshalAs(UnmanagedType.Struct)) ByRef prcUpdate As Rectangle,
<MarshalAs(UnmanagedType.U4)> ByVal flags As Integer) As Integer

End Function
End Class

Private Sub button1_Click(ByVal sender As Object, ByVal e As
System.EventArgs)
Dim rt As Rectangle = New Rectangle()
Dim rtout As Rectangle = New Rectangle(0,0,10,10)
Dim rtin As Rectangle = New
Rectangle(20,20,richTextBox1.Width,richTextBox1.He ight)
Dim rr As
Integer=win32.ScrollWindowEx(richTextBox1.Handle,0 ,10,rtin,rt,IntPtr.Zero,rtout,0)
System.Console.WriteLine(rr.ToString())
End Sub

David Anton
www.tangiblesoftwaresolutions.com
Home of:
Instant C#: VB.NET to C# Converter
Instant VB: C# to VB.NET Converter
Instant J#: VB.NET to J# Converter

"Scott Gunn" wrote:
Hello all

I'm trying to use the scrollwindowex api however I have the same problem
as
this guy had. There is an answer here in the reply. I just need some help
converting it to VB.Net

>Thanks Peter, it works. I have another question for you. What does the
>clip rectangle passed on the 5th argument does?
>
>Thanks
>Tony
>
>
>"Peter Huang [MSFT]" <v-******@online.microsoft.com> wrote in message
>news:VQ**************@cpmsftngxa09.phx.gbl...
>> Hi Tony,
>>
>> I consult the MSDN and find that the RECT structure required by the ?
>> °ScrollWindowEx¡± API is different from the class ¡°Rectangle¡±. I
>> think
>> you may declare your ¡°ScrollWindowEx¡± API as follows.
>> public class win32
>> {
>> [DllImport("user32.dll")]
>> public static extern int ScrollWindowEx(
>> IntPtr hWnd,
>> int dx,
>> int dy,
>> [MarshalAs(UnmanagedType.Struct)] ref Rectangle prcScroll,
>> [MarshalAs(UnmanagedType.Struct)] ref Rectangle prcClip,
>> IntPtr hrgnUpdate,
>> [MarshalAs(UnmanagedType.Struct)] out Rectangle prcUpdate,
>> [MarshalAs(UnmanagedType.U4)] int flags);
>>
>> }
>> Then you may invoke the API as below.
>> private void button1_Click(object sender, System.EventArgs e)
>> {
>> Rectangle rt = new Rectangle();
>> Rectangle rtout = new Rectangle(0,0,10,10);
>> Rectangle rtin = new
>> Rectangle(20,20,richTextBox1.Width,richTextBox1.He ight);
>> int rr=win32.ScrollWindowEx(richTextBox1.Handle,0,10,r ef rtin,ref
>> rt,IntPtr.Zero,out rtout,0);
>> System.Console.WriteLine(rr.ToString());
>> }
>>
>> Hope this will help.
>>
>> Best regards,
>> Peter Huang
>>
>> Regards,
>>
>> Peter Huang
>> =============
>> This posting is provided "AS IS" with no warranties, and confers no
>rights.
>>
>> --------------------
>> >From: "Tony" <en*******@hotmail.com>
>> >Subject: Calling the ScrollWindowEx API
>> >Date: Fri, 4 Jul 2003 08:45:32 +0800
>> >Lines: 21
>> >X-Priority: 3
>> >X-MSMail-Priority: Normal
>> >X-Newsreader: Microsoft Outlook Express 6.00.3790.0
>> >X-MimeOLE: Produced By Microsoft MimeOLE V6.00.3790.0
>> >Message-ID: <ee**************@TK2MSFTNGP10.phx.gbl>
>> >Newsgroups: microsoft.public.dotnet.languages.csharp
>> >NNTP-Posting-Host: cm203-168-247-148.hkcable.com.hk 203.168.247.148
>> >Path: cpmsftngxa09.phx.gbl!TK2MSFTNGP08.phx.gbl!TK2MSFTN GP10.phx.gbl
>> >Xref: cpmsftngxa09.phx.gbl
microsoft.public.dotnet.languages.csharp:30519
>> >X-Tomcat-NG: microsoft.public.dotnet.languages.csharp
>> >
>> >Hi, I am having problem to scroll only a partion of a window using
>> >the
>> >ScrollWindowEx api function. The code is below and any help is
>> >pleased.
>> >Thanks in advance.
>> >
>> >
>> >[DllImport("user32.dll")]
>> >private extern int ScrollWindowEx (IntPtr handle, int dx, int dy,
>Rectangle
>> >lprcScroll , Rectangle lprcClip, IntPtr hrgnUpdate, out Rectangle
>> >lprcUpdate, int fuScroll);
>> >
>> >Rectangle rt;
>> >
>> >// This works
>> >ScrollWindowEx(Handle, 0, 30, Rectangle.Empty, Rectangle.Empty,
>> IntPtr.Zero,
>> >out rt, 0);
>> >
>> >// This doesn't work
>> >ScrollWindowEx(Handle, 0, 30, new Rectangle(20, 20, ClientSize.Width,
>> >ClientSize.Height), Rectangle.Empty, IntPtr.Zero, out rt, 0);

URL: http://www.pcreview.co.uk/forums/thread-1349023.php

I have the same problem

This works:
ScrollWindowEx(Handle, 0, 30, Rectangle.Empty, Rectangle.Empty,
IntPtr.Zero,
Rectangle.Empty, 0)

This doesn't work
ScrollWindowEx(Handle, 0, 30, new Rectangle(20, 20, ClientSize.Width,
ClientSize.Height), Rectangle.Empty, IntPtr.Zero, rectangle.empty, 0)

Many Thanks
Scott


Nov 21 '05 #4

This thread has been closed and replies have been disabled. Please start a new discussion.

Similar topics

14
by: Pierre Rouleau | last post by:
I have a problem writing self-testable modules using doctest when these modules have internationalized strings using gettext _('...'). - The main module of an application (say app.py) calls...
0
by: Matt | last post by:
Short Description: The Translation Hub is not picking up the TNS names file. I'm using Oracle 9ids. It doesn't work for any users and it has never worked since it's been installed. Long...
20
by: Bernd Fuhrmann | last post by:
Hi! I have some trouble with some simple stupid XSLT-stuff. My stylesheet: ------------- <?xml version="1.0" encoding="iso-8859-1"?> <xsl:stylesheet version="1.0"...
47
by: Richard Hayden | last post by:
Hi, I have the following code: /******************************** file1.c #include <iostream> extern void dummy(); inline int testfunc() {
2
by: James | last post by:
In oracle I can do the following: select CONVERT(COLUMNOFNAMES,'US7ASCII') from mytable -- It will take a name like Albrecht Dürer and change it into Albrecht Durer and is useful in where...
10
by: Luke Meyers | last post by:
So, just a little while ago I had this flash of insight. It occurred to me that, while of course in general there are very good reasons for the conventional two-file header/implementation...
15
by: 3than7 | last post by:
I am new to C++. but i have a practical problem that i am fairly certain can be solved with C++ I am a student and am taking Latin. I want a program that will allow me to input the english word...
32
by: lcdgoncalves | last post by:
Hi everyone Is there a real need to use keyword static with functions, if we simply don't declare their prototypes in .h file? Many textbooks avoid to discuss this matter and/or discuss only...
5
by: MoslyChang | last post by:
Hi, All When I look at effective c++,item2 and item3. I have some basic questions , Does anyone be familar with this topic? it suggests const is perfer to #define, then I think how to replace...
0
by: Charles Arthur | last post by:
How do i turn on java script on a villaon, callus and itel keypad mobile phone
0
by: ryjfgjl | last post by:
If we have dozens or hundreds of excel to import into the database, if we use the excel import function provided by database editors such as navicat, it will be extremely tedious and time-consuming...
0
by: ryjfgjl | last post by:
In our work, we often receive Excel tables with data in the same format. If we want to analyze these data, it can be difficult to analyze them because the data is spread across multiple Excel files...
0
by: emmanuelkatto | last post by:
Hi All, I am Emmanuel katto from Uganda. I want to ask what challenges you've faced while migrating a website to cloud. Please let me know. Thanks! Emmanuel
0
BarryA
by: BarryA | last post by:
What are the essential steps and strategies outlined in the Data Structures and Algorithms (DSA) roadmap for aspiring data scientists? How can individuals effectively utilize this roadmap to progress...
0
by: Hystou | last post by:
There are some requirements for setting up RAID: 1. The motherboard and BIOS support RAID configuration. 2. The motherboard has 2 or more available SATA protocol SSD/HDD slots (including MSATA, M.2...
0
jinu1996
by: jinu1996 | last post by:
In today's digital age, having a compelling online presence is paramount for businesses aiming to thrive in a competitive landscape. At the heart of this digital strategy lies an intricately woven...
0
by: Hystou | last post by:
Overview: Windows 11 and 10 have less user interface control over operating system update behaviour than previous versions of Windows. In Windows 11 and 10, there is no way to turn off the Windows...
0
tracyyun
by: tracyyun | last post by:
Dear forum friends, With the development of smart home technology, a variety of wireless communication protocols have appeared on the market, such as Zigbee, Z-Wave, Wi-Fi, Bluetooth, etc. Each...

By using Bytes.com and it's services, you agree to our Privacy Policy and Terms of Use.

To disable or enable advertisements and analytics tracking please visit the manage ads & tracking page.